diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml deleted file mode 100644 index f2055fa0d..000000000 --- a/.github/workflows/docker-publish.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Build and publish Docker image - -on: - workflow_dispatch: - push: - branches: - - main - pull_request: - types: [opened, synchronize] - release: - types: [published] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -permissions: - contents: read - packages: write - id-token: write - -jobs: - build-and-publish-image: - uses: FuelLabs/github-actions/.github/workflows/docker-build-push.yml@master - if: | - (github.event_name == 'release' && github.event.action == 'published') || - github.ref == 'refs/heads/main' || - (github.event_name == 'pull_request' && - github.event.pull_request.head.repo.full_name == github.repository) || - github.event_name == 'workflow_dispatch' - secrets: - REGISTRY_USERNAME: ${{ github.repository_owner }} - REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} - with: - auth-mode: registry-login - registry: ghcr.io - build-backend: native - platforms: linux/amd64,linux/arm64 - runs-on-amd64: ubuntu-latest - runs-on-arm64: ubuntu-24.04-arm - dockerfile: deployment/Dockerfile - docker-context: . - image: ghcr.io/fuellabs/fuel-explorer - tags: | - type=ref,event=branch - type=sha,prefix= - type=semver,pattern={{raw}} diff --git a/.github/workflows/helm-publish.yml b/.github/workflows/helm-publish.yml deleted file mode 100644 index 6a501c2ec..000000000 --- a/.github/workflows/helm-publish.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Build and publish Helm Chart - -on: - workflow_dispatch: - push: - branches: - - main - paths: - - "helm/fuel-explorer/Chart.yaml" - pull_request: - types: [ opened, synchronize ] - release: - types: [ published ] - -permissions: - contents: read - -jobs: - helm-release: - name: Build Helm Chart - runs-on: warp-ubuntu-latest-x64-4x - if: | - (github.event_name == 'release' && github.event.action == 'published') || - github.ref == 'refs/heads/main' || github.event_name == 'pull_request' || - github.event_name == 'workflow_dispatch' - permissions: - contents: read - packages: write - - steps: - - name: Check out code - uses: actions/checkout@v3 - - - name: Package and Push Charts - uses: bsord/helm-push@v4.1.0 - with: - useOCIRegistry: true - registry-url: oci://ghcr.io/fuellabs/helmcharts - username: ${{ github.repository_owner }} - access-token: ${{ secrets.GITHUB_TOKEN }} - force: true - chart-folder: ./helm/fuel-explorer diff --git a/.gitignore b/.gitignore index df7ecada8..0d2173daa 100644 --- a/.gitignore +++ b/.gitignore @@ -105,3 +105,7 @@ CLAUDE.md # agent scratch .superpowers/ + +# api-lite parity fixtures (fetch locally; do not commit) +packages/api-lite/test/fixtures/blocks/*.bin +packages/api-lite/test/fixtures/blocks/*.fuelcore.json diff --git a/Tiltfile b/Tiltfile deleted file mode 100644 index b7f183fbb..000000000 --- a/Tiltfile +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env python -load('ext://restart_process', 'docker_build_with_restart') -load('ext://color', 'color') -load('ext://dotenv', 'dotenv') - -analytics_settings(True) # Enable telemetry dialogue in web UI -disable_snapshots() # Disable TiltCloud Snapshots -version_settings(True) # Enable 'new version' banner - -# Load environment variables from .env file -dotenv() - -# Allow users to run `tilt up --stream` for better log handling -allow_k8s_contexts('minikube') - -# Build the Docker image -custom_build( - ref='fuel-explorer:local', - command=[ - './cluster/scripts/build-image.sh', - '--image-name', 'fuel-explorer', - '--dockerfile', './deployment/Dockerfile', - ], - deps=[ - 'deployment/Dockerfile', - 'packages', - 'pnpm-lock.yaml', - 'pnpm-workspace.yaml' - ], - live_update=[ - sync('packages', '/app'), - sync('pnpm-lock.yaml', '/app/pnpm-lock.yaml'), - sync('pnpm-workspace.yaml', '/app/pnpm-workspace.yaml'), - run('pnpm install --frozen-lockfile', trigger=['pnpm-lock.yaml']), - run('pnpm build:lib', trigger=['packages']), - ], - ignore=['node_modules'] -) - -# Create namespace -k8s_yaml(blob(""" -apiVersion: v1 -kind: Namespace -metadata: - name: fuel-explorer -""")) - -# Deploy Helm chart -k8s_yaml(helm( - 'cluster/chart', - values=['cluster/chart/values.yaml'], - name='fuel-explorer-local', - namespace='fuel-explorer' -)) - -# Port forwards for services -k8s_resource( - 'fuel-explorer-local-api', - port_forwards=['3000:3000'] -) - -k8s_resource( - 'fuel-explorer-local-syncer', - port_forwards=['3001:3001'] -) - -# Resource grouping for better UI organization -k8s_resource( - 'fuel-explorer-local-postgresql', - new_name='postgresql', - port_forwards=['5432:5432'] -) - -k8s_resource( - 'fuel-explorer-local-rabbitmq', - new_name='rabbitmq', - port_forwards=['5672:5672'] -) diff --git a/cluster/chart/Chart.lock b/cluster/chart/Chart.lock deleted file mode 100644 index fd204ddb6..000000000 --- a/cluster/chart/Chart.lock +++ /dev/null @@ -1,12 +0,0 @@ -dependencies: -- name: postgresql - repository: https://charts.bitnami.com/bitnami - version: 12.12.10 -- name: rabbitmq - repository: https://charts.bitnami.com/bitnami - version: 11.16.2 -- name: fuel-explorer - repository: file://../../helm/fuel-explorer - version: 0.2.6 -digest: sha256:716fdd5b77743a2a312b2d87d51d02f4dada7341634f785f2ff9afc116137048 -generated: "2024-12-18T21:56:35.478468-03:00" diff --git a/cluster/chart/Chart.yaml b/cluster/chart/Chart.yaml deleted file mode 100644 index 69af351df..000000000 --- a/cluster/chart/Chart.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: v2 -name: fuel-explorer-local -type: application -version: 0.2.5 -appVersion: "0.1.0" - -dependencies: - - name: postgresql - version: "12.x.x" - repository: "https://charts.bitnami.com/bitnami" - condition: postgresql.enabled - - name: rabbitmq - version: "11.x.x" - repository: "https://charts.bitnami.com/bitnami" - condition: rabbitmq.enabled - - name: fuel-explorer - version: "0.2.6" - repository: "file://../../helm/fuel-explorer" - condition: fuel-explorer.enabled diff --git a/cluster/chart/templates/env-configmap.yaml b/cluster/chart/templates/env-configmap.yaml deleted file mode 100644 index 969696804..000000000 --- a/cluster/chart/templates/env-configmap.yaml +++ /dev/null @@ -1,30 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: fuel-explorer-local -data: - NODE_TLS_REJECT_UNAUTHORIZED: "0" - LOG_DIR: "/tmp" - SERVER_PORT: "3000" - SERVER_API_KEY: "nZ9GZayrd8" - SYNCER_PORT: "3001" - SYNC_MISSING: "true" - SERVER_BUILD: "true" - SYNC_OFFSET: "10" - SYNC_LIMIT: "100" - QUEUE_CONCURRENCY: "5" - WATCH_INTERVAL: "5000" - FUEL_PROVIDER: "http://testnet.fuel.network/v1/graphql" - DB_HOST: "fuel-explorer-local-postgres" - DB_PORT: "5432" - DB_USER: "postgres" - DB_NAME: "fuel_explorer" - DB_HOST_REPLICA: "fuel-explorer-local-postgres" - DB_PORT_REPLICA: "5432" - DB_USER_REPLICA: "postgres" - DB_NAME_REPLICA: "fuel_explorer" - RABBITMQ_HOST: "fuel-explorer-local-rabbitmq" - RABBITMQ_PORT: "5672" - RABBITMQ_USER: "rabbitmq" - SSL: "false" - DEBUG: "true" diff --git a/cluster/chart/templates/env-secrets.yaml b/cluster/chart/templates/env-secrets.yaml deleted file mode 100644 index e15999ff4..000000000 --- a/cluster/chart/templates/env-secrets.yaml +++ /dev/null @@ -1,7 +0,0 @@ -apiVersion: v1 -kind: Secret -metadata: - name: fuel-explorer-local -stringData: - DB_PASS: postgres - RABBITMQ_PASS: password diff --git a/cluster/chart/values.yaml b/cluster/chart/values.yaml deleted file mode 100644 index 4f8e5def3..000000000 --- a/cluster/chart/values.yaml +++ /dev/null @@ -1,51 +0,0 @@ -fuel-explorer: - healthcheck: - enabled: false - - app: - serviceMonitor: - enabled: false - - api: - enabled: true - ingress: - enabled: false - service: - type: ClusterIP - port: 3000 - image: - repository: fuel-explorer - tag: local - pullPolicy: IfNotPresent - livenessProbe: {} - readinessProbe: {} - - syncer: - enabled: true - service: - type: ClusterIP - port: 3001 - image: - repository: fuel-explorer - tag: local - pullPolicy: IfNotPresent - -postgresql: - enabled: true - auth: - username: fuel-explorer - password: fuel-explorer - database: fuel-explorer - primary: - persistence: - enabled: true - size: 1Gi - -rabbitmq: - enabled: true - auth: - username: fuel-explorer - password: fuel-explorer - persistence: - enabled: true - size: 1Gi diff --git a/cluster/scripts/build-image.sh b/cluster/scripts/build-image.sh deleted file mode 100755 index 402e57e2c..000000000 --- a/cluster/scripts/build-image.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash - -# Default values -IMAGE_NAME="fuel-explorer" -DOCKERFILE="deployment/Dockerfile" -TAG=${EXPECTED_TAG:-"local"} # From environment variable with default - -# Parse named arguments -while [[ $# -gt 0 ]]; do - case $1 in - --image-name) - IMAGE_NAME="$2" - shift 2 - ;; - --dockerfile) - DOCKERFILE="$2" - shift 2 - ;; - --tag) - TAG="$2" - shift 2 - ;; - *) - echo "Error: Unknown argument '$1'" - usage - ;; - esac -done - -echo "Using docker host: $DOCKER_HOST" -eval $(minikube docker-env) -docker build -t "${IMAGE_NAME}:${TAG}" -f "${DOCKERFILE}" . diff --git a/cluster/scripts/setup-minikube.sh b/cluster/scripts/setup-minikube.sh deleted file mode 100755 index 720370726..000000000 --- a/cluster/scripts/setup-minikube.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash - -[[ $DEBUG = true ]] && set -x -set -euo pipefail - -# Delete any existing minikube cluster -minikube delete - -# Set disk and memory size, using defaults if not provided -DISK_SIZE=${1:-'50000mb'} -MEMORY=${2:-'12000mb'} - -# Start minikube with specified resources -minikube start \ - --driver=docker \ - --disk-size="$DISK_SIZE" \ - --memory="$MEMORY" \ - --cpus 8 - -minikube addons enable registry -minikube addons enable registry-aliases - -# Display minikube status -echo -e "\n\033[1;33mMinikube Status:\033[0m" -minikube status - -cd cluster/chart && helm dependency update \ No newline at end of file diff --git a/deployment/Dockerfile b/deployment/Dockerfile deleted file mode 100644 index 678653d5d..000000000 --- a/deployment/Dockerfile +++ /dev/null @@ -1,53 +0,0 @@ -# This image contains the graphql server -# built for the fuel-explorer -FROM node:20 AS base - -ENV DEBIAN_FRONTEND=noninteractive -RUN apt update && apt install -y postgresql-client - -# Expose the ENVs to the env of the container -ENV PNPM_HOME="/pnpm" -ENV PATH="$PNPM_HOME:$PATH" -ENV SERVER_PORT="${SERVER_PORT:-3000}" -ENV SYNCER_PORT="${SYNCER_PORT:-3001}" -ENV FUEL_PROVIDER="${FUEL_PROVIDER:-https://testnet.fuel.network/v1/graphql}" -ENV SERVER_BUILD=true -ENV SYNC_MISSING=true -ENV DB_HOST="${DB_HOST}" -ENV DB_PORT="${DB_PORT}" -ENV DB_NAME="${DB_NAME}" -ENV DB_USER="${DB_USER}" -ENV DB_PASS="${DB_PASS}" -ENV DB_HOST_REPLICA="${DB_HOST_REPLICA}" -ENV DB_PORT_REPLICA="${DB_PORT_REPLICA}" -ENV DB_NAME_REPLICA="${DB_NAME_REPLICA}" -ENV DB_USER_REPLICA="${DB_USER_REPLICA}" -ENV DB_PASS_REPLICA="${DB_PASS_REPLICA}" -ENV RABBITMQ_HOST="${RABBITMQ_HOST}" -ENV RABBITMQ_PORT="${RABBITMQ_PORT}" -ENV RABBITMQ_USER="${RABBITMQ_USER}" -ENV RABBITMQ_PASS="${RABBITMQ_PASS}" -ENV SERVICE="${SERVICE:-api}" - -# RUN corepack enable -# RUN corepack prepare pnpm@9.5.0 --activate - -RUN npm install pnpm@9.5.0 -g - -FROM base AS build -COPY . /app -WORKDIR /app -RUN pnpm install --frozen-lockfile - -FROM base AS explorer -COPY --from=build /app /app-explorer - -WORKDIR /app-explorer/packages/app-commons -RUN pnpm build:lib - -WORKDIR /app-explorer/packages/graphql -RUN pnpm build:lib - -EXPOSE ${SERVER_PORT} - -CMD sh ./scripts/run.sh $SERVICE \ No newline at end of file diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 0b1c6a887..e387fd65d 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -90,53 +90,5 @@ services: networks: - app-network - fuel_explorer_pgsql: - profiles: - - all - - indexer - - indexer-local - image: postgres:latest - platform: linux/amd64 - container_name: fuel_explorer_pgsql - ports: - - "5435:5432" - volumes: - - fuel_explorer_pgsql-db:/usr/local/postgres - env_file: - - ./envs/indexer.env - environment: - - POSTGRES_DB={DB_NAME:-postgres} - - POSTGRES_USER=${DB_USER:-postgres} - - POSTGRES_PASSWORD=${DB_PASS:-postgres} - healthcheck: - test: ["CMD-SHELL", "pg_isready", "-U", "${DB_USER}", "-d", "${DB_NAME}"] - interval: 5s - timeout: 5s - retries: 5 - networks: - - app-network - - # fuel_indexer_graphql: - # profiles: - # - all - # - indexer - # depends_on: - # fuel_explorer_pgsql: - # condition: service_healthy - # build: - # context: ../ - # dockerfile: ./deployment/Dockerfile - # env_file: - # - ./envs/global.env - # - ./envs/indexer.env - # ports: - # - "${INDEXER_GRAPHQL_PORT:-3004}:${SERVER_PORT:-3004}" - # - "${INDEXER_SYNCER_PORT:-3005}:${SYNCER_PORT:-3005}" - # networks: - # - app-network - -volumes: - fuel_explorer_pgsql-db: - networks: app-network: diff --git a/docker/envs/global.env b/docker/envs/global.env index fce74d0c5..2d1cb5448 100644 --- a/docker/envs/global.env +++ b/docker/envs/global.env @@ -5,13 +5,3 @@ CONSENSUS_KEY_SECRET="0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc24 # Ports to expose DEPLOYMENTS_PORT=8080 FUEL_CORE_HTTP_PORT=4000 -INDEXER_GRAPHQL_PORT=3004 -INDEXER_SYNCER_PORT=3005 - -# Indexer envs -FUEL_PROVIDER=http://fuel_core:4000/v1/graphql -DB_HOST="fuel_explorer_pgsql" -DB_PORT=5432 -DB_USER=postgres -DB_PASS=postgres -DB_NAME=postgres diff --git a/docker/envs/indexer.env b/docker/envs/indexer.env deleted file mode 100644 index 937ae61c0..000000000 --- a/docker/envs/indexer.env +++ /dev/null @@ -1,11 +0,0 @@ -SERVER_PORT=3004 -SERVER_API_KEY=my-secret -SYNCER_PORT=3005 -SYNC_MISSING=true -SERVER_BUILD=true -SYNC_OFFSET=10 -SYNC_LIMIT=100000 -QUEUE_CONCURRENCY=50 -WATCH_INTERVAL=1000 -SSL=false -DEBUG=true diff --git a/docs/GETTING_STARTED.md b/docs/GETTING_STARTED.md index d52a9ec4b..8afc18902 100644 --- a/docs/GETTING_STARTED.md +++ b/docs/GETTING_STARTED.md @@ -35,7 +35,6 @@ This command will start essential development services; - `L1` local node (to handle ethereum blockchain); - `Fuel` local node (to handle L2 chain); -- `Postgres` database (that we use to index data); ``` pnpm node:start @@ -43,6 +42,8 @@ pnpm node:start > You can check more details in [docker-compose.yml](https://github.com/FuelLabs/fuel-explorer/blob/main/docker/docker-compose.yml) file. +The explorer no longer runs on a Postgres-backed API and syncer. It is served by `packages/api-lite`, which reads blocks from the S3 block recorder and fuel-core, with a sqlite index and no database to operate. See [`docker/vps/deploy.md`](https://github.com/FuelLabs/fuel-explorer/blob/main/docker/vps/deploy.md) for how it is deployed. + ### 💻 4. Run Web App Now that you have the local node running, you can start the frontend. diff --git a/helm/fuel-explorer/.helmignore b/helm/fuel-explorer/.helmignore deleted file mode 100644 index 0e8a0eb36..000000000 --- a/helm/fuel-explorer/.helmignore +++ /dev/null @@ -1,23 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*.orig -*~ -# Various IDEs -.project -.idea/ -*.tmproj -.vscode/ diff --git a/helm/fuel-explorer/Chart.yaml b/helm/fuel-explorer/Chart.yaml deleted file mode 100644 index 6eb05423a..000000000 --- a/helm/fuel-explorer/Chart.yaml +++ /dev/null @@ -1,6 +0,0 @@ -apiVersion: v2 -name: fuel-explorer -description: A Helm chart for Kubernetes -type: application -version: 0.3.0 -appVersion: "0.1.0" diff --git a/helm/fuel-explorer/templates/NOTES.txt b/helm/fuel-explorer/templates/NOTES.txt deleted file mode 100644 index e91dbecce..000000000 --- a/helm/fuel-explorer/templates/NOTES.txt +++ /dev/null @@ -1,22 +0,0 @@ -1. Get the application URL by running these commands: -{{- if .Values.api.ingress.enabled }} -{{- range $host := .Values.api.ingress.hosts }} - {{- range .paths }} - http{{ if $.Values.api.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} - {{- end }} -{{- end }} -{{- else if contains "NodePort" .Values.api.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "fuel-explorer.fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT -{{- else if contains "LoadBalancer" .Values.api.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "fuel-explorer.fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "fuel-explorer.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") - echo http://$SERVICE_IP:{{ .Values.api.service.port }} -{{- else if contains "ClusterIP" .Values.api.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "fuel-explorer.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") - export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT -{{- end }} diff --git a/helm/fuel-explorer/templates/_helpers.tpl b/helm/fuel-explorer/templates/_helpers.tpl deleted file mode 100644 index 32fe6abaf..000000000 --- a/helm/fuel-explorer/templates/_helpers.tpl +++ /dev/null @@ -1,62 +0,0 @@ -{{/* -Expand the name of the chart. -*/}} -{{- define "fuel-explorer.name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} -{{- end }} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -If release name contains chart name it will be used as a full name. -*/}} -{{- define "fuel-explorer.fullname" -}} -{{- if .Values.fullnameOverride }} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} -{{- else }} -{{- $name := default .Chart.Name .Values.nameOverride }} -{{- if contains $name .Release.Name }} -{{- .Release.Name | trunc 63 | trimSuffix "-" }} -{{- else }} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} -{{- end }} -{{- end }} -{{- end }} - -{{/* -Create chart name and version as used by the chart label. -*/}} -{{- define "fuel-explorer.chart" -}} -{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} -{{- end }} - -{{/* -Common labels -*/}} -{{- define "fuel-explorer.labels" -}} -helm.sh/chart: {{ include "fuel-explorer.chart" . }} -{{ include "fuel-explorer.selectorLabels" . }} -{{- if .Chart.AppVersion }} -app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} -{{- end }} -app.kubernetes.io/managed-by: {{ .Release.Service }} -{{- end }} - -{{/* -Selector labels -*/}} -{{- define "fuel-explorer.selectorLabels" -}} -app.kubernetes.io/name: {{ include "fuel-explorer.name" . }} -app.kubernetes.io/instance: {{ .Release.Name }} -{{- end }} - -{{/* -Create the name of the service account to use -*/}} -{{- define "fuel-explorer.serviceAccountName" -}} -{{- if .Values.serviceAccount.create }} -{{- default (include "fuel-explorer.fullname" .) .Values.serviceAccount.name }} -{{- else }} -{{- default "default" .Values.serviceAccount.name }} -{{- end }} -{{- end }} diff --git a/helm/fuel-explorer/templates/api/deployment.yaml b/helm/fuel-explorer/templates/api/deployment.yaml deleted file mode 100644 index 2d304ef4f..000000000 --- a/helm/fuel-explorer/templates/api/deployment.yaml +++ /dev/null @@ -1,104 +0,0 @@ -{{- $service := .Values.api -}} -{{- if $service.enabled }} -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ include "fuel-explorer.fullname" . }}-api - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-api -spec: - {{- if not $service.autoscaling.enabled }} - replicas: {{ $service.replicaCount }} - {{- end }} - selector: - matchLabels: - {{- include "fuel-explorer.selectorLabels" . | nindent 6 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-api - template: - metadata: - {{- with $service.podAnnotations }} - annotations: - {{- toYaml . | nindent 8 }} - {{- end }} - labels: - {{- include "fuel-explorer.selectorLabels" . | nindent 8 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-api - spec: - {{- if $service.imagePullSecrets }} - imagePullSecrets: - {{- toYaml $service.imagePullSecrets | nindent 8 }} - {{- end }} - {{- if $service.podSecurityContext }} - securityContext: - {{- toYaml $service.podSecurityContext | nindent 8 }} - {{- end }} - serviceAccountName: {{ include "fuel-explorer.serviceAccountName" . }} - containers: - - name: {{ include "fuel-explorer.fullname" . }}-api - {{- if $service.securityContext }} - securityContext: - {{- toYaml $service.securityContext | nindent 12 }} - {{- end }} - image: "{{ $service.image.repository }}:{{ $service.image.tag | default .Chart.AppVersion }}" - imagePullPolicy: {{ $service.image.pullPolicy }} - {{- if $service.image.args }} - args: - {{- toYaml $service.image.args | nindent 12 }} - {{- end }} - - env: - - name: SERVICE - value: api - - envFrom: - - configMapRef: - name: {{ include "fuel-explorer.fullname" . }} - - secretRef: - name: {{ include "fuel-explorer.fullname" . }} - ports: - - name: http - containerPort: {{ $service.service.port }} - protocol: TCP - - {{- if .Values.healthcheck.enabled }} - {{- if $service.livenessProbe }} - livenessProbe: - {{- toYaml $service.livenessProbe | nindent 12 }} - {{- end }} - {{- if $service.readinessProbe }} - readinessProbe: - {{- toYaml $service.readinessProbe | nindent 12 }} - {{- end }} - {{- end }} - - volumeMounts: - - mountPath: /home/node/.cache - name: node-cache - - mountPath: /home/node/.pm2 - name: pm2 - - mountPath: /tmp - name: tmp - resources: - {{- toYaml $service.resources | nindent 12 }} - volumes: - - name: node-cache - emptyDir: {} - - name: pm2 - emptyDir: {} - - name: tmp - emptyDir: {} - - {{- if $service.nodeSelector }} - nodeSelector: - {{- toYaml $service.nodeSelector | nindent 8 }} - {{- end }} - {{- if $service.affinity }} - affinity: - {{- toYaml $service.affinity | nindent 8 }} - {{- end }} - {{- if $service.tolerations }} - tolerations: - {{- toYaml $service.tolerations | nindent 8 }} - {{- end }} -{{- end }} \ No newline at end of file diff --git a/helm/fuel-explorer/templates/api/hpa.yaml b/helm/fuel-explorer/templates/api/hpa.yaml deleted file mode 100644 index 0233eafec..000000000 --- a/helm/fuel-explorer/templates/api/hpa.yaml +++ /dev/null @@ -1,34 +0,0 @@ -{{- $api := .Values.api -}} -{{- if $api.autoscaling.enabled }} -apiVersion: autoscaling/v2 -kind: HorizontalPodAutoscaler -metadata: - name: {{ include "fuel-explorer.fullname" . }}-api - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-api -spec: - scaleTargetRef: - apiVersion: apps/v1 - kind: Deployment - name: {{ include "fuel-explorer.fullname" . }}-api - minReplicas: {{ $api.autoscaling.minReplicas }} - maxReplicas: {{ $api.autoscaling.maxReplicas }} - metrics: - {{- if $api.autoscaling.targetCPUUtilizationPercentage }} - - type: Resource - resource: - name: cpu - target: - type: Utilization - averageUtilization: {{ $api.autoscaling.targetCPUUtilizationPercentage }} - {{- end }} - {{- if $api.autoscaling.targetMemoryUtilizationPercentage }} - - type: Resource - resource: - name: memory - target: - type: Utilization - averageUtilization: {{ $api.autoscaling.targetMemoryUtilizationPercentage }} - {{- end }} -{{- end }} diff --git a/helm/fuel-explorer/templates/api/ingress.yaml b/helm/fuel-explorer/templates/api/ingress.yaml deleted file mode 100644 index 06f12015c..000000000 --- a/helm/fuel-explorer/templates/api/ingress.yaml +++ /dev/null @@ -1,65 +0,0 @@ -{{- $api := .Values.api -}} -{{- $svcPort := $api.service.port -}} -{{- $fullname := include "fuel-explorer.fullname" . }} - -{{- if $api.ingress.enabled -}} -{{- if and $api.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} - {{- if not (hasKey $api.ingress.annotations "kubernetes.io/ingress.class") }} - {{- $_ := set $api.ingress.annotations "kubernetes.io/ingress.class" $api.ingress.className}} - {{- end }} -{{- end }} - -{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} -apiVersion: networking.k8s.io/v1 -{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} -apiVersion: networking.k8s.io/v1beta1 -{{- else -}} -apiVersion: extensions/v1beta1 -{{- end }} -kind: Ingress -metadata: - name: {{ $fullname }}-api - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - app.kubernetes.io/service: {{ $fullname }}-api - {{- with $api.ingress.annotations }} - annotations: - {{- toYaml . | nindent 4 }} - {{- end }} -spec: - {{- if and $api.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }} - ingressClassName: {{ $api.ingress.className }} - {{- end }} - {{- if $api.ingress.tls }} - tls: - {{- range $api.ingress.tls }} - - hosts: - {{- range .hosts }} - - {{ . | quote }} - {{- end }} - secretName: {{ .secretName }} - {{- end }} - {{- end }} - rules: - {{- range $api.ingress.hosts }} - - host: {{ .host | quote }} - http: - paths: - {{- range .paths }} - - path: {{ .path }} - {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }} - pathType: {{ .pathType }} - {{- end }} - backend: - {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} - service: - name: {{ $fullname }}-api - port: - number: {{ $svcPort }} - {{- else }} - serviceName: {{ $fullname }}-api - servicePort: {{ $svcPort }} - {{- end }} - {{- end }} - {{- end }} -{{- end }} diff --git a/helm/fuel-explorer/templates/api/service.yaml b/helm/fuel-explorer/templates/api/service.yaml deleted file mode 100644 index 5aebff272..000000000 --- a/helm/fuel-explorer/templates/api/service.yaml +++ /dev/null @@ -1,20 +0,0 @@ -{{- $api := .Values.api -}} -{{- if $api.service.enabled -}} -apiVersion: v1 -kind: Service -metadata: - name: {{ include "fuel-explorer.fullname" . }}-api - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-api -spec: - type: {{ $api.service.type }} - ports: - - port: {{ $api.service.port }} - targetPort: http - protocol: TCP - name: http - selector: - {{- include "fuel-explorer.selectorLabels" . | nindent 4 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-api -{{- end }} \ No newline at end of file diff --git a/helm/fuel-explorer/templates/serviceaccount.yaml b/helm/fuel-explorer/templates/serviceaccount.yaml deleted file mode 100644 index a86ae0d0c..000000000 --- a/helm/fuel-explorer/templates/serviceaccount.yaml +++ /dev/null @@ -1,12 +0,0 @@ -{{- if .Values.serviceAccount.create -}} -apiVersion: v1 -kind: ServiceAccount -metadata: - name: {{ include "fuel-explorer.serviceAccountName" . }} - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - {{- with .Values.serviceAccount.annotations }} - annotations: - {{- toYaml . | nindent 4 }} - {{- end }} -{{- end }} diff --git a/helm/fuel-explorer/templates/servicemonitor.yaml b/helm/fuel-explorer/templates/servicemonitor.yaml deleted file mode 100644 index 62f88095a..000000000 --- a/helm/fuel-explorer/templates/servicemonitor.yaml +++ /dev/null @@ -1,15 +0,0 @@ -{{- if .Values.app.serviceMonitor.enabled }} -apiVersion: monitoring.coreos.com/v1 -kind: ServiceMonitor -metadata: - name: {{ include "fuel-explorer.fullname" . }} - labels: - release: {{ .Values.app.serviceMonitor.prometheusRelease }} -spec: - selector: - matchLabels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - endpoints: - - path: /metrics - port: http -{{- end }} diff --git a/helm/fuel-explorer/templates/syncer/deployment.yaml b/helm/fuel-explorer/templates/syncer/deployment.yaml deleted file mode 100644 index b9fd2119d..000000000 --- a/helm/fuel-explorer/templates/syncer/deployment.yaml +++ /dev/null @@ -1,104 +0,0 @@ -{{- $service := .Values.syncer -}} -{{- if $service.enabled }} -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ include "fuel-explorer.fullname" . }}-syncer - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-syncer -spec: - {{- if not $service.autoscaling.enabled }} - replicas: {{ $service.replicaCount }} - {{- end }} - selector: - matchLabels: - {{- include "fuel-explorer.selectorLabels" . | nindent 6 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-syncer - template: - metadata: - {{- with $service.podAnnotations }} - annotations: - {{- toYaml . | nindent 8 }} - {{- end }} - labels: - {{- include "fuel-explorer.selectorLabels" . | nindent 8 }} - app.kubernetes.io/service: {{ include "fuel-explorer.fullname" . }}-syncer - spec: - {{- if $service.imagePullSecrets }} - imagePullSecrets: - {{- toYaml $service.imagePullSecrets | nindent 8 }} - {{- end }} - {{- if $service.podSecurityContext }} - securityContext: - {{- toYaml $service.podSecurityContext | nindent 8 }} - {{- end }} - serviceAccountName: {{ include "fuel-explorer.serviceAccountName" . }} - containers: - - name: {{ include "fuel-explorer.fullname" . }}-syncer - {{- if $service.securityContext }} - securityContext: - {{- toYaml $service.securityContext | nindent 12 }} - {{- end }} - image: "{{ $service.image.repository }}:{{ $service.image.tag | default .Chart.AppVersion }}" - imagePullPolicy: {{ $service.image.pullPolicy }} - {{- if $service.image.args }} - args: - {{- toYaml $service.image.args | nindent 12 }} - {{- end }} - - env: - - name: SERVICE - value: syncer - - envFrom: - - configMapRef: - name: {{ include "fuel-explorer.fullname" . }} - - secretRef: - name: {{ include "fuel-explorer.fullname" . }} - ports: - - name: http - containerPort: {{ $service.service.port }} - protocol: TCP - - {{- if .Values.healthcheck.enabled }} - {{- if $service.livenessProbe }} - livenessProbe: - {{- toYaml $service.livenessProbe | nindent 12 }} - {{- end }} - {{- if $service.readinessProbe }} - readinessProbe: - {{- toYaml $service.readinessProbe | nindent 12 }} - {{- end }} - {{- end }} - - volumeMounts: - - mountPath: /home/node/.cache - name: node-cache - - mountPath: /home/node/.pm2 - name: pm2 - - mountPath: /tmp - name: tmp - resources: - {{- toYaml $service.resources | nindent 12 }} - volumes: - - name: node-cache - emptyDir: {} - - name: pm2 - emptyDir: {} - - name: tmp - emptyDir: {} - - {{- if $service.nodeSelector }} - nodeSelector: - {{- toYaml $service.nodeSelector | nindent 8 }} - {{- end }} - {{- if $service.affinity }} - affinity: - {{- toYaml $service.affinity | nindent 8 }} - {{- end }} - {{- if $service.tolerations }} - tolerations: - {{- toYaml $service.tolerations | nindent 8 }} - {{- end }} -{{- end }} \ No newline at end of file diff --git a/helm/fuel-explorer/templates/tests/test-connection.yaml b/helm/fuel-explorer/templates/tests/test-connection.yaml deleted file mode 100644 index c39f7c240..000000000 --- a/helm/fuel-explorer/templates/tests/test-connection.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Pod -metadata: - name: "{{ include "fuel-explorer.fullname" . }}-test-connection" - labels: - {{- include "fuel-explorer.labels" . | nindent 4 }} - annotations: - "helm.sh/hook": test -spec: - containers: - - name: wget - image: busybox - command: ['wget'] - args: ['{{ include "fuel-explorer.fullname" . }}:{{ .Values.api.service.port }}'] - restartPolicy: Never diff --git a/helm/fuel-explorer/values.yaml b/helm/fuel-explorer/values.yaml deleted file mode 100644 index 89f4fd143..000000000 --- a/helm/fuel-explorer/values.yaml +++ /dev/null @@ -1,143 +0,0 @@ -# Default values for fuel-explorer. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. - -# ------------------------------------------------------------------------------ -# Global configurations -# ------------------------------------------------------------------------------ - -nameOverride: "" -fullnameOverride: "" - -healthcheck: - enabled: true - -serviceAccount: - # Specifies whether a service account should be created - create: true - # Annotations to add to the service account - annotations: {} - # The name of the service account to use. - # If not set and create is true, a name is generated using the fullname template - name: "" - -app: - serviceMonitor: - enabled: true - prometheusRelease: kube-prometheus - -# ------------------------------------------------------------------------------ -# Syncer configurations -# ------------------------------------------------------------------------------ - -syncer: - enabled: true - service: - type: ClusterIP - port: 3001 - - imagePullSecrets: [] - image: - repository: ghcr.io/fuellabs/fuel-explorer - pullPolicy: Always - tag: "af1e196" - args: [] - - podAnnotations: {} - podSecurityContext: {} - nodeSelector: {} - tolerations: [] - affinity: {} - resources: {} - - securityContext: - capabilities: - drop: - - ALL - readOnlyRootFilesystem: false - runAsNonRoot: true - runAsUser: 1000 - - replicaCount: 1 - autoscaling: - enabled: false - minReplicas: 1 - maxReplicas: 100 - targetCPUUtilizationPercentage: 80 - targetMemoryUtilizationPercentage: 80 - -# ------------------------------------------------------------------------------ -# API configurations -# ------------------------------------------------------------------------------ - -api: - enabled: true - service: - type: ClusterIP - port: 3000 - - imagePullSecrets: [] - image: - repository: ghcr.io/fuellabs/fuel-explorer - pullPolicy: Always - # Overrides the image tag whose default is the chart appVersion. - tag: "af1e196" - args: [] - - podAnnotations: {} - podSecurityContext: {} - nodeSelector: {} - tolerations: [] - affinity: {} - resources: {} - - securityContext: - capabilities: - drop: - - ALL - readOnlyRootFilesystem: false - runAsNonRoot: true - runAsUser: 1000 - - livenessProbe: - httpGet: - path: /health - port: http - initialDelaySeconds: 10 - periodSeconds: 10 - timeoutSeconds: 5 - failureThreshold: 3 - - readinessProbe: - httpGet: - path: /health - port: http - initialDelaySeconds: 5 - periodSeconds: 10 - timeoutSeconds: 5 - failureThreshold: 3 - - replicaCount: 1 - autoscaling: - enabled: false - minReplicas: 1 - maxReplicas: 100 - targetCPUUtilizationPercentage: 80 - targetMemoryUtilizationPercentage: 80 - - ingress: - enabled: true - className: "" - annotations: - {} - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" - hosts: - - host: chart-example.local - paths: - - path: / - pathType: ImplementationSpecific - tls: [] - # - secretName: chart-example-tls - # hosts: - # - chart-example.local diff --git a/package.json b/package.json index 468be1758..c4ebd688d 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,6 @@ "dev:explorer:prod": "pnpm --filter=app-explorer start", "dev:explorer": "pnpm --filter=app-explorer run dev", "dev:portal": "pnpm --filter=app-portal dev", - "dev:graphql": "pnpm --filter=graphql dev:graphql", - "dev:graphql:all": "pnpm --filter=graphql run-dev:all", "lint": "biome check --apply-unsafe .", "format": "biome format --write .", "node:clean": "make -C ./docker clean", @@ -40,9 +38,7 @@ "node:stop": "make -C ./docker stop", "node:restart": "make -C ./docker restart", "prepare": "husky install", - "run:backend": "./scripts/run-backend.sh", "start": "pnpm turbo:run start", - "setup:backend": "./scripts/setup-backend.sh", "test": "pnpm turbo:run test", "test:all": "run-p test test:e2e", "test:e2e": "playwright test --config=packages/e2e-tests/playwright.config.ts", diff --git a/packages/api-lite/scripts/measure-heap-multiplier.ts b/packages/api-lite/scripts/measure-heap-multiplier.ts index 7a2a9a370..87faf1f3c 100644 --- a/packages/api-lite/scripts/measure-heap-multiplier.ts +++ b/packages/api-lite/scripts/measure-heap-multiplier.ts @@ -4,8 +4,10 @@ // GQLBlock and update that constant if the multiplier moves. Run with // --expose-gc for accurate deltas. // -// npx tsx --expose-gc scripts/measure-heap-multiplier.ts -import { readFileSync } from 'node:fs'; +// Fixtures are not committed. Fetch first, then measure: +// pnpm --filter api-lite fixture +// npx tsx --expose-gc scripts/measure-heap-multiplier.ts [height...] +import { existsSync, readFileSync, readdirSync } from 'node:fs'; import { join } from 'node:path'; import { decodeBlock } from '../src/decoder/block'; @@ -20,11 +22,19 @@ const fee = { }, }; +const fixturesDir = join(__dirname, '../test/fixtures/blocks'); + function decodeFixture(height: number) { - const bytes = readFileSync( - join(__dirname, '../test/fixtures/blocks', `${height}.bin`), - ); - return decodeBlock(new Uint8Array(bytes), { chainId: 9889, fee }); + const path = join(fixturesDir, `${height}.bin`); + if (!existsSync(path)) { + throw new Error( + `missing ${path}; run: pnpm --filter api-lite fixture ${height}`, + ); + } + return decodeBlock(new Uint8Array(readFileSync(path)), { + chainId: 9889, + fee, + }); } function measure(height: number) { @@ -48,7 +58,23 @@ function measure(height: number) { return multiplier; } -const heights = [62724773, 62724775]; +const fromArgs = process.argv + .slice(2) + .map(Number) + .filter((n) => Number.isInteger(n)); +const fromDisk = existsSync(fixturesDir) + ? readdirSync(fixturesDir) + .filter((f) => f.endsWith('.bin')) + .map((f) => Number(f.replace('.bin', ''))) + : []; +const heights = fromArgs.length ? fromArgs : fromDisk; +if (!heights.length) { + console.error( + 'no block fixtures; fetch one first:\n pnpm --filter api-lite fixture \n npx tsx --expose-gc scripts/measure-heap-multiplier.ts [height...]', + ); + process.exit(1); +} + const multipliers = heights.map(measure); const avg = multipliers.reduce((a, b) => a + b, 0) / multipliers.length; console.log(`\naverage multiplier: ${avg.toFixed(2)}x`); diff --git a/packages/api-lite/src/store/BlockStore.ts b/packages/api-lite/src/store/BlockStore.ts index bd5d9c21c..fff3592f6 100644 --- a/packages/api-lite/src/store/BlockStore.ts +++ b/packages/api-lite/src/store/BlockStore.ts @@ -26,8 +26,8 @@ type Opts = { // A decoded GQLBlock's real V8 heap footprint (nested objects/arrays/strings // for every tx, input, output, receipt) runs well above its // JSON.stringify() byte length -- measured empirically at ~2.25x via -// scripts/measure-heap-multiplier.ts against two real mainnet block fixtures -// (test/fixtures/blocks/62724773.bin, 62724775.bin; 200 held copies each, +// scripts/measure-heap-multiplier.ts against real mainnet blocks fetched with +// `pnpm --filter api-lite fixture ` (200 held copies each, // process.memoryUsage().heapUsed delta with --expose-gc). Rounded up to 2.5x // for headroom. Without this, the LRU's `memoryBytes` budget bounds only the // serialized size, not the real heap it costs to hold those objects, so a diff --git a/packages/graphql/logs/empty b/packages/api-lite/test/fixtures/blocks/.gitkeep similarity index 100% rename from packages/graphql/logs/empty rename to packages/api-lite/test/fixtures/blocks/.gitkeep diff --git a/packages/api-lite/test/fixtures/blocks/62724773.bin b/packages/api-lite/test/fixtures/blocks/62724773.bin deleted file mode 100644 index d247244cf..000000000 Binary files a/packages/api-lite/test/fixtures/blocks/62724773.bin and /dev/null differ diff --git a/packages/api-lite/test/fixtures/blocks/62724773.fuelcore.json b/packages/api-lite/test/fixtures/blocks/62724773.fuelcore.json deleted file mode 100644 index e8854d742..000000000 --- a/packages/api-lite/test/fixtures/blocks/62724773.fuelcore.json +++ /dev/null @@ -1,80728 +0,0 @@ -{ - "consensus": { - "__typename": "PoAConsensus", - "signature": "0xaa2c5a92b8af0017d7aa371d0d38c5ea6bc5b19bf4e6b492df8a0d08d6d8b3809a2f0fa567ace6356352e725249427bea81451098fb9f8e44cac6b180f453236" - }, - "header": { - "applicationHash": "0x1d6862b836b6784522983f045205eed25632faab86f9dcc105e3bfc70ded29cb", - "consensusParametersVersion": "11", - "daHeight": "25855159", - "eventInboxRoot": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "height": "62724773", - "id": "0xc4f0921fd1956dbd91fafdc2700398da5917f8751227bc93c2ab112eca2f8680", - "messageOutboxRoot": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "messageReceiptCount": "0", - "prevRoot": "0x3e27c522de080d9d2de88d183dc6b48f83ead94e42d075f8d0241b68bf30e46d", - "stateTransitionBytecodeVersion": "34", - "time": "4611686020215326011", - "transactionsCount": "147", - "transactionsRoot": "0xe33b089f6012e0693c63d0a34dd03807cddc6f330fb1342f9211081697d7b4d2" - }, - "height": "62724773", - "id": "0xc4f0921fd1956dbd91fafdc2700398da5917f8751227bc93c2ab112eca2f8680", - "transactions": [ - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587144", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f001e", - "utxoId": "0xeabbfba1cdc44b5fff864480075aa3004dabe3bf7122a878adfcd3e5a02a39070000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x35087322435b9850f7a2447fa048f1fe4514e637a17a3d00366af6b362ef1459", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa4007a", - "utxoId": "0x2c0cea77ac820a35c64bc339e7a83732c7bd84b58fe2444a406d99a8dd428e370002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1d19806887b8bc2e5a677242210f6b445e6a45f88ef11eeddf4bdfa8b23949fa", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xf3d325501052323d692c94d4b389b41204b6ca5a9cbc81154b87733c7adcafad", - "txPointer": "03bd1aa40078", - "utxoId": "0x1e0b238a7e4e886225875b4f9dbcaeab83732a745fbacc8470ef56f49318768b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3554134828e20b37ba596ca79bc370a6a8407f9848d545fe237b1f13acb633b6", - "contractId": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "stateRoot": "0xafdc3db62a486ba8f7ebf1ab35397ba46fff4eee6fd0c2c07ab96aa53e78a47f", - "txPointer": "03bd1aa40077", - "utxoId": "0x9faf6e0a006ff8c341d54b7b98afc7ef356d74c0b6a6a02844776e0919766c320003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1586887", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9925ffc7bf28d767901838b2e82282f784273d0c7bcf448bc9653a984ab14e2f", - "inputIndex": "2", - "stateRoot": "0x7e9d05e95770c6f48e34b94e249770280eabc91f477639a83b80f12f457d4672" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa1e78a0dc1417f5425d6faf0752317e50976b0a8d6563811007f7a280ca7eb6b", - "inputIndex": "3", - "stateRoot": "0x909c8f2d4886463ef6de3f3462ef01db8d033f72f2497f96ad3830db74200585" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b3da17c898d3ed583f03cd240012bfc8e6d32db52d170d86bd8335937194cf7300000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0755cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f146f3c5345d60ecb828931f7cf3c202fd00e4acd57ecfde1d116b2fadad4f9349e4367345b361c5980a471baf5445afd78b2288df36865d98d7452ddeced52c00000000000000000000006a91c5a800000000000000000000000000000e6c6500000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000000479b11686c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d600fc00000001b1ebfc00000000000000000300000000000000000000006400000000000210ac0000000003bd1aa80000000000000000eabbfba1cdc44b5fff864480075aa3004dabe3bf7122a878adfcd3e5a02a39070000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001837c8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000012c0cea77ac820a35c64bc339e7a83732c7bd84b58fe2444a406d99a8dd428e37000000000000000235087322435b9850f7a2447fa048f1fe4514e637a17a3d00366af6b362ef145900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa4000000000000007a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000011e0b238a7e4e886225875b4f9dbcaeab83732a745fbacc8470ef56f49318768b00000000000000031d19806887b8bc2e5a677242210f6b445e6a45f88ef11eeddf4bdfa8b23949faf3d325501052323d692c94d4b389b41204b6ca5a9cbc81154b87733c7adcafad0000000003bd1aa400000000000000780a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000019faf6e0a006ff8c341d54b7b98afc7ef356d74c0b6a6a02844776e0919766c3200000000000000033554134828e20b37ba596ca79bc370a6a8407f9848d545fe237b1f13acb633b6afdc3db62a486ba8f7ebf1ab35397ba46fff4eee6fd0c2c07ab96aa53e78a47f0000000003bd1aa4000000000000007755cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001836c7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000029925ffc7bf28d767901838b2e82282f784273d0c7bcf448bc9653a984ab14e2f7e9d05e95770c6f48e34b94e249770280eabc91f477639a83b80f12f457d467200000000000000010000000000000003a1e78a0dc1417f5425d6faf0752317e50976b0a8d6563811007f7a280ca7eb6b909c8f2d4886463ef6de3f3462ef01db8d033f72f2497f96ad3830db7420058500000000000000409a821a40035418180afb1c3d9962ac489517abfea966c994d0447ab0201dd4574f0a03ec40863c2bd3f02ad04cc1826722bfa82510ca7e787e24642e6d1199b5", - "receiptsRoot": "0xb3da17c898d3ed583f03cd240012bfc8e6d32db52d170d86bd8335937194cf73", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0755cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f146f3c5345d60ecb828931f7cf3c202fd00e4acd57ecfde1d116b2fadad4f9349e4367345b361c5980a471baf5445afd78b2288df36865d98d7452ddeced52c00000000000000000000006a91c5a800000000000000000000000000000e6c6500000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000000479b11686c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d600fc00000001b1ebfc000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000000e6c65", - "digest": "0x35aa10a11e24eacaa97bea514fff83401e128914391d63c64eeeece5fd3dc75a", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000298cb2308c45abf2748d54c9fa30700855f87b3c8c4a49fba4b28661154ef5610a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000000e6c65", - "digest": "0xa94f0fe3281ab5326fdde1e0086b04fe4b7dbeb9abed7fb481d537f942194113", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "7270000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f00000001b15365800000000000000000", - "digest": "0x17edc6243979e1e8b171661afcf94e279c0e038ecd91b6e451cb49928391bc46", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000298cb2308c45abf2748d54c9fa30700855f87b3c8c4a49fba4b28661154ef5610a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000000e6c65", - "digest": "0xa94f0fe3281ab5326fdde1e0086b04fe4b7dbeb9abed7fb481d537f942194113", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1201344872", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d600fc00000000000000000000000000000003000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0000000000000000000000000000000300000001b1ebfc000000000009d600fc000000006a91c531", - "digest": "0xb87bc239f2e3c46bf72d6b9fb53189a390506ed59bca6f0adfa929e79eaa8163", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d600fc00000000000000000000000000000003", - "digest": "0x7904a40406fc7c464cc8616091a1fb66f1cdda3684ee2e5ba606823a0cf8d1c6", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099014", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "137648", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "257", - "totalGas": "147269", - "transactionId": "0xab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9a821a40035418180afb1c3d9962ac489517abfea966c994d0447ab0201dd4574f0a03ec40863c2bd3f02ad04cc1826722bfa82510ca7e787e24642e6d1199b5" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x95075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d8", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1726888", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f001c", - "utxoId": "0xca1d4dbb7b3c2eefff6f67d3c423250759dd27d0668ea8fa412704866d3445510000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0edfc3c03c68c99340a86c7381a2ce337f2b5e1b4f9ca6cafff9269d2b7670dd", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x856e134d665e5829aa0d8785751bee46a1d0411566717e46e8da08bb0e3e9ddc", - "txPointer": "03bd1aa4005f", - "utxoId": "0xfbd5a4f7bf8ad42d7fc651c605d29ef60a6aae9cd40aa9449335d0bb3fefb5060003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50000", - "utxoId": "0xab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x860f034efefcc3c2d618ea665c5c9385169d32111000b3764b458070048d9cc7", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x1194231f5c1e618e72d1e326ce34f57231eab41fa34638a773c7aac111a58f77", - "txPointer": "03bd1aa4005f", - "utxoId": "0xfbd5a4f7bf8ad42d7fc651c605d29ef60a6aae9cd40aa9449335d0bb3fefb5060002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1726638", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd0741a04c4155a0bf5c0c4770167cbeab862f6e78e849817290263ca18eae861", - "inputIndex": "1", - "stateRoot": "0x55d0709ed180b2b5e8eeb01c090028f89db4ef56b559c31f7f23933b6bf0ac5b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe8d566dd210943ff089320650fd14e262abd45968c321fb4745f83c50b846a5c", - "inputIndex": "3", - "stateRoot": "0x21b5a868fd324d043cf3ea25e770c86afdce6c9f173a55b11b5ebfd5c6e777de" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f7bf2ff2b36c70156b5caf9cd42707bd693f704a8b02d4bb21f76603f13e84bd0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000062f501432180c547c3c87d40386892d2f25759ff6ac573475910498607f7806c640dfb9af26a924449ee7e56672e9411561411dcf35c78e9835dbc4f8a1097c600000000000000000000006a91c5a8000000000000000000000000000313566000000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000190000001c9aa83840000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa80000000000000000ca1d4dbb7b3c2eefff6f67d3c423250759dd27d0668ea8fa412704866d3445510000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a59a8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000001fbd5a4f7bf8ad42d7fc651c605d29ef60a6aae9cd40aa9449335d0bb3fefb50600000000000000030edfc3c03c68c99340a86c7381a2ce337f2b5e1b4f9ca6cafff9269d2b7670dd856e134d665e5829aa0d8785751bee46a1d0411566717e46e8da08bb0e3e9ddc0000000003bd1aa4000000000000005f8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001ab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001fbd5a4f7bf8ad42d7fc651c605d29ef60a6aae9cd40aa9449335d0bb3fefb5060000000000000002860f034efefcc3c2d618ea665c5c9385169d32111000b3764b458070048d9cc71194231f5c1e618e72d1e326ce34f57231eab41fa34638a773c7aac111a58f770000000003bd1aa4000000000000005fc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a58aef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d0741a04c4155a0bf5c0c4770167cbeab862f6e78e849817290263ca18eae86155d0709ed180b2b5e8eeb01c090028f89db4ef56b559c31f7f23933b6bf0ac5b000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003e8d566dd210943ff089320650fd14e262abd45968c321fb4745f83c50b846a5c21b5a868fd324d043cf3ea25e770c86afdce6c9f173a55b11b5ebfd5c6e777de0000000000000040e66e066d3497ed1602771dbf465259c8c2fae128e6c59dc7e945f4be5f4ac8bdc88834da313fda0369ae25981a73cbdf3e1127c7fb7e5392e0ee92cb739cb754", - "receiptsRoot": "0xf7bf2ff2b36c70156b5caf9cd42707bd693f704a8b02d4bb21f76603f13e84bd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000062f501432180c547c3c87d40386892d2f25759ff6ac573475910498607f7806c640dfb9af26a924449ee7e56672e9411561411dcf35c78e9835dbc4f8a1097c600000000000000000000006a91c5a8000000000000000000000000000313566000000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000190000001c9aa83840000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000003135660", - "digest": "0x3c5c22be95acd6e024e304cebbf376e9463e0e5ee3d9d21702fcf61fc20aa20e", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135660", - "digest": "0xdc82b1a8207708a8e584a6227c7fde185b946cb4236165b8a0217006a18c8684", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "122853800000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000190000001c9aa8384000000000000000000000000000000001000000006a91c531", - "digest": "0xc2fa9e3f87647a6915c113675085fccf5889ea500c90d01a5f85ec6f3aec1588", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100226", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099601", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135660", - "digest": "0xdc82b1a8207708a8e584a6227c7fde185b946cb4236165b8a0217006a18c8684", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099373", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874803", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098901", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133633", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "250", - "totalGas": "143265", - "transactionId": "0x95075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d8" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe66e066d3497ed1602771dbf465259c8c2fae128e6c59dc7e945f4be5f4ac8bdc88834da313fda0369ae25981a73cbdf3e1127c7fb7e5392e0ee92cb739cb754" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1725146", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f001d", - "utxoId": "0xfbbe5d8b5c9edc49280a555c2cf5e05fe820988441b264f091178c20d131518f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50001", - "utxoId": "0x95075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d80002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x351ed6e928e834159febcee98f01b02c0fa2f3024a65b05ff1deae4ab710f64d", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xc7c50efa74fef047ad10c11905fa2c1e8f03232fa5f3036f07a5e95b04b33fac", - "txPointer": "03bd1aa50001", - "utxoId": "0x95075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d80001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x10d73eadce8c7518ed546725b839a393eb7815044c7846c63b4cd0bac9c31283", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x43a2ead59c099358a8ddfdcae17d048c953a64a5b40a0b555ada703f51b7517d", - "txPointer": "03bd1aa50001", - "utxoId": "0x95075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d80003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1724886", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x44d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ed", - "inputIndex": "2", - "stateRoot": "0xe01cee3c3fb07c3c32acd060afa623d3d473be039d922585d5f80232ffc8edea" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2", - "inputIndex": "3", - "stateRoot": "0xe2d6476759e47bdcd30ecd2c18470b43cf8dd1cd06dd016e4489f954107588de" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ca2c777088eeaf759d7bb20f84719bb914b928067679927be2f7fc5fbfa9ef350000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008e701290f89221349b62ff2e845a9bcee589e364f5ea31f71ff3fb38331ae114437e8756df745ca786da47c545352bba57b5a612fb4dfcc7f8258e1098c5e70400000000000000000000006a91c5a8000000000000000000000000000313566100000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000230000001ca09f9fe0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa80000000000000000fbbe5d8b5c9edc49280a555c2cf5e05fe820988441b264f091178c20d131518f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a52daf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000001d0000000000000000000000000000000000000000000000000000000000000000000000000000000195075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d80000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000195075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d80000000000000001351ed6e928e834159febcee98f01b02c0fa2f3024a65b05ff1deae4ab710f64dc7c50efa74fef047ad10c11905fa2c1e8f03232fa5f3036f07a5e95b04b33fac0000000003bd1aa500000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe000000000000000195075d62798ab20bd668fe328a1d82e80d81b367a645300a221b2dd533a432d8000000000000000310d73eadce8c7518ed546725b839a393eb7815044c7846c63b4cd0bac9c3128343a2ead59c099358a8ddfdcae17d048c953a64a5b40a0b555ada703f51b7517d0000000003bd1aa50000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a51d6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000244d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ede01cee3c3fb07c3c32acd060afa623d3d473be039d922585d5f80232ffc8edea000000000000000100000000000000033478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2e2d6476759e47bdcd30ecd2c18470b43cf8dd1cd06dd016e4489f954107588de00000000000000403e6a1e16d8bab1eb428a655cc66aa29c28cd938e6fe69418cd128617cb58ed30e18bd57261f309efea8cc477df949334ccfbc55947a2acda527b689d84bda8d6", - "receiptsRoot": "0xca2c777088eeaf759d7bb20f84719bb914b928067679927be2f7fc5fbfa9ef35", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008e701290f89221349b62ff2e845a9bcee589e364f5ea31f71ff3fb38331ae114437e8756df745ca786da47c545352bba57b5a612fb4dfcc7f8258e1098c5e70400000000000000000000006a91c5a8000000000000000000000000000313566100000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000230000001ca09f9fe0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000003135661", - "digest": "0x5c3db63aaed6dfcb91aa604d079f48b589e6cfe8ac67ed70cead5f1abca41258", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135661", - "digest": "0x738b02a8c7e5721e2b601bf4e8d9a8abed9271e1e519341276fb208d55851dda", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1158000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000230000001ca09f9fe000000000000000010000000000000001000000006a91c531", - "digest": "0x2d619cc5dcdbd8376af4cb855cc25519d2002383ca446873dd1f8c5a64035fc8", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67099634", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099009", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135661", - "digest": "0x738b02a8c7e5721e2b601bf4e8d9a8abed9271e1e519341276fb208d55851dda", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67098781", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869064", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098309", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "139372", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "260", - "totalGas": "149004", - "transactionId": "0x373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3e6a1e16d8bab1eb428a655cc66aa29c28cd938e6fe69418cd128617cb58ed30e18bd57261f309efea8cc477df949334ccfbc55947a2acda527b689d84bda8d6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1588143", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f001f", - "utxoId": "0x66faf5ccc5160fdf0a880819a635e4fa7626a2cfd8d3b8e1056cc23034f97b0b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2955a99517d1e4b31864929f2e7896a3466990653bae16475179cbe0957ddcba", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0xa3d93eb6b6a1f3e4587993f8d619ccbf3ac9ad1d631e97950f29c9c92e78e69f", - "txPointer": "03bd1aa40062", - "utxoId": "0x6254d9cdfc17816ffa2a969e2937e7300f5a0209c1859361f1dfc8be955d8d440002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50002", - "utxoId": "0x373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2aa00df1c0763e37c2db0fc71024049919f93f5f2ab7b6d02b1668896ffe31ba", - "contractId": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "stateRoot": "0xa3b9566fbf1c392817b0f4ab1c7f5fd4b6b21272c00dfccce6f1e2ba0e68bbec", - "txPointer": "03bd1aa40062", - "utxoId": "0x6254d9cdfc17816ffa2a969e2937e7300f5a0209c1859361f1dfc8be955d8d440001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1587912", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2ed3e4b8e59614be40bdfc791038f7e73fb99fb69de9aa02609b2f535b1e6034", - "inputIndex": "1", - "stateRoot": "0x6c56cb4e9ad62ba40f8050e1ea277a245fd6c9a6529dd8605749bbe8e13c2027" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe0d62b90f96c38e0ab313ca66d0dae8be73c42e708bba2fad3b068f897dc9a4e", - "inputIndex": "3", - "stateRoot": "0x92f65c22ef00005031ea58a9c495e1f9caad119bd5c66a463d7f933871364946" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b855491279a924ec2f3d27fbc8a1c523e0972a7b3f1229c8dc3e0fa75aa975e40000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000081d7256330b134112f426e6ae45d25d5b0e84ca7e259de15fa9eb6fb8191cbee29ff64f083bfead504e53913e7be5381c2dfd3cd17a0b634aea3e0ef5996e8a300000000000000000000006a91c5a80000000000000000000000000000389b4d0000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000300000000d0a5160000000000000000010000000000000001973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000000000000006400000000000210ac0000000003bd1aa8000000000000000066faf5ccc5160fdf0a880819a635e4fa7626a2cfd8d3b8e1056cc23034f97b0b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183baff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000001f000000000000000000000000000000000000000000000000000000000000000000000000000000016254d9cdfc17816ffa2a969e2937e7300f5a0209c1859361f1dfc8be955d8d4400000000000000022955a99517d1e4b31864929f2e7896a3466990653bae16475179cbe0957ddcbaa3d93eb6b6a1f3e4587993f8d619ccbf3ac9ad1d631e97950f29c9c92e78e69f0000000003bd1aa40000000000000062973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000001373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016254d9cdfc17816ffa2a969e2937e7300f5a0209c1859361f1dfc8be955d8d4400000000000000012aa00df1c0763e37c2db0fc71024049919f93f5f2ab7b6d02b1668896ffe31baa3b9566fbf1c392817b0f4ab1c7f5fd4b6b21272c00dfccce6f1e2ba0e68bbec0000000003bd1aa400000000000000629be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead00000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183ac8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000012ed3e4b8e59614be40bdfc791038f7e73fb99fb69de9aa02609b2f535b1e60346c56cb4e9ad62ba40f8050e1ea277a245fd6c9a6529dd8605749bbe8e13c2027000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003e0d62b90f96c38e0ab313ca66d0dae8be73c42e708bba2fad3b068f897dc9a4e92f65c22ef00005031ea58a9c495e1f9caad119bd5c66a463d7f9338713649460000000000000040426318ceb1bf248b0460f7fe9972daa4addfb07c15d9db0ea763bda5eb3467c63ddf66237843f84a58a62b53ee34ec70aa6be0297acc5fd5c074eb47c2b00c5e", - "receiptsRoot": "0xb855491279a924ec2f3d27fbc8a1c523e0972a7b3f1229c8dc3e0fa75aa975e4", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000081d7256330b134112f426e6ae45d25d5b0e84ca7e259de15fa9eb6fb8191cbee29ff64f083bfead504e53913e7be5381c2dfd3cd17a0b634aea3e0ef5996e8a300000000000000000000006a91c5a80000000000000000000000000000389b4d0000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000300000000d0a5160000000000000000010000000000000001973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000000389b4d", - "digest": "0x1933f5d007266449af77d1a42c0c593b0bc6436fcd3cb324d3365e0b290bea24", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a80000000000000000000000000000389b4d", - "digest": "0x69a8c305906f4b115bbfe9944cb682f6713bedd18603476e8a9d93986afe3a4e", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": "17140000000", - "assetId": "0xfdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000300000000d0a5160000000000000000010000000000000001000000006a91c531", - "digest": "0x1dc955314d9510cdd159dcec363c86cd6f2ea0574d00e1075ba9ff4a838ff9eb", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101250", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100625", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a80000000000000000000000000000389b4d", - "digest": "0x69a8c305906f4b115bbfe9944cb682f6713bedd18603476e8a9d93986afe3a4e", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100397", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1885394", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000000000000000000000000", - "digest": "0x5fdac36b8fdfe3c681493be0ab4efb13c0cc55ef6aaf1bd62eaa1294f3c7159b", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099925", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123042", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "231", - "totalGas": "132674", - "transactionId": "0xc7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x426318ceb1bf248b0460f7fe9972daa4addfb07c15d9db0ea763bda5eb3467c63ddf66237843f84a58a62b53ee34ec70aa6be0297acc5fd5c074eb47c2b00c5e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x31f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c3", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1722391", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0020", - "utxoId": "0x28c0d55f8fbeb26f6555831f9ba7b4136a1f969c3401a4e83ae11278c3a6de6e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x63e38174ac8ecdc8e3e96efc117be5455560018655f9ed0531f6d7d63553704b", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0xeb67b1f824cba07ede01abe766051d6ad42d4aebb800eeffa58319906aaabdd8", - "txPointer": "03bd1aa4007a", - "utxoId": "0x2c0cea77ac820a35c64bc339e7a83732c7bd84b58fe2444a406d99a8dd428e370001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50003", - "utxoId": "0xc7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1a3792a5be30b609c296a71878c37f8afcb34c59e549c9f0c270bf59b55f3e82", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x7c24cf8c2121ed1a886f9c11b060ab770f2afc0a5b1e461167db75f15f34e170", - "txPointer": "03bd1aa4007a", - "utxoId": "0x2c0cea77ac820a35c64bc339e7a83732c7bd84b58fe2444a406d99a8dd428e370003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1722139", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x96f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6f", - "inputIndex": "1", - "stateRoot": "0xef45e1a19ea88cf1b5f32fc22d2e73ed9052768214c25d40f3c4c59c8086d359" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x779667159329579bc0f49cc5670326499cf734665ea748207606143c95c5e4b9", - "inputIndex": "3", - "stateRoot": "0x4d713f9344567f60c9cd17454143a642928f30c53e00d551f9c97a23c8ca0460" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40b2de5b3b2152bb14e6886784f3b1a29caf287f56b0abcfd1602643e857b8359900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000014093ad89439c08daa86c61b5a8ea52403dbdcd0af659359c3c72abfd8cdf94b602a323bd79df23c28701fa7a5a26a3bc04e68427b57e2b19cd0ceda6cb001f100000000000000000000006a91c5a8000000000000000000000000000a759e7600000000000000025a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d65a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f7264657200000001a13b8600ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff0000000000000001000000000000001800000238edbcd68000000001a13b8600000000000000000300000000000000000000006400000000000210ac0000000003bd1aa8000000000000000028c0d55f8fbeb26f6555831f9ba7b4136a1f969c3401a4e83ae11278c3a6de6e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4817f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000012c0cea77ac820a35c64bc339e7a83732c7bd84b58fe2444a406d99a8dd428e37000000000000000163e38174ac8ecdc8e3e96efc117be5455560018655f9ed0531f6d7d63553704beb67b1f824cba07ede01abe766051d6ad42d4aebb800eeffa58319906aaabdd80000000003bd1aa4000000000000007a5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000001c7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c00000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000012c0cea77ac820a35c64bc339e7a83732c7bd84b58fe2444a406d99a8dd428e3700000000000000031a3792a5be30b609c296a71878c37f8afcb34c59e549c9f0c270bf59b55f3e827c24cf8c2121ed1a886f9c11b060ab770f2afc0a5b1e461167db75f15f34e1700000000003bd1aa4000000000000007a9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a471bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000196f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6fef45e1a19ea88cf1b5f32fc22d2e73ed9052768214c25d40f3c4c59c8086d359000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003779667159329579bc0f49cc5670326499cf734665ea748207606143c95c5e4b94d713f9344567f60c9cd17454143a642928f30c53e00d551f9c97a23c8ca0460000000000000004087429646eaaaa075ff3eca9cef3f3f5d33f48cf6f079bb8e3c971b3cd00ce6a1ee41f97c4dabcd9ae47fde17e4364046c06be4621436eb004988148ad64ee113", - "receiptsRoot": "0xb2de5b3b2152bb14e6886784f3b1a29caf287f56b0abcfd1602643e857b83599", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000014093ad89439c08daa86c61b5a8ea52403dbdcd0af659359c3c72abfd8cdf94b602a323bd79df23c28701fa7a5a26a3bc04e68427b57e2b19cd0ceda6cb001f100000000000000000000006a91c5a8000000000000000000000000000a759e7600000000000000025a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d65a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f7264657200000001a13b8600ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff0000000000000001000000000000001800000238edbcd68000000001a13b86000000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e76", - "digest": "0x8dbee1d7d185daa8ded5661cf7f7e23df23690361a37c6e398ebab2c235ef373", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147416", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e76", - "digest": "0x815a1b3492475283c50dd5e89c7660b8737055e1dd477cfaad7f3fdc62ac0856", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463928", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376924", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e76", - "digest": "0x815a1b3492475283c50dd5e89c7660b8737055e1dd477cfaad7f3fdc62ac0856", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "7000000000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": "4950211", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000044800000238edbcd6800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000001a13b860000000238edbcd680000000006a91c531", - "digest": "0xbcd11b648d1854771c74f10dd7eec085f6be17ef875c61ae3a39ce6e3752d527", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434660", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000044800000238edbcd68000000000000000010000000000000003", - "digest": "0xd100fb5fff8c02f7e51cf41739d268a13ec422b29bf753cc159ac167f051afc4", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380892", - "ptr": "67098310", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57220", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "135199", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "252", - "totalGas": "144820", - "transactionId": "0x31f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c3" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x87429646eaaaa075ff3eca9cef3f3f5d33f48cf6f079bb8e3c971b3cd00ce6a1ee41f97c4dabcd9ae47fde17e4364046c06be4621436eb004988148ad64ee113" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xadb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a5202", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1731084", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0022", - "utxoId": "0xb9ba2fa806844c9f449641ddb250758d336e531c8f737f9e6fb7f9ed7e8ad6690000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x91fde0593761fc2227789101f98f1a69e21b20bee88e2209e0f2f04d5fd78b95", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x8115756da288f669fd6c3809f709bc82730c87ebe9fefc04fda9533c8b8bc191", - "txPointer": "03bd1aa40075", - "utxoId": "0xdc787345d92f3e6096437be2bb6a5301d236916bdd7d07f11488977c52dc36d10001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbf8b8beaaba213f8012db5a975a8e89e34fc3b92fff5388bec9246650bafc8cd", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x37a822e121b412426e3832d1ac2d35b415f16325ace0c7510cb79f43ebc66415", - "txPointer": "03bd1aa40075", - "utxoId": "0xdc787345d92f3e6096437be2bb6a5301d236916bdd7d07f11488977c52dc36d10003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50004", - "utxoId": "0x31f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c30002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1730872", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xee5bd95a1bd06b1d815b02a2cd771f357088c1d2b2873cde1ac8b4b6133ee022", - "inputIndex": "1", - "stateRoot": "0x512cc8474cdda9aed582f20bffd35af919dc2833c9b84477e564a096fa2663aa" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x959e818b16c181f03e704a9d775b93bf735c5e1fb21dfc2f54841cbb044f7b90", - "inputIndex": "2", - "stateRoot": "0xf189ae332a8c90c4255fe59fc39cac25d5af4efb3ccfaefcacbb617df38f0e22" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480a27452874387ad92b05e02c615456138f6bda9952a8955950569aa055ae006130000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c3333fbfa60406253b210356342aca2e47cb8f78b8978594b4744cbbdd179de3df3e366fc878ab4f8223a78ef350858b7a4f6c69a579595c0c46c79be6725b9900000000000000000000006a91c5a8000000000000000000000000000229655a0000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000019c00000000000cd77600000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000006400000000000210ac0000000003bd1aa80000000000000000b9ba2fa806844c9f449641ddb250758d336e531c8f737f9e6fb7f9ed7e8ad6690000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6a0cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000001dc787345d92f3e6096437be2bb6a5301d236916bdd7d07f11488977c52dc36d1000000000000000191fde0593761fc2227789101f98f1a69e21b20bee88e2209e0f2f04d5fd78b958115756da288f669fd6c3809f709bc82730c87ebe9fefc04fda9533c8b8bc1910000000003bd1aa4000000000000007567131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000001dc787345d92f3e6096437be2bb6a5301d236916bdd7d07f11488977c52dc36d10000000000000003bf8b8beaaba213f8012db5a975a8e89e34fc3b92fff5388bec9246650bafc8cd37a822e121b412426e3832d1ac2d35b415f16325ace0c7510cb79f43ebc664150000000003bd1aa40000000000000075df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665000000000000000131f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c30000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6938f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001ee5bd95a1bd06b1d815b02a2cd771f357088c1d2b2873cde1ac8b4b6133ee022512cc8474cdda9aed582f20bffd35af919dc2833c9b84477e564a096fa2663aa00000000000000010000000000000002959e818b16c181f03e704a9d775b93bf735c5e1fb21dfc2f54841cbb044f7b90f189ae332a8c90c4255fe59fc39cac25d5af4efb3ccfaefcacbb617df38f0e2200000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c1e8c818dedf14fb19962e0b75a071347fa351c330ad59975989123c4f26d5d22930ba2b275c764e368ffac3e4969e1b80ec49fadc1937a3cec85a43b6aff61b", - "receiptsRoot": "0xa27452874387ad92b05e02c615456138f6bda9952a8955950569aa055ae00613", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c3333fbfa60406253b210356342aca2e47cb8f78b8978594b4744cbbdd179de3df3e366fc878ab4f8223a78ef350858b7a4f6c69a579595c0c46c79be6725b9900000000000000000000006a91c5a8000000000000000000000000000229655a0000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000019c00000000000cd77600000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000229655a", - "digest": "0x40e8e917b385e8efbf963acbb2e5b7359ef17aadf3050c11c01a11dcb6d1c1f8", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140792", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000229655a", - "digest": "0x17b0ae228575a79e2bf69917fc9882481a64ceccb07c6961572e8179f17263b1", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964706", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "230970167550", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403056", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000019c00000000000cd77600000000000000000000000000000001000000006a91c531", - "digest": "0xbc653967a51a3696c017767194c790eaa96ac30db92f271e956449d5833f2778", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397404", - "ptr": "67101810", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374572", - "ptr": "67101185", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000229655a", - "digest": "0x17b0ae228575a79e2bf69917fc9882481a64ceccb07c6961572e8179f17263b1", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67100957", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1897401", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457304", - "ptr": "67100037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370300", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50596", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "111880", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "212", - "totalGas": "121512", - "transactionId": "0xadb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a5202" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc1e8c818dedf14fb19962e0b75a071347fa351c330ad59975989123c4f26d5d22930ba2b275c764e368ffac3e4969e1b80ec49fadc1937a3cec85a43b6aff61b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xf87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587858", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0021", - "utxoId": "0xa6a781dafbe60125b165d5e04505242378e83912d9709ee41ea5c35bf7a325190000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x959e818b16c181f03e704a9d775b93bf735c5e1fb21dfc2f54841cbb044f7b90", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x54d734fd630b6cf68d9cc8d3933f2804e44842b068de7d5d5ba111de41833484", - "txPointer": "03bd1aa50005", - "utxoId": "0xadb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a52020002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xee5bd95a1bd06b1d815b02a2cd771f357088c1d2b2873cde1ac8b4b6133ee022", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0xfabada056b3dc819117b240b26d4b053bb611a7cf91ef3c6600fa0a4e54e64bc", - "txPointer": "03bd1aa50005", - "utxoId": "0xadb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a52020001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50005", - "utxoId": "0xadb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a52020003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1587651", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9f440f2a58fe056632655305e53c2213b8b5f93bd629ea2e8d17a416c6220dcb", - "inputIndex": "1", - "stateRoot": "0x8f34fa9b60e8c4131cf3014c40ce4154bfffa760e876b21bed906956632435c5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2f5489fe3f17c76a9dff59f64dcb4cc719b134879b89ad3e0d9fed12eaa77813", - "inputIndex": "2", - "stateRoot": "0x0431be6cd9f37aefaf8da706fd2660b7bcdd46db2e071f243016f0b2808763e2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848003b8eb4a1da1bb27a553b3e43eb83bfca19262426e1f665e15936da9885469030000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009d4f0535f6367ee3d710223ad361582386438cf280b624706f32ca32fcc912934af91475558e032f2db050d4d27182a8b316ef9fbb8c2035dc217f0b163568a400000000000000000000006a91c5a800000000000000000000000000022965590000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001800000000000cddb300000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000006400000000000210ac0000000003bd1aa80000000000000000a6a781dafbe60125b165d5e04505242378e83912d9709ee41ea5c35bf7a325190000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183a92f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002100000000000000000000000000000000000000000000000000000000000000000000000000000001adb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a52020000000000000002959e818b16c181f03e704a9d775b93bf735c5e1fb21dfc2f54841cbb044f7b9054d734fd630b6cf68d9cc8d3933f2804e44842b068de7d5d5ba111de418334840000000003bd1aa50000000000000005df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000001adb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a52020000000000000001ee5bd95a1bd06b1d815b02a2cd771f357088c1d2b2873cde1ac8b4b6133ee022fabada056b3dc819117b240b26d4b053bb611a7cf91ef3c6600fa0a4e54e64bc0000000003bd1aa5000000000000000567131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000001adb3bd30e1217a47f3bd1d32924faf986a1916b7ff3344b5b10bd71d096a52020000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001839c3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000019f440f2a58fe056632655305e53c2213b8b5f93bd629ea2e8d17a416c6220dcb8f34fa9b60e8c4131cf3014c40ce4154bfffa760e876b21bed906956632435c5000000000000000100000000000000022f5489fe3f17c76a9dff59f64dcb4cc719b134879b89ad3e0d9fed12eaa778130431be6cd9f37aefaf8da706fd2660b7bcdd46db2e071f243016f0b2808763e20000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004056f676da5402925fabfb7900d390fde3eb42089cf6db2b0b615a297cec74bb4a608f5672049c1f8e8a4ac7ce3578974a0a78dfbb148d70c638b919d2d97e54b9", - "receiptsRoot": "0x03b8eb4a1da1bb27a553b3e43eb83bfca19262426e1f665e15936da988546903", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009d4f0535f6367ee3d710223ad361582386438cf280b624706f32ca32fcc912934af91475558e032f2db050d4d27182a8b316ef9fbb8c2035dc217f0b163568a400000000000000000000006a91c5a800000000000000000000000000022965590000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001800000000000cddb300000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000002296559", - "digest": "0x7d4bb388dd2267b56651dd0ae9f8e4526e203eeb7918feeaf41dc9f9b5c2322a", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140792", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a80000000000000000000000000002296559", - "digest": "0x30593092eff8e55c3f5348487d80adf8844189971cd2c94e4ad8011d3b1878b8", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964706", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "102552618875", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403056", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001800000000000cddb300000000000000000000000000000001000000006a91c531", - "digest": "0x084307a64b95147718ac1224b486aff2b131326d2b5441fb25b64d5c639b6b2a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397404", - "ptr": "67102290", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374572", - "ptr": "67101665", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a80000000000000000000000000002296559", - "digest": "0x30593092eff8e55c3f5348487d80adf8844189971cd2c94e4ad8011d3b1878b8", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67101437", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1900035", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457304", - "ptr": "67100517", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370300", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50596", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "109246", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "207", - "totalGas": "118878", - "transactionId": "0xf87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x56f676da5402925fabfb7900d390fde3eb42089cf6db2b0b615a297cec74bb4a608f5672049c1f8e8a4ac7ce3578974a0a78dfbb148d70c638b919d2d97e54b9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1585833", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0023", - "utxoId": "0x725e842b3a829d6ae311396b6edc6a14a075c7ac3fdfe67cb65091ae6329a1520000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x957b1e033c87aeb7025254e5e8f110c2ff524cb15840cb7bb7bd82350f49faaa", - "contractId": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "stateRoot": "0x0a0d5fae66d5acbdc4077f1af3ddfdc4d4fc9f9b17000069af2d2c353b44e22c", - "txPointer": "03bd1aa40078", - "utxoId": "0x1e0b238a7e4e886225875b4f9dbcaeab83732a745fbacc8470ef56f49318768b0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x190a10f309cbeebcd089dd5303be733d5c02aff2c15065fa7b33cbc119d3fdd1", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50006", - "utxoId": "0xf87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9925ffc7bf28d767901838b2e82282f784273d0c7bcf448bc9653a984ab14e2f", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xdeb38ff7bde4a79c57d8c7cb6464ca472907f418bc4007969ee7c6e5530a709e", - "txPointer": "03bd1aa50000", - "utxoId": "0xab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1585538", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x275784bebeb7ee1005a7c57bb36cf158d6e517f6442c89ea7d0dad34840200f1", - "inputIndex": "1", - "stateRoot": "0x56c8a84d134cc5ccbb55985b04d8e6fa61811d5380e1ccad0f0ea74151e86ab3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc71eee753c284c8bbef4900cb4bf79ab5f4887c9e5b71192a2d5a88836a5a29f", - "inputIndex": "3", - "stateRoot": "0xdd2b38779b8339c4107e8e806a9382de3b0753c0a50fafe50702d59ae889a200" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801248531164ca54020517221f8ce167d5b18ef1cc9a70fa1bc574bdab63cb4ad700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0743e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d61e59c180d09e73682a2249dd9b187c53714577f87850708aae9aa2a20671234e0f54236cca9098f6defe53f35018cc3c080b89636d229ad56685fa89b6ae1d00000000000000000000006a91c5a800000000000000000000000000000e6c3e00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000001b1ebfc00dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d600fc00000001b1ebfc00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa80000000000000000725e842b3a829d6ae311396b6edc6a14a075c7ac3fdfe67cb65091ae6329a1520000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001832a9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000023000000000000000000000000000000000000000000000000000000000000000000000000000000011e0b238a7e4e886225875b4f9dbcaeab83732a745fbacc8470ef56f49318768b0000000000000001957b1e033c87aeb7025254e5e8f110c2ff524cb15840cb7bb7bd82350f49faaa0a0d5fae66d5acbdc4077f1af3ddfdc4d4fc9f9b17000069af2d2c353b44e22c0000000003bd1aa4000000000000007843e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60000000000000001f87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a0000000000000003190a10f309cbeebcd089dd5303be733d5c02aff2c15065fa7b33cbc119d3fdd100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e00000000000000029925ffc7bf28d767901838b2e82282f784273d0c7bcf448bc9653a984ab14e2fdeb38ff7bde4a79c57d8c7cb6464ca472907f418bc4007969ee7c6e5530a709e0000000003bd1aa500000000000000000a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183182f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001275784bebeb7ee1005a7c57bb36cf158d6e517f6442c89ea7d0dad34840200f156c8a84d134cc5ccbb55985b04d8e6fa61811d5380e1ccad0f0ea74151e86ab3000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003c71eee753c284c8bbef4900cb4bf79ab5f4887c9e5b71192a2d5a88836a5a29fdd2b38779b8339c4107e8e806a9382de3b0753c0a50fafe50702d59ae889a20000000000000000407ed07f41125e5505a9675b3cf501a7dbea4ddacfd31172340f0a4ae04726122b9b52a6148525b958a0a8e9d3c34e73313027614fb94422d2288dda546edc2a8d", - "receiptsRoot": "0x1248531164ca54020517221f8ce167d5b18ef1cc9a70fa1bc574bdab63cb4ad7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0743e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d61e59c180d09e73682a2249dd9b187c53714577f87850708aae9aa2a20671234e0f54236cca9098f6defe53f35018cc3c080b89636d229ad56685fa89b6ae1d00000000000000000000006a91c5a800000000000000000000000000000e6c3e00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000001b1ebfc00dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d600fc00000001b1ebfc000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000000e6c3e", - "digest": "0x290433567b253faeffbd8f8f77048561099022d66e899dd8729862ef1f3bff7c", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b79953e9cb647ad02924a75ab09a52340a224e290ed3cff72be17d86d3f087980a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000000e6c3e", - "digest": "0x92746843d02805349d12bbe0bf0615b852cae39f060323b72b21bef6a094ccb6", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "1200835196", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a600000000000000000000000047934a7c", - "digest": "0x3cca2b0a343f2e655e888b82ba5989767b657eb83849335a6e25123dd1fedbdf", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b79953e9cb647ad02924a75ab09a52340a224e290ed3cff72be17d86d3f087980a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000000e6c3e", - "digest": "0x92746843d02805349d12bbe0bf0615b852cae39f060323b72b21bef6a094ccb6", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "7280000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d600fc00000000000000010000000000000001000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60000000000000001000000000000000100000001b1ebfc000000000009d600fc000000006a91c531", - "digest": "0x80a888a6188917f8e167c3bf7716a58aee8571878e59f03963fe565f6672b2a9", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d600fc0000000000000000000000000000000300000000000000010000000009d600fc0000000000000001000000000000000100000001b1ebfc000000000009d600fc000000006a91c531", - "digest": "0xf423b561c3f57ef06eec7fbcf94f754c58ab85584b24c40ba241e78813fa9eb4", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000000000000001d546", - "digest": "0x8956f45e940884c6e179c2ce7a083546ea18a90cfccac59084c3a9a964fef369", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67097630", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d600fc00000000000000010000000000000001", - "digest": "0x30e3ec86393b946225b2b17976c68535483e7b3a9bff250ecc7e3afb368aeca2", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67096670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "159496", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "295", - "totalGas": "169117", - "transactionId": "0x565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7ed07f41125e5505a9675b3cf501a7dbea4ddacfd31172340f0a4ae04726122b9b52a6148525b958a0a8e9d3c34e73313027614fb94422d2288dda546edc2a8d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2022099", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0028", - "utxoId": "0x91259df34f583fc817bbcbd062e9589e848af0147e83ae2a0e1dba8cdf2051a20000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xe133beeb4933f018139e5567c78713d7758576a4bf61bbd976a3bf6213b51093", - "txPointer": "03bd1aa50002", - "utxoId": "0x373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50007", - "utxoId": "0x565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x44d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ed", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xe9999c1c971d15cb4aa66b43a869d74f7bd480779b9c8b0df4cb8057651c9cd8", - "txPointer": "03bd1aa50002", - "utxoId": "0x373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2021850", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x31a9c89cd5150f78b7c7cf8fe2acb669c5f4c660ab9ea8286e2721f366860f40", - "inputIndex": "1", - "stateRoot": "0x72c03cc900194e56c633601738e9fa369586a59f68a55909882b4dda0afe2ad6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5ca76bf13f6e104841509e504f267390dcbb9771fef829bafbcb92d13cdaf99f", - "inputIndex": "3", - "stateRoot": "0x957dae3099a965290bd2c65bc32af581f60bf1e3d2c7eb9917b85f44a3b5513f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802532f2e9576d6595e07216967a37fd78e2f3da63464e496ea65850677c31873300000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002808f7bd38c777f298e8b30f10f6d1d2ef7088ef1147485c405aea2a8e8cafc81b15f55251bf7348e559a2a8aefbfa87fdf4c62c484be73e7aed389e4ca6671400000000000000000000006a91c5a8000000000000000000000000000313566300000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000004f927bc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9fb19660000000004f927bc0000000000000000100000000000000000000006400000000000210ac0000000003bd1aa8000000000000000091259df34f583fc817bbcbd062e9589e848af0147e83ae2a0e1dba8cdf2051a20000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001edad3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000001373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff00000000000000033478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2e133beeb4933f018139e5567c78713d7758576a4bf61bbd976a3bf6213b510930000000003bd1aa50000000000000002c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a0000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001373d1f68b3642a3b309cc1a6b3db4e93a5953f819b77ee1aa8401b46e0c994ff000000000000000244d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ede9999c1c971d15cb4aa66b43a869d74f7bd480779b9c8b0df4cb8057651c9cd80000000003bd1aa500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001ed9daf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000131a9c89cd5150f78b7c7cf8fe2acb669c5f4c660ab9ea8286e2721f366860f4072c03cc900194e56c633601738e9fa369586a59f68a55909882b4dda0afe2ad60000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000035ca76bf13f6e104841509e504f267390dcbb9771fef829bafbcb92d13cdaf99f957dae3099a965290bd2c65bc32af581f60bf1e3d2c7eb9917b85f44a3b5513f00000000000000406691083d8a74efa0f6b7fd8aabbba4f5bde1a4e72b37dc6a0d1afe77266076c02b7950a4510827e6dc0684a4296f2e0620bd9d0e935f25f5c448402943f58838", - "receiptsRoot": "0x2532f2e9576d6595e07216967a37fd78e2f3da63464e496ea65850677c318733", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002808f7bd38c777f298e8b30f10f6d1d2ef7088ef1147485c405aea2a8e8cafc81b15f55251bf7348e559a2a8aefbfa87fdf4c62c484be73e7aed389e4ca6671400000000000000000000006a91c5a8000000000000000000000000000313566300000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000004f927bc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9fb19660000000004f927bc00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000003135663", - "digest": "0xb473ae84accdc040156d87434f470b23095ed9dbacaab8d517d66194759ab79b", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135663", - "digest": "0xcb348ceb424ff997c2e965855169ed0bea2952d2a478efb7519635a5535cb9b5", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135663", - "digest": "0xcb348ceb424ff997c2e965855169ed0bea2952d2a478efb7519635a5535cb9b5", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1335000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000180000001c9fb19660000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000010000000000000001000000004f927bc00000001c9fb19660000000006a91c531", - "digest": "0x96061457db884e4aa02592113c437f4bd8688b951ef1b2aa78be740ccd53dab0", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000180000001c9fb1966000000000000000010000000000000001", - "digest": "0x39b61f39965822962510cfcc4900043dbaca6fb90b43d4eafa2310dfc5986503", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099142", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133382", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "143003", - "transactionId": "0xa0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6691083d8a74efa0f6b7fd8aabbba4f5bde1a4e72b37dc6a0d1afe77266076c02b7950a4510827e6dc0684a4296f2e0620bd9d0e935f25f5c448402943f58838" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab0962037", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1734203", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0026", - "utxoId": "0x614a9a539632232ec14a32deef976d7890dcb225f2d1687da00ce36a1f2b924e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50008", - "utxoId": "0xa0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df40002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfd75cf08b266b5f92b310e6cffc3874bc478db258f4d5483a115a07d97d0cc64", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x9a70d40627d7ee2d9e1728a3673ef34773b19e3181431e3f7d5c9d564fc88c4b", - "txPointer": "03bd1aa50007", - "utxoId": "0x565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1b0795728c94370602ab46bb50830b40e326b3a96578aaaefc4263cc70049ffe", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xa84144f53d98dbcdc5e0b101d47cdccce23d3e681f99a5c1522f4712a4b2a7f8", - "txPointer": "03bd1aa40067", - "utxoId": "0xde82fb788f62649265a51cd43ed31226df799abfaa385fce5c7a8d4c7ef578150003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1733952", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a8508", - "inputIndex": "2", - "stateRoot": "0x59ed138b751efc94eee615aff689fac19531d53d09bc8331fc4e6b1d8de773ff" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a88992444", - "inputIndex": "3", - "stateRoot": "0x9d9cbc35ce2e086a51c2bcb89146df82ab63bfb26699d45c0c60b5e680ca9f19" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805f940abdfff56c9b292335ea1c9871ab1a43f45d0c92c6b5bc247dade11a398d0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000073825de4a867d8c377b72d202de65dc57c49f8fdc5a32b1c6ab2f5fa86fa82c7bc6ee84a530e6fd4a5cb86f389f5625d022a6293d717e98cafff1cd17e847e9100000000000000000000006a91c5a800000000000000000000000000023a364a00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000f0000000009d37b48000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aa80000000000000000614a9a539632232ec14a32deef976d7890dcb225f2d1687da00ce36a1f2b924e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a763bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000001a0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df40000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a0000000000000003fd75cf08b266b5f92b310e6cffc3874bc478db258f4d5483a115a07d97d0cc649a70d40627d7ee2d9e1728a3673ef34773b19e3181431e3f7d5c9d564fc88c4b0000000003bd1aa500000000000000070a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000001de82fb788f62649265a51cd43ed31226df799abfaa385fce5c7a8d4c7ef5781500000000000000031b0795728c94370602ab46bb50830b40e326b3a96578aaaefc4263cc70049ffea84144f53d98dbcdc5e0b101d47cdccce23d3e681f99a5c1522f4712a4b2a7f80000000003bd1aa40000000000000067ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a7540f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000028e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a850859ed138b751efc94eee615aff689fac19531d53d09bc8331fc4e6b1d8de773ff00000000000000010000000000000003ba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a889924449d9cbc35ce2e086a51c2bcb89146df82ab63bfb26699d45c0c60b5e680ca9f1900000000000000403f7f7b09773a048c0af7bb89c6bfa1e55c6bdee57ea53d6199faee59e8007a56e1d558886318816216f5c4016c6b3ec3bb4f3d89b324d0091b30ffc44b6acb51", - "receiptsRoot": "0x5f940abdfff56c9b292335ea1c9871ab1a43f45d0c92c6b5bc247dade11a398d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000073825de4a867d8c377b72d202de65dc57c49f8fdc5a32b1c6ab2f5fa86fa82c7bc6ee84a530e6fd4a5cb86f389f5625d022a6293d717e98cafff1cd17e847e9100000000000000000000006a91c5a800000000000000000000000000023a364a00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000f0000000009d37b48000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023a364a", - "digest": "0x7452ec3b4bc0e89b69541295c9d4060fb234e673b22a78b927b59827be98aa02", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000023a364a", - "digest": "0x2f830884404503285c6d55a7b84fd709eaaa695ccffc256386944320e654e762", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "1034451075178", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f0000000009d37b4800000000000000000000000000000001000000006a91c531", - "digest": "0xeab7e1c71639b1f8b5167389a081be04670c3b08c9ede9cc007fc94c849ba9d7", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100066", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099441", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000023a364a", - "digest": "0x2f830884404503285c6d55a7b84fd709eaaa695ccffc256386944320e654e762", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099213", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873785", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098741", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134651", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "251", - "totalGas": "144283", - "transactionId": "0x5eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab0962037" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3f7f7b09773a048c0af7bb89c6bfa1e55c6bdee57ea53d6199faee59e8007a56e1d558886318816216f5c4016c6b3ec3bb4f3d89b324d0091b30ffc44b6acb51" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b49", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1726030", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0029", - "utxoId": "0x61c77b713fd8c70d1c496f8bf43def48135673e9c6ff374e48f75224e7f0c55f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5ca76bf13f6e104841509e504f267390dcbb9771fef829bafbcb92d13cdaf99f", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x5bb81a590b474998ac8f2768f4c0aa86eba587cdb5d3642796930f92850c7f3d", - "txPointer": "03bd1aa50008", - "utxoId": "0xa0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x31a9c89cd5150f78b7c7cf8fe2acb669c5f4c660ab9ea8286e2721f366860f40", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x196d1380c9eb3b0968fade96e37e3940400bcc91f637178034807c0b35229edd", - "txPointer": "03bd1aa50008", - "utxoId": "0xa0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50009", - "utxoId": "0x5eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab09620370001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1725783", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc25a1d99b870fb6a1c7a9a406805e1c101b569e963f95e01192e3b62f52f7851", - "inputIndex": "1", - "stateRoot": "0xfef6cd5aeeb4de6a3edc7f65c20cd253ba8a142fa89a64614df04900d3e97cc2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7fc14e04b73315faefbcb32c311f889db28ed5804332c0b78080dc6e61f21b97", - "inputIndex": "2", - "stateRoot": "0xa64721ac1212c37bb3e68c6d616328afe5395a4eeed4865836e7219298534553" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809643ed9cc33ee072172e14cf81bccad082abb074d19d20c4f31bc1c16cadf44600000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001b3cef647dad4779f0b77e9e551d21abb6ba44d7de04bb7e080bd57330bb4ee681b0355ea7c9b59775891707dd773f68cdcf21a06ef21f28e4af7adbb042463100000000000000000000006a91c5a8000000000000000000000000000313566400000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000000040503bc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001ca13e50e00000000040503bc0000000000000000100000000000000000000006400000000000210ac0000000003bd1aa8000000000000000061c77b713fd8c70d1c496f8bf43def48135673e9c6ff374e48f75224e7f0c55f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a564ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002900000000000000000000000000000000000000000000000000000000000000000000000000000001a0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df400000000000000035ca76bf13f6e104841509e504f267390dcbb9771fef829bafbcb92d13cdaf99f5bb81a590b474998ac8f2768f4c0aa86eba587cdb5d3642796930f92850c7f3d0000000003bd1aa500000000000000088d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001a0b7ddff5a040f50b9a25bdbbcf7e849ac745c6097c7a5844117e06838512df4000000000000000131a9c89cd5150f78b7c7cf8fe2acb669c5f4c660ab9ea8286e2721f366860f40196d1380c9eb3b0968fade96e37e3940400bcc91f637178034807c0b35229edd0000000003bd1aa50000000000000008c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000015eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab09620370000000000000001a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a5557f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001c25a1d99b870fb6a1c7a9a406805e1c101b569e963f95e01192e3b62f52f7851fef6cd5aeeb4de6a3edc7f65c20cd253ba8a142fa89a64614df04900d3e97cc2000000000000000100000000000000027fc14e04b73315faefbcb32c311f889db28ed5804332c0b78080dc6e61f21b97a64721ac1212c37bb3e68c6d616328afe5395a4eeed4865836e721929853455300000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a07403e96d122fa821c414cb5375eee68ddb2e56c92befb8e2f268a9e08b103fb78bd0046686905e0a48a0ccddf6bcb1dc7dd39c8f9339b318026946e51a6686", - "receiptsRoot": "0x9643ed9cc33ee072172e14cf81bccad082abb074d19d20c4f31bc1c16cadf446", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001b3cef647dad4779f0b77e9e551d21abb6ba44d7de04bb7e080bd57330bb4ee681b0355ea7c9b59775891707dd773f68cdcf21a06ef21f28e4af7adbb042463100000000000000000000006a91c5a8000000000000000000000000000313566400000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000000040503bc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001ca13e50e00000000040503bc00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000003135664", - "digest": "0x078a23699aae333448569af58880d38208592ea9238aad0955ba6da6a573fbaf", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135664", - "digest": "0x6df732201127ce9aaeb78e23cf3a6aeeb14ae2156e27d9e88d3ef8a0795d5625", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135664", - "digest": "0x6df732201127ce9aaeb78e23cf3a6aeeb14ae2156e27d9e88d3ef8a0795d5625", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1079000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000120000001ca13e50e0000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000100000000000000010000000040503bc00000001ca13e50e0000000006a91c531", - "digest": "0x9838bedae2ff8b0d4c596744d3854c58bb7c8ea01c5c7360761d8a48a8ad8e47", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000120000001ca13e50e000000000000000010000000000000001", - "digest": "0xeae43db2223afbe06a15bf10b9a2af90978d4d6eff0ccd4e7d3ad7e4c8e62a29", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099398", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131969", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141590", - "transactionId": "0x0cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b49" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa07403e96d122fa821c414cb5375eee68ddb2e56c92befb8e2f268a9e08b103fb78bd0046686905e0a48a0ccddf6bcb1dc7dd39c8f9339b318026946e51a6686" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa35c6bf057569f0a9d27fec68401c7e0ef4162b051b15fd26b98ae0cfcb49471", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1875093", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f002a", - "utxoId": "0x68b6df1a82d4865c21e0b1a6ab435142d6ca7cfb0602c1ecb3048e32d9c605f80000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9f440f2a58fe056632655305e53c2213b8b5f93bd629ea2e8d17a416c6220dcb", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0xb255a307e5508b7a6488da1a10bd5d1534a37a07783d4afc5ec3f12326275292", - "txPointer": "03bd1aa50006", - "utxoId": "0xf87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2f5489fe3f17c76a9dff59f64dcb4cc719b134879b89ad3e0d9fed12eaa77813", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x380afcdfd047700aa22cb53a50c9550cf449eb0e8131f212e1f2880b012010f0", - "txPointer": "03bd1aa50006", - "utxoId": "0xf87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5000a", - "utxoId": "0x0cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b490003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1874874", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbae9c347c6e63489cf6857293abdd140e85c2286bab2ee4725df798c8001f0c7", - "inputIndex": "1", - "stateRoot": "0xc79ce2feccd2e13e57b383cfc4d061804b4bfd9b476ed0afa8b287a1b62298a3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x752abad0eccc61bc0e87a27d119a7beb2e8f38d93cbf4eeb3dfefe8af522ee91", - "inputIndex": "2", - "stateRoot": "0x90ec05ac26a771989755606e08356df60288f214958d9c3ed5b8b752186940a1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ebf5093987c2a224e24c26078c53a7c5f88bed0cd0b9e318ab8d2589dab0a67100000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c03abe2e20afdaff16de2229309740957299640f2d1a7cecf8daf55bcb3c9c5ae39569b7d5f3b2caa052df5c38e214138d669e4ce7306bbbe787140b916a96fd00000000000000000000006a91c5a8000000000000000000000000000229655b0000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000002efd155b9a6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cdae60000d9ded042b600000000000000000100000000000000000000006400000000000210ac0000000003bd1aa8000000000000000068b6df1a82d4865c21e0b1a6ab435142d6ca7cfb0602c1ecb3048e32d9c605f80000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c9c95f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002a00000000000000000000000000000000000000000000000000000000000000000000000000000001f87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a00000000000000019f440f2a58fe056632655305e53c2213b8b5f93bd629ea2e8d17a416c6220dcbb255a307e5508b7a6488da1a10bd5d1534a37a07783d4afc5ec3f123262752920000000003bd1aa50000000000000006df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000001f87cd549f8f1f5ee40077fa0c1a9e211fac7cde909c362742fff3928c137947a00000000000000022f5489fe3f17c76a9dff59f64dcb4cc719b134879b89ad3e0d9fed12eaa77813380afcdfd047700aa22cb53a50c9550cf449eb0e8131f212e1f2880b012010f00000000003bd1aa5000000000000000667131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000010cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b490000000000000003f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c9bbaf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001bae9c347c6e63489cf6857293abdd140e85c2286bab2ee4725df798c8001f0c7c79ce2feccd2e13e57b383cfc4d061804b4bfd9b476ed0afa8b287a1b62298a300000000000000010000000000000002752abad0eccc61bc0e87a27d119a7beb2e8f38d93cbf4eeb3dfefe8af522ee9190ec05ac26a771989755606e08356df60288f214958d9c3ed5b8b752186940a100000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a36585e3e659bb6c0e425bbf019c23097e85d6c45e2e90476e0f400d2ed1c9145c29317a8d4cfb839b198f41763b8727a49ef5fbac7371f53847b9b5cbdb0108", - "receiptsRoot": "0xebf5093987c2a224e24c26078c53a7c5f88bed0cd0b9e318ab8d2589dab0a671", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c03abe2e20afdaff16de2229309740957299640f2d1a7cecf8daf55bcb3c9c5ae39569b7d5f3b2caa052df5c38e214138d669e4ce7306bbbe787140b916a96fd00000000000000000000006a91c5a8000000000000000000000000000229655b0000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000002efd155b9a6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cdae60000d9ded042b6000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000229655b", - "digest": "0xdef244ae66152f4d2b810b14c466c56c7835c09a2f018616fe9c60dc6d04d28d", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140784", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000229655b", - "digest": "0x644bb91565bbe9ab032984e4aa5af81817ce9361cb9848dbfd99cb6ba1412657", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964708", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457296", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370292", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000229655b", - "digest": "0x644bb91565bbe9ab032984e4aa5af81817ce9361cb9848dbfd99cb6ba1412657", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "201814530970", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1950316", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003200000000000cdae600000000000000000000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000000000000000000010000d9ded042b60000000000000cdae6000000006a91c531", - "digest": "0x17006b50e2764010e0536efb2d97be2e0f914973ea0e6167404639a2cffbed01", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428028", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003200000000000cdae600000000000000000000000000000001", - "digest": "0xa4b07f12db0d5993982d2e93f44030e8b5874e74ca8c2dee7d8e833295ed3ee0", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374260", - "ptr": "67100246", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50588", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "116198", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "219", - "totalGas": "125819", - "transactionId": "0xa35c6bf057569f0a9d27fec68401c7e0ef4162b051b15fd26b98ae0cfcb49471" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa36585e3e659bb6c0e425bbf019c23097e85d6c45e2e90476e0f400d2ed1c9145c29317a8d4cfb839b198f41763b8727a49ef5fbac7371f53847b9b5cbdb0108" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587400", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0027", - "utxoId": "0x2bdd2b4cbf337ba21be9f0c2691185d2aae3fd5f924b7da5787282f862011a010000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc25a1d99b870fb6a1c7a9a406805e1c101b569e963f95e01192e3b62f52f7851", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xcb46c9a8ab0112c063e10b81e3397cc918d3b55531d886b77c5942ec435129e2", - "txPointer": "03bd1aa5000a", - "utxoId": "0x0cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b490001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7fc14e04b73315faefbcb32c311f889db28ed5804332c0b78080dc6e61f21b97", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x4f66586afe8934c5f47335fca368c3bc742054ebd20eb35bdae7854c89f07e23", - "txPointer": "03bd1aa5000a", - "utxoId": "0x0cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b490002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5000b", - "utxoId": "0xa35c6bf057569f0a9d27fec68401c7e0ef4162b051b15fd26b98ae0cfcb494710003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1587149", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8692a84ee4535060d890fbe6b448a8738c61a2cadc21b212b98e1fea97af9e31", - "inputIndex": "1", - "stateRoot": "0xad4b0db4cac304e8e5c740edaec1947fc087b192337e95e52744a7d394bc7774" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x00206e8079151b404d84a678d861c529c2baa9305cbc1ccc5c66c0630df3c0f2", - "inputIndex": "2", - "stateRoot": "0xf5b8e833022ac2a2b4cff1f6a18ba0f95597ec164def5743e560137e2f4d7f7e" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84803b21d8ad1f39caabeba9830d22402a65a2f0302f75f3e130eb8df3cfa75403fd00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cf81fd433457c1d1be282346a7ce0e67879e1500aa5e7059de7a95998582ee26d745a22f27efe76b31522aa2e5120bdfde46284a1fc6018dfdcbfd4f62d07a9800000000000000000000006a91c5a8000000000000000000000000000313566200000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000001b0f7d8013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9f792140000000001b0f7d80000000000000000100000000000000000000006400000000000210ac0000000003bd1aa800000000000000002bdd2b4cbf337ba21be9f0c2691185d2aae3fd5f924b7da5787282f862011a010000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001838c8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000027000000000000000000000000000000000000000000000000000000000000000000000000000000010cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b490000000000000001c25a1d99b870fb6a1c7a9a406805e1c101b569e963f95e01192e3b62f52f7851cb46c9a8ab0112c063e10b81e3397cc918d3b55531d886b77c5942ec435129e20000000003bd1aa5000000000000000a8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000010cc02a0871b92a510833371a7f4bb1adcb63350a05d16c405ede991551d90b4900000000000000027fc14e04b73315faefbcb32c311f889db28ed5804332c0b78080dc6e61f21b974f66586afe8934c5f47335fca368c3bc742054ebd20eb35bdae7854c89f07e230000000003bd1aa5000000000000000ac7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001a35c6bf057569f0a9d27fec68401c7e0ef4162b051b15fd26b98ae0cfcb494710000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001837cdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018692a84ee4535060d890fbe6b448a8738c61a2cadc21b212b98e1fea97af9e31ad4b0db4cac304e8e5c740edaec1947fc087b192337e95e52744a7d394bc77740000000000000001000000000000000200206e8079151b404d84a678d861c529c2baa9305cbc1ccc5c66c0630df3c0f2f5b8e833022ac2a2b4cff1f6a18ba0f95597ec164def5743e560137e2f4d7f7e00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d342a8ab414959dcb0ebcc74689e516fb0dafe6e98777d22853ba1ca47f6f60a204d004bba56f2e4124bedf4b2ab2a7cde578f59f687e688fbcf82b252a564fe", - "receiptsRoot": "0x3b21d8ad1f39caabeba9830d22402a65a2f0302f75f3e130eb8df3cfa75403fd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cf81fd433457c1d1be282346a7ce0e67879e1500aa5e7059de7a95998582ee26d745a22f27efe76b31522aa2e5120bdfde46284a1fc6018dfdcbfd4f62d07a9800000000000000000000006a91c5a8000000000000000000000000000313566200000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000001b0f7d8013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9f792140000000001b0f7d800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000003135662", - "digest": "0xcbb7624d47740ae69973d1e5458524ec59bbd9eeb116ba7f8167eb0791fd5763", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135662", - "digest": "0xcb210a5ebee33b9bacde33b38831b32705fab716bcee282939501f10013cc51a", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a80000000000000000000000000003135662", - "digest": "0xcb210a5ebee33b9bacde33b38831b32705fab716bcee282939501f10013cc51a", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "454000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000120000001c9f792140000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000010000000000000001000000001b0f7d800000001c9f792140000000006a91c531", - "digest": "0x5070b5be835425ef689622bb75d6873b58fe6b99ab7371d113578ec07b848488", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000120000001c9f79214000000000000000010000000000000001", - "digest": "0x2e7a50b86fa04555167d02afd72a8aa8abce886e4a24b0eff20bfc52c77c0656", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099014", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134532", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "251", - "totalGas": "144153", - "transactionId": "0x646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd342a8ab414959dcb0ebcc74689e516fb0dafe6e98777d22853ba1ca47f6f60a204d004bba56f2e4124bedf4b2ab2a7cde578f59f687e688fbcf82b252a564fe" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a41", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1732003", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0024", - "utxoId": "0xc8af6e606f9c9c0a3847e76bf5ac434b43b30303f765417b2a45cbfe4f5374f70000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc7487d317a2bc15e2bc40916d186cde8614b7afea3dd11a330db58b7d0f41206", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x318651654a54f656a278a50962e7e825210eecf66f1996d0f31983187e9426bf", - "txPointer": "03bd1aa40051", - "utxoId": "0x4e48ebcc734219c4f200bfb8f69ec6e5b2baf346408f3d1a2bdc519f60a075db0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf25925594b07bbdbe2285d05bc8eb1e91168828c10a90e71fed420799602b7e7", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x79475cf6fdf0db61e252a958de60341bc14b916e0a0ecc68b9fd8cf70d7e6e2a", - "txPointer": "03bd1aa40051", - "utxoId": "0x4e48ebcc734219c4f200bfb8f69ec6e5b2baf346408f3d1a2bdc519f60a075db0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5000c", - "utxoId": "0x646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1731762", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x78baa7a8c8c79ca80b8aab5b9f1a68393857546b53b358df945132ce4be0e4bd", - "inputIndex": "1", - "stateRoot": "0xf23f3929c0dddc36ab5b6048ccfc49bd3ed34276c2fed700d6bc040bb7aebd4a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x88f9449f24066ae2b2a2611a038738f0806a222d68e71e4d8ca2dcfff04da4af", - "inputIndex": "2", - "stateRoot": "0xa8c948b138d8e9c898a80c9631c6e3071e512a8218967487810259620a983a05" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480c8bac065728f80b8e6c2a945c0317abea26ad479157a1835ddbe929d4c28b8c60000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000bae7a5bd67d035d4ec69cb7e085b4c8a9a0ca938e729f988fdf1c205d0fdd3596f4fc3fdc8a5de4fef4a9dde8ef6ad5305c7df9beeda133eeb42c24cfdbfb1200000000000000000000006a91c5a8000000000000000000000000000251cf3800000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001a00000001091aab30000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aa80000000000000000c8af6e606f9c9c0a3847e76bf5ac434b43b30303f765417b2a45cbfe4f5374f70000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6da3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000014e48ebcc734219c4f200bfb8f69ec6e5b2baf346408f3d1a2bdc519f60a075db0000000000000002c7487d317a2bc15e2bc40916d186cde8614b7afea3dd11a330db58b7d0f41206318651654a54f656a278a50962e7e825210eecf66f1996d0f31983187e9426bf0000000003bd1aa400000000000000514added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000014e48ebcc734219c4f200bfb8f69ec6e5b2baf346408f3d1a2bdc519f60a075db0000000000000003f25925594b07bbdbe2285d05bc8eb1e91168828c10a90e71fed420799602b7e779475cf6fdf0db61e252a958de60341bc14b916e0a0ecc68b9fd8cf70d7e6e2a0000000003bd1aa40000000000000051b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6cb2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000178baa7a8c8c79ca80b8aab5b9f1a68393857546b53b358df945132ce4be0e4bdf23f3929c0dddc36ab5b6048ccfc49bd3ed34276c2fed700d6bc040bb7aebd4a0000000000000001000000000000000288f9449f24066ae2b2a2611a038738f0806a222d68e71e4d8ca2dcfff04da4afa8c948b138d8e9c898a80c9631c6e3071e512a8218967487810259620a983a050000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004066d1de0ff171af9b51a1b34b536bb4ebec258573cfbba05e3fb312c2319ae73173d07e42c4fbe86e9715fa8179fcc48c1757484585d6f382fb396c15da3cc9d9", - "receiptsRoot": "0xc8bac065728f80b8e6c2a945c0317abea26ad479157a1835ddbe929d4c28b8c6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000bae7a5bd67d035d4ec69cb7e085b4c8a9a0ca938e729f988fdf1c205d0fdd3596f4fc3fdc8a5de4fef4a9dde8ef6ad5305c7df9beeda133eeb42c24cfdbfb1200000000000000000000006a91c5a8000000000000000000000000000251cf3800000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001a00000001091aab30000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000251cf38", - "digest": "0xdd6dd4191bcb86a9c354bde72561b7c3a55d8342ab6b319a10191e5540a8f021", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf38", - "digest": "0x8a97a1a1b9c3b757cf93357009cf15edba804ebd9f0a9b63051a6bf9cbd8a35e", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "794320000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001a00000001091aab3000000000000000010000000000000001000000006a91c531", - "digest": "0x9075c74accda0d07471e8597b5d652d60d077a0c1775f97280c6b20d699619a8", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101146", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100521", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf38", - "digest": "0x8a97a1a1b9c3b757cf93357009cf15edba804ebd9f0a9b63051a6bf9cbd8a35e", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100293", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879527", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099821", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128909", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138541", - "transactionId": "0xb8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a41" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x66d1de0ff171af9b51a1b34b536bb4ebec258573cfbba05e3fb312c2319ae73173d07e42c4fbe86e9715fa8179fcc48c1757484585d6f382fb396c15da3cc9d9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x7049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad7070", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1725182", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0025", - "utxoId": "0x0c5bc07726ffde62e675644a6813fdaa8a6480d6e9776bd1968904690db2e72e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x78baa7a8c8c79ca80b8aab5b9f1a68393857546b53b358df945132ce4be0e4bd", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x87f9cd02bec6d05b3b3dd3ddf004da7d65e9a5916457864e6d9a0465acd7867c", - "txPointer": "03bd1aa5000d", - "utxoId": "0xb8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a410001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x88f9449f24066ae2b2a2611a038738f0806a222d68e71e4d8ca2dcfff04da4af", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0xa0d00e7113882ded70d23db9d115c11de36573d5145d4b344269ab2b8256e492", - "txPointer": "03bd1aa5000d", - "utxoId": "0xb8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a410002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5000d", - "utxoId": "0xb8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a410003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1724935", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcbecd88f859f94eb58cd33c6762f5ef96631b819f390f81f7b0fab337fa091c4", - "inputIndex": "1", - "stateRoot": "0xa4984cd03c9444e56cd8d4b0e5023ebd37e94e1512cf1aa030a0bf35bbe78061" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2ddf604c9ce4bda3c941153dbb7d27f5e1a45f65f3462cf38d9caa2931882870", - "inputIndex": "2", - "stateRoot": "0x060b268fd4471f63b5f0f69b2dd74d5d6b2cf03d4280b25c76706c745c9a0a94" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480a42c05c09db724430b4f52b8c70f27e4c47e55744515733658de7450a4cfc9ba0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ccdd887cdf5bb8fbc5c74eedc1edc8a0c8cc3eac21da915e446393a5532f3f3fba526fcd61565ba2d1b24959ca4cf56baac8fb6af70e95fb495053c4dadc045100000000000000000000006a91c5a8000000000000000000000000000251cf3900000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000d0000000108d90e50000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aa800000000000000000c5bc07726ffde62e675644a6813fdaa8a6480d6e9776bd1968904690db2e72e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a52fef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002500000000000000000000000000000000000000000000000000000000000000000000000000000001b8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a41000000000000000178baa7a8c8c79ca80b8aab5b9f1a68393857546b53b358df945132ce4be0e4bd87f9cd02bec6d05b3b3dd3ddf004da7d65e9a5916457864e6d9a0465acd7867c0000000003bd1aa5000000000000000d4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001b8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a41000000000000000288f9449f24066ae2b2a2611a038738f0806a222d68e71e4d8ca2dcfff04da4afa0d00e7113882ded70d23db9d115c11de36573d5145d4b344269ab2b8256e4920000000003bd1aa5000000000000000db8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001b8534d7cdd7ffe23c908113e3042139bf5eea3848029aca510f65c9cda588a410000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a5207f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001cbecd88f859f94eb58cd33c6762f5ef96631b819f390f81f7b0fab337fa091c4a4984cd03c9444e56cd8d4b0e5023ebd37e94e1512cf1aa030a0bf35bbe78061000000000000000100000000000000022ddf604c9ce4bda3c941153dbb7d27f5e1a45f65f3462cf38d9caa2931882870060b268fd4471f63b5f0f69b2dd74d5d6b2cf03d4280b25c76706c745c9a0a940000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004003ee30a95b40ca52eceb4116c492af562521710acce2545daf5117ab2d312b2accca593281fff3d0368b1eed3b40ba5a3944c89c2a641a440ae81621bc27401a", - "receiptsRoot": "0xa42c05c09db724430b4f52b8c70f27e4c47e55744515733658de7450a4cfc9ba", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ccdd887cdf5bb8fbc5c74eedc1edc8a0c8cc3eac21da915e446393a5532f3f3fba526fcd61565ba2d1b24959ca4cf56baac8fb6af70e95fb495053c4dadc045100000000000000000000006a91c5a8000000000000000000000000000251cf3900000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000d0000000108d90e50000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000251cf39", - "digest": "0x1efd0afd2fd4d7e7f4e4259f503b53fb4ee2d3c49456b1c9dbaf4773e0cae87b", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf39", - "digest": "0x2b955dff076fbe2bc385e8a98d4ec8b93d3d4b581031429bfea83520db15d37b", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "11490000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000108d90e5000000000000000010000000000000001000000006a91c531", - "digest": "0x21e1226b7edaa24f5a2ee99dca4b26a18fc84ba4120d5dfe5aeadff341988cbd", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100114", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf39", - "digest": "0x2b955dff076fbe2bc385e8a98d4ec8b93d3d4b581031429bfea83520db15d37b", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1876310", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098789", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132126", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141758", - "transactionId": "0x7049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad7070" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x03ee30a95b40ca52eceb4116c492af562521710acce2545daf5117ab2d312b2accca593281fff3d0368b1eed3b40ba5a3944c89c2a641a440ae81621bc27401a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xcba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1868407", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f002b", - "utxoId": "0x1fe0bd4c9732822b9c413d9ee044a2843fb14bb0d69165e3251249521fb84d2b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x45384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a8", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5000e", - "utxoId": "0x7049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad70700003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2d51b7aaee4887fc1fd0297395a05fd1a70c9b682e0c080c912b76e0457d9bee", - "contractId": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "stateRoot": "0x28bc799b6b86e23b68a6ffd3d4992243103f3e7f7a412d725abdfb911a5dee60", - "txPointer": "03bd1aa4005b", - "utxoId": "0xf941051bf9d4cde6259364d262fd17137b35c0921e08770ef8a24bc25fd63fdc0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf2124e55d4e24ddf2d518e16885c95b1906e336a3ce32faae800ebac29de0973", - "contractId": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "stateRoot": "0x9de158996df2c90f9d144e9250474b082e0a838b6c4db4b7f7297a3cbfa6919a", - "txPointer": "03bd1aa4005b", - "utxoId": "0xf941051bf9d4cde6259364d262fd17137b35c0921e08770ef8a24bc25fd63fdc0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1868027", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xabfe1872f17d164c0be4d0fae3f6deea5d6d33a3cd2400744490bf8f56e4ae76", - "inputIndex": "2", - "stateRoot": "0x2e8b0cccdd96af03e7047c48b23c6405a3606e78a430184272c1a2c717b80098" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8f7cf69d1d4c323ceae0ee75f275bf346fd0beed58310e48f2bcafcb5173ee25", - "inputIndex": "3", - "stateRoot": "0x63b1999ab194fff15ae27cf88e6f9e7837fd87860b0a248731730481d4cb68c8" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802e4ef850a9e47a1a81d835120c1416d4802184d92b5d5f83a15a0bac16fcc55b000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b16a6451d124810b6dccf4962c8a1bbc93b84d8629fb8bd619cb8167e9f8a925ed2a9c18ab348922511a7d80bdfa4d47cf9af8bbeeba6a68d47ae5cd3f19de2a00000000000000000000006a91c5a80000000000000000000000000002f431250000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000bdf4000000003ba9be2000000000000000010000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f72646572000000c0aa5f67a02269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0ffffffffffffffff00000000000000010000000000000018000000003ba9be20000000c0aa5f67a00000000000000003000000000000006400000000000210ac0000000003bd1aa800000000000000001fe0bd4c9732822b9c413d9ee044a2843fb14bb0d69165e3251249521fb84d2b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8277f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002b000000000000000000000000000000000000000000000000000000000000000000000000000000017049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad7070000000000000000345384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a800000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001f941051bf9d4cde6259364d262fd17137b35c0921e08770ef8a24bc25fd63fdc00000000000000022d51b7aaee4887fc1fd0297395a05fd1a70c9b682e0c080c912b76e0457d9bee28bc799b6b86e23b68a6ffd3d4992243103f3e7f7a412d725abdfb911a5dee600000000003bd1aa4000000000000005bca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000001f941051bf9d4cde6259364d262fd17137b35c0921e08770ef8a24bc25fd63fdc0000000000000001f2124e55d4e24ddf2d518e16885c95b1906e336a3ce32faae800ebac29de09739de158996df2c90f9d144e9250474b082e0a838b6c4db4b7f7297a3cbfa6919a0000000003bd1aa4000000000000005b2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a613970000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c80fbf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002abfe1872f17d164c0be4d0fae3f6deea5d6d33a3cd2400744490bf8f56e4ae762e8b0cccdd96af03e7047c48b23c6405a3606e78a430184272c1a2c717b80098000000000000000100000000000000038f7cf69d1d4c323ceae0ee75f275bf346fd0beed58310e48f2bcafcb5173ee2563b1999ab194fff15ae27cf88e6f9e7837fd87860b0a248731730481d4cb68c800000000000000409b7e2ca519daf48553ec4215a904fe8feb9e33e22804574c8c42d3be398f097f533f2779867ad1d03093824f19e24c9fdb19ed58b1b7e31c82fd46a4862d003e", - "receiptsRoot": "0x2e4ef850a9e47a1a81d835120c1416d4802184d92b5d5f83a15a0bac16fcc55b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b16a6451d124810b6dccf4962c8a1bbc93b84d8629fb8bd619cb8167e9f8a925ed2a9c18ab348922511a7d80bdfa4d47cf9af8bbeeba6a68d47ae5cd3f19de2a00000000000000000000006a91c5a80000000000000000000000000002f431250000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000bdf4000000003ba9be2000000000000000010000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f72646572000000c0aa5f67a02269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0ffffffffffffffff00000000000000010000000000000018000000003ba9be20000000c0aa5f67a00000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a80000000000000000000000000002f43125", - "digest": "0xd484faca38ecff26e2858670c835e99c9e77a158439cca8e83aa4e025ff9a8f8", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5a80000000000000000000000000002f43125", - "digest": "0x48c734dd1b538a5b19191fb70a742deaa1a545f5f181cacf0677a8e2fc6d0459", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": "1621889300000", - "assetId": "0x2269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000bdf4000000003ba9be2000000000000000010000000000000003000000006a91c531", - "digest": "0xe62b4ed8865fb25fddfd03e6b570bfca08b102cbbe0eed393e1df56ea68011d2", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099258", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67098633", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5a80000000000000000000000000002f43125", - "digest": "0x48c734dd1b538a5b19191fb70a742deaa1a545f5f181cacf0677a8e2fc6d0459", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098405", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1861397", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000000000000000000000000", - "digest": "0xbb12b82290efdd812bc0ad4d29c874d5fd4c7770aba5f41593fe26995d7e2c18", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67097485", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5a80000000000000000000000000002f43125", - "digest": "0x48c734dd1b538a5b19191fb70a742deaa1a545f5f181cacf0677a8e2fc6d0459", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097257", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "827492100000", - "assetId": "0x2269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1849123", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000bdf5000000003ba9be200000000000000001000000000000000300000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000000010000000000000003000000c0aa5f67a0000000003ba9be20000000006a91c531", - "digest": "0x18f47e312b50484c1a7440b0611f3d48b413a61cb0ba53bcef6311294079b493", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67095417", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000bdf5000000003ba9be2000000000000000010000000000000003", - "digest": "0x91811b1036ab68d2d9e7e31f48b1163fa3390300d19a4652cb7ee01e925ebb73", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67092761", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "208283", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "380", - "totalGas": "218111", - "transactionId": "0xcba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9b7e2ca519daf48553ec4215a904fe8feb9e33e22804574c8c42d3be398f097f533f2779867ad1d03093824f19e24c9fdb19ed58b1b7e31c82fd46a4862d003e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1588260", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f002c", - "utxoId": "0xee0ed5a3e53ee6124c252fb0a31d514243d1352b64e296940a7edbb444050c510000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5000f", - "utxoId": "0xcba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x14db97ae0c905b2cef6e2e864bdc0579214a63f4938f8e6d32dfd2bee64e4649", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x4226aa08c905a94662cef9bf8c86356842748c38059cd77dff8ae5756a7547ee", - "txPointer": "03bd1aa40070", - "utxoId": "0xc3fc81a672f048085466d15d9d1347aa962d1b1c385221cdd088da6b2005f48f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x51d9c6d56e7406c8549c1fb0db87660df7b41ed1f5d49c5b7ad0b54f94af105e", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x45e471f4f22580ad8e0335bfd14ac2f3a00697cff32f17dfa23a34c40c11aec7", - "txPointer": "03bd1aa40070", - "utxoId": "0xc3fc81a672f048085466d15d9d1347aa962d1b1c385221cdd088da6b2005f48f0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1588027", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc4bd46cf4159214d7aa8188aaf3226f6188abee6972c7547a19c176103e664d1", - "inputIndex": "2", - "stateRoot": "0xbb60b3ff69e6e6e3b18b6c6f7328695603106201108625b375d316f6679709b9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x79387b1b3e02326650a57db53b9d3725424d9083918f8a1b93114264a8425bbe", - "inputIndex": "3", - "stateRoot": "0x23f37abdec7e4a6d904ed65117a28305146b402c1bdc4b9aef516ee8f6a3b115" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f02742f24b0a58947769acd6c3856f1acb7ce8e253d272bac3d6dcc62876c5920000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000765e8a4aeb421067a827a68a6caa77513697216332a98586aa492893bcf07681c54afac1437762de479561bef1ec8896e981af42546bb1111cedfc53c791095700000000000000000000006a91c5a8000000000000000000000000000249f42b0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002600000000174588e800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa80000000000000000ee0ed5a3e53ee6124c252fb0a31d514243d1352b64e296940a7edbb444050c510000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183c24f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002c00000000000000000000000000000000000000000000000000000000000000000000000000000001cba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc40000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000000f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001c3fc81a672f048085466d15d9d1347aa962d1b1c385221cdd088da6b2005f48f000000000000000314db97ae0c905b2cef6e2e864bdc0579214a63f4938f8e6d32dfd2bee64e46494226aa08c905a94662cef9bf8c86356842748c38059cd77dff8ae5756a7547ee0000000003bd1aa40000000000000070295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000001c3fc81a672f048085466d15d9d1347aa962d1b1c385221cdd088da6b2005f48f000000000000000151d9c6d56e7406c8549c1fb0db87660df7b41ed1f5d49c5b7ad0b54f94af105e45e471f4f22580ad8e0335bfd14ac2f3a00697cff32f17dfa23a34c40c11aec70000000003bd1aa400000000000000709789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183b3bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c4bd46cf4159214d7aa8188aaf3226f6188abee6972c7547a19c176103e664d1bb60b3ff69e6e6e3b18b6c6f7328695603106201108625b375d316f6679709b90000000000000001000000000000000379387b1b3e02326650a57db53b9d3725424d9083918f8a1b93114264a8425bbe23f37abdec7e4a6d904ed65117a28305146b402c1bdc4b9aef516ee8f6a3b115000000000000004054281265d7a6be35c1ce1dbe1e126371411aadf42e5a9e7f91bc5fa51a7840377bf6db553d458e20175a6be77fafc0b573e1cb63cefb09f98ab7c2c853737dbe", - "receiptsRoot": "0xf02742f24b0a58947769acd6c3856f1acb7ce8e253d272bac3d6dcc62876c592", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000765e8a4aeb421067a827a68a6caa77513697216332a98586aa492893bcf07681c54afac1437762de479561bef1ec8896e981af42546bb1111cedfc53c791095700000000000000000000006a91c5a8000000000000000000000000000249f42b0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002600000000174588e800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000249f42b", - "digest": "0x9c62ea5bf52e07d3a702f560c75109d5d0ea3f9918d6b0b8823c2d376d001de9", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42b", - "digest": "0x6df8c5bed78b06cd055f5f71a67688e2325c03f642932e910dfbd738481d0f99", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "30844207000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002600000000174588e800000000000000000000000000000001000000006a91c531", - "digest": "0x3e4d08efccc0bd8265b99c497645efdf4225d99cc6a0d63d4741300a8fbfb62c", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101058", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100433", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42b", - "digest": "0x6df8c5bed78b06cd055f5f71a67688e2325c03f642932e910dfbd738481d0f99", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100205", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884261", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099733", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "124175", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "233", - "totalGas": "133807", - "transactionId": "0xc9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x54281265d7a6be35c1ce1dbe1e126371411aadf42e5a9e7f91bc5fa51a7840377bf6db553d458e20175a6be77fafc0b573e1cb63cefb09f98ab7c2c853737dbe" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf07", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1718325", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f002e", - "utxoId": "0xfd3373c3863c953bd51ea9cb45117eefa04d3e48587f2e59c615ff8bbdde34450000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50010", - "utxoId": "0xc9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x408a7f06bf1b468b57831b95e5c0e215a78b7f5e9cf060a60e8fe5c9d2d8d746", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x33959845ce59bf4ffe7f01780ab4c5f62db52c6796df4ee9aa340739ae063017", - "txPointer": "03bd1aa50009", - "utxoId": "0x5eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab09620370003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe0b662dc7fab2e1f6a1761f4861a4c846abba9fd561d9b8e2566f2b0d61175e5", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x81b59b09bfab1e0a962d1e1b835175a665c7038cdaf792697a3f68f6da41ecbb", - "txPointer": "03bd1aa50009", - "utxoId": "0x5eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab09620370002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1718078", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1db2d1d6f509767d7a6ceb859f402dcc8bee3d8838deb4c1cf71831a1895e1ac", - "inputIndex": "2", - "stateRoot": "0x31eb09bfdca0d7f3f9eba73118a2f0edb70384b10a34874352fd92897398e1dc" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfa425e5edee5d8d8ae6b12b4572ec795d420d9078eeed9c952366681aa3bb020", - "inputIndex": "3", - "stateRoot": "0xc59300d7e65e6b592e2245ef0cf13c06ec94e2e148cc57f5d9e7fdcbe921e145" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480821be061ba0fa9b0551e42f65673c6fb4fd3f593044b2bd7957e26c3c567b48400000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000376263de23a260f6c0aef1e09bddcb23beb8eca50bc93312323080e1de2eefa4d6aca15f10f00fd2fa90c62068f174f66f027a1d2fabe89f46463dbf45e6d10c00000000000000000000006a91c5a800000000000000000000000000023a364b00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000b21ebecf00dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d9cf34000000b21ebecf00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa80000000000000000fd3373c3863c953bd51ea9cb45117eefa04d3e48587f2e59c615ff8bbdde34450000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3835f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000001c9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a40000000000000001b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab09620370000000000000003408a7f06bf1b468b57831b95e5c0e215a78b7f5e9cf060a60e8fe5c9d2d8d74633959845ce59bf4ffe7f01780ab4c5f62db52c6796df4ee9aa340739ae0630170000000003bd1aa50000000000000009ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000015eeb84b6ceb0c03ac7a06bf7acc213397b0f519598d8eb60ad14ff4ab09620370000000000000002e0b662dc7fab2e1f6a1761f4861a4c846abba9fd561d9b8e2566f2b0d61175e581b59b09bfab1e0a962d1e1b835175a665c7038cdaf792697a3f68f6da41ecbb0000000003bd1aa500000000000000090a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a373ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000021db2d1d6f509767d7a6ceb859f402dcc8bee3d8838deb4c1cf71831a1895e1ac31eb09bfdca0d7f3f9eba73118a2f0edb70384b10a34874352fd92897398e1dc00000000000000010000000000000003fa425e5edee5d8d8ae6b12b4572ec795d420d9078eeed9c952366681aa3bb020c59300d7e65e6b592e2245ef0cf13c06ec94e2e148cc57f5d9e7fdcbe921e14500000000000000402cc923f9b6d846f72e2d84310cfb344fdf9575c6b355d30ad1dae012b7c446c4d32874f4fcca7b4d8d34ac6a896413db102e1f1bd64e033d5cc8c777cace4f59", - "receiptsRoot": "0x821be061ba0fa9b0551e42f65673c6fb4fd3f593044b2bd7957e26c3c567b484", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000376263de23a260f6c0aef1e09bddcb23beb8eca50bc93312323080e1de2eefa4d6aca15f10f00fd2fa90c62068f174f66f027a1d2fabe89f46463dbf45e6d10c00000000000000000000006a91c5a800000000000000000000000000023a364b00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000b21ebecf00dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d9cf34000000b21ebecf000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023a364b", - "digest": "0xd7eafaa649af04966bc87330055168a6b008399e37c5eb39f8db0ea5f9777397", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000023a364b", - "digest": "0xd72e21db1f98018dc00c9fddff86a8809479c1837cd55e2968ab7da21d1690bb", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000023a364b", - "digest": "0xd72e21db1f98018dc00c9fddff86a8809479c1837cd55e2968ab7da21d1690bb", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "765020000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000210000000009d9cf34000000000000000100000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000010000000000000001000000b21ebecf000000000009d9cf34000000006a91c531", - "digest": "0xa739ccaa3ff5f45515aaf41d91b10fd0b64349ed84c26f85e8c83b75daa48379", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000210000000009d9cf3400000000000000010000000000000001", - "digest": "0x9b1e1cce03c7846bdef43e97a5f1ce74f52326245f2dddf1d98c5aac6f1a1b94", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099334", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132159", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141780", - "transactionId": "0xb58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf07" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x2cc923f9b6d846f72e2d84310cfb344fdf9575c6b355d30ad1dae012b7c446c4d32874f4fcca7b4d8d34ac6a896413db102e1f1bd64e033d5cc8c777cace4f59" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e1", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1722444", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f002d", - "utxoId": "0x5f12759a07a1657ff4cc30c2820a8a2c85b99a37462c1190e325b8f8197fd6b30000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50011", - "utxoId": "0xb58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf070001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a88992444", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x561b8e6218dd7e8c1442c326e2331d9c75f351213b23f8619d29a5161b60b012", - "txPointer": "03bd1aa50011", - "utxoId": "0xb58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf070002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a8508", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x9938e35202c5c1d4c081e59c14e34fb80c6ee636a3d926a293285cbf93af1ae4", - "txPointer": "03bd1aa50011", - "utxoId": "0xb58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf070003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1722195", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbec0ffbdc7eece60a215fadff6abf7b39821f19350494ed0c0caa3aac6319eda", - "inputIndex": "2", - "stateRoot": "0x8cf6a246e405758a1f92ce1342232d35341be5e2f85f6210bd3d101d11905b5f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfefd0b656a32bd1e51e1ef23550a34fceb47e48f6ba481ff62c5982bdadbaffa", - "inputIndex": "3", - "stateRoot": "0x92fc3527486594de5e6e77ca086e368aa3236e55470653ac2a9baf994cab4977" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480c0ce5719fb5ef5b16aec8cad9ed578a895249a9e6ba3c23852647363e909a59200000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e1947f1fd3cb944430310d00f7dda64974fb8f316d8087cde7ac6aed3defdcce6bd51cd39342cbf30ffc1b1507f339263f44b9c62416ee16cb6d8ce31d9a84b900000000000000000000006a91c5a800000000000000000000000000023a364c00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000014ff0a427b6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d749e40000007f2b75ff80000000000000000100000000000000000000006400000000000210ac0000000003bd1aa800000000000000005f12759a07a1657ff4cc30c2820a8a2c85b99a37462c1190e325b8f8197fd6b30000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a484cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002d00000000000000000000000000000000000000000000000000000000000000000000000000000001b58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf070000000000000001b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001b58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf070000000000000002ba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a88992444561b8e6218dd7e8c1442c326e2331d9c75f351213b23f8619d29a5161b60b0120000000003bd1aa50000000000000011ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001b58ed2cd7e68a3d1342a21d2e1ce9b7f1db583b1283ea4a00ab31a001fc9bf0700000000000000038e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a85089938e35202c5c1d4c081e59c14e34fb80c6ee636a3d926a293285cbf93af1ae40000000003bd1aa500000000000000110a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4753f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002bec0ffbdc7eece60a215fadff6abf7b39821f19350494ed0c0caa3aac6319eda8cf6a246e405758a1f92ce1342232d35341be5e2f85f6210bd3d101d11905b5f00000000000000010000000000000003fefd0b656a32bd1e51e1ef23550a34fceb47e48f6ba481ff62c5982bdadbaffa92fc3527486594de5e6e77ca086e368aa3236e55470653ac2a9baf994cab49770000000000000040dee91535646a36256b443b4ad0dca23c90c0e1668a949e66824a67bd725bae7d5e9c9abb63f386e6c57fd9949b2ed7de95e2d082037fce62394690e1d0b57cfd", - "receiptsRoot": "0xc0ce5719fb5ef5b16aec8cad9ed578a895249a9e6ba3c23852647363e909a592", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e1947f1fd3cb944430310d00f7dda64974fb8f316d8087cde7ac6aed3defdcce6bd51cd39342cbf30ffc1b1507f339263f44b9c62416ee16cb6d8ce31d9a84b900000000000000000000006a91c5a800000000000000000000000000023a364c00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000014ff0a427b6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d749e40000007f2b75ff800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023a364c", - "digest": "0x6ce66e0236fca0547d5d2f923fad7df66c09b75bf426972c512c1d5acd221144", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000023a364c", - "digest": "0xe3255834620a79ffd601ef7b8d723928dd526c1e00e6e8fb97fbc4d4ed260b43", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a800000000000000000000000000023a364c", - "digest": "0xe3255834620a79ffd601ef7b8d723928dd526c1e00e6e8fb97fbc4d4ed260b43", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "90178208379", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000270000000009d749e4000000000000000000000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da000000000000000000000000000000010000007f2b75ff800000000009d749e4000000006a91c531", - "digest": "0xc774d619485d749486cc4fe58417e59354309b65979c8e614ad382d8ea5698cb", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000270000000009d749e400000000000000000000000000000001", - "digest": "0x77fbd86376de272734e0f02a7fc8dcb037a33075c9e305b6d2e654ea37e3a5b4", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099142", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133314", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "142935", - "transactionId": "0xe943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e1" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xdee91535646a36256b443b4ad0dca23c90c0e1668a949e66824a67bd725bae7d5e9c9abb63f386e6c57fd9949b2ed7de95e2d082037fce62394690e1d0b57cfd" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa02", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1731863", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0031", - "utxoId": "0x10b307dee7b5e25b82f4620d01d291d954ed63d4c8437b9789442e5af293f4b00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x96f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6f", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0x3054cd5acdb97a90a6bacb0fddcb1661e6bc7a3a26f56d9d9c1453ee82212837", - "txPointer": "03bd1aa50004", - "utxoId": "0x31f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c30001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50012", - "utxoId": "0xe943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e10001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x779667159329579bc0f49cc5670326499cf734665ea748207606143c95c5e4b9", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x5b2795d09f2c0c05184443e0c60907d96d5c6f9d6c6d423713ca27ead20ecf94", - "txPointer": "03bd1aa50004", - "utxoId": "0x31f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c30003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1731615", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x63e38174ac8ecdc8e3e96efc117be5455560018655f9ed0531f6d7d63553704b", - "inputIndex": "1", - "stateRoot": "0x20a2147f07f472f3d150ac7d863bad4d6a0fffc3141f7e566a0b02ecaa5eac01" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1a3792a5be30b609c296a71878c37f8afcb34c59e549c9f0c270bf59b55f3e82", - "inputIndex": "3", - "stateRoot": "0x15f2867ef87930c496b093e98cb82469f2f771e94b0cb3d643819a4192ae26e8" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b404870b72141952219f5939a436097c84eee30cf73f514efc1640a8f52132033790000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008c226baadee2bdf206841b685b438e33ffffa0fff0db8b60f0973076507b6fd39abe51a7cffbee59b9266def5835f6c1b636d8df05fbf2588d7ae6b68623e03d00000000000000000000006a91c5a8000000000000000000000000000a759e7700000000000000025a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000044800000238edbcd680000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aa9000000000000000010b307dee7b5e25b82f4620d01d291d954ed63d4c8437b9789442e5af293f4b00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6d17f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000310000000000000000000000000000000000000000000000000000000000000000000000000000000131f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c3000000000000000196f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6f3054cd5acdb97a90a6bacb0fddcb1661e6bc7a3a26f56d9d9c1453ee822128370000000003bd1aa500000000000000045a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000001e943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e10000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000131f4adea7d0495c9b044180ae3f5b54eb86782ca5c0e2facbb373732e5fe77c30000000000000003779667159329579bc0f49cc5670326499cf734665ea748207606143c95c5e4b95b2795d09f2c0c05184443e0c60907d96d5c6f9d6c6d423713ca27ead20ecf940000000003bd1aa500000000000000049423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6c1ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000163e38174ac8ecdc8e3e96efc117be5455560018655f9ed0531f6d7d63553704b20a2147f07f472f3d150ac7d863bad4d6a0fffc3141f7e566a0b02ecaa5eac010000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000031a3792a5be30b609c296a71878c37f8afcb34c59e549c9f0c270bf59b55f3e8215f2867ef87930c496b093e98cb82469f2f771e94b0cb3d643819a4192ae26e8000000000000004035b54e90f4c06cc7f2d1aa87ded4115e5fef16c4806bd52294f193ac2ef8628abdee59d8c15c4e41a38cc87209882230c29be064b029eaa4b14e113e722ed15f", - "receiptsRoot": "0x4870b72141952219f5939a436097c84eee30cf73f514efc1640a8f5213203379", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008c226baadee2bdf206841b685b438e33ffffa0fff0db8b60f0973076507b6fd39abe51a7cffbee59b9266def5835f6c1b636d8df05fbf2588d7ae6b68623e03d00000000000000000000006a91c5a8000000000000000000000000000a759e7700000000000000025a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000044800000238edbcd680000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e77", - "digest": "0xce3c3cbcc2df40c3b51148640fa4de2ebc71fc6ec7f336b5584ae8fa731c24cc", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e77", - "digest": "0xfda2cd5d609c6ce4f61aef75849bb591390c2cc965be084a319ab63c37b4da9c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964602", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "7000000000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306400", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409688", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000044800000238edbcd68000000000000000010000000000000003000000006a91c531", - "digest": "0x39e8eda97c769d3de8701377bcc45009ebd8503ffe77824f6e01fdc8239b75f9", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306400", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404036", - "ptr": "67100018", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381204", - "ptr": "67099393", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e77", - "digest": "0xfda2cd5d609c6ce4f61aef75849bb591390c2cc965be084a319ab63c37b4da9c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67099165", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4876810", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463936", - "ptr": "67098245", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376932", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132472", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "248", - "totalGas": "142104", - "transactionId": "0x5721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa02" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x35b54e90f4c06cc7f2d1aa87ded4115e5fef16c4806bd52294f193ac2ef8628abdee59d8c15c4e41a38cc87209882230c29be064b029eaa4b14e113e722ed15f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1725333", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f002f", - "utxoId": "0xd0d39cf1705c0180c4ef91e9fad066e376bf1a11b00cd67ae1884a1a7a2b32540000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe0a7aa65836a3f6cca4159681c0c68eb7b10660e774ac6ffe0ce364cd97b185a", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x5d8daf671061d4f90243ac53d764dc691c6b168743de01f64afbb90306d9115b", - "txPointer": "03bd1aa5000e", - "utxoId": "0x7049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad70700001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50013", - "utxoId": "0x5721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa020002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8e701d8913c78b99010bfd5a39f9d7bc4225d61df497660ff1bd09d390a7c91f", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x929e31475668b7d5521c2a24f3676c99590649bdac44ef9ce064208c52908e30", - "txPointer": "03bd1aa5000e", - "utxoId": "0x7049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad70700002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1725093", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x015ac8c5813a09770e6c8e755e69357e7703be47b42d241e642b60c9bbbd9fe6", - "inputIndex": "1", - "stateRoot": "0x95cf2cc8d03c5cafc94ce03898139d99ee5a71d258ac8f81ba8c54cf74838f6c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1d4be1664f19ce372f58a2e3c119ee449ad649391cd264b0526861a98c00607d", - "inputIndex": "3", - "stateRoot": "0x533f005fb03023342c58f29110ca2ae43588c89040e1695ca7296c02b9f17c36" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480665bb4fba1c84c6bcd1cb33622a7719e02dc44c5bac01b41264ece3bb00584b700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f7d9b68c4936a443051c4e72273af4c6d4bd53a787f2eee472586957e84225801e94f618dfe33cc44644dbb1df8320125e0e2fda1aee01591668caffe9a040db00000000000000000000006a91c5a8000000000000000000000000000251cf3a00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000000c81e019786c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000001089e283000000002d1375900000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000d0d39cf1705c0180c4ef91e9fad066e376bf1a11b00cd67ae1884a1a7a2b32540000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a5395f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000002f000000000000000000000000000000000000000000000000000000000000000000000000000000017049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad70700000000000000001e0a7aa65836a3f6cca4159681c0c68eb7b10660e774ac6ffe0ce364cd97b185a5d8daf671061d4f90243ac53d764dc691c6b168743de01f64afbb90306d9115b0000000003bd1aa5000000000000000e4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000015721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa020000000000000002ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000017049e9a8605c4790c5aa90c5bb5d71cb542a6b8a9fe90a97d2310d4a48ad707000000000000000028e701d8913c78b99010bfd5a39f9d7bc4225d61df497660ff1bd09d390a7c91f929e31475668b7d5521c2a24f3676c99590649bdac44ef9ce064208c52908e300000000003bd1aa5000000000000000eb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a52a5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001015ac8c5813a09770e6c8e755e69357e7703be47b42d241e642b60c9bbbd9fe695cf2cc8d03c5cafc94ce03898139d99ee5a71d258ac8f81ba8c54cf74838f6c0000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000031d4be1664f19ce372f58a2e3c119ee449ad649391cd264b0526861a98c00607d533f005fb03023342c58f29110ca2ae43588c89040e1695ca7296c02b9f17c360000000000000040174457f840e19c1a4fad5b30cda6b9c8a455783015dfc96b5869839c23ab82f0820c86c7d329c306963be43d2bb29a7e93a25144a7d0f13708e303499dc6abbf", - "receiptsRoot": "0x665bb4fba1c84c6bcd1cb33622a7719e02dc44c5bac01b41264ece3bb00584b7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f7d9b68c4936a443051c4e72273af4c6d4bd53a787f2eee472586957e84225801e94f618dfe33cc44644dbb1df8320125e0e2fda1aee01591668caffe9a040db00000000000000000000006a91c5a8000000000000000000000000000251cf3a00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000000c81e019786c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000001089e283000000002d13759000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000251cf3a", - "digest": "0x5ef1e05fc5fa9124f97674118a4e52998f19b85a09e6b595d62e6d3d79b7cb2c", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf3a", - "digest": "0xe24fdb43d88c90e01834ab809f2e48fd31b6b5b02211587a66248101cd2a65b2", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf3a", - "digest": "0xe24fdb43d88c90e01834ab809f2e48fd31b6b5b02211587a66248101cd2a65b2", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "53718555000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002000000001089e2830000000000000000000000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000000000000000000000100000002d137590000000001089e2830000000006a91c531", - "digest": "0xba5445011f14d5c261c032822722ede578ac7d3b14c66f8f8195d2488b6e9a50", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002000000001089e283000000000000000000000000000000001", - "digest": "0x0603521857253ed2767b5f9106b38561dd448c62f26732caaf8439ff105e64bf", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099734", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128227", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "240", - "totalGas": "137848", - "transactionId": "0x6cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x174457f840e19c1a4fad5b30cda6b9c8a455783015dfc96b5869839c23ab82f0820c86c7d329c306963be43d2bb29a7e93a25144a7d0f13708e303499dc6abbf" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1723915", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0030", - "utxoId": "0x1809b909e52c34230c7854e2f5de779e448a05f66ccbf9659db3204ee6e1e9760000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50014", - "utxoId": "0x6cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1d4be1664f19ce372f58a2e3c119ee449ad649391cd264b0526861a98c00607d", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0xac9bc993fe6f0c74521fa3953043b728993dd8669effe90c01092920397dbc3e", - "txPointer": "03bd1aa50014", - "utxoId": "0x6cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x015ac8c5813a09770e6c8e755e69357e7703be47b42d241e642b60c9bbbd9fe6", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xdc4fb4695a1367ba6b3fee267ee828d5a55246e996cb0c7ed61237efce808eae", - "txPointer": "03bd1aa50014", - "utxoId": "0x6cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1723677", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa4eb98aa21bf82b738d55acd04969e65d061a8bf9e39db477c2490a44ab63729", - "inputIndex": "2", - "stateRoot": "0xbb93a41b93f0cffa4572ac471a95cc88401d6b92345a3ff98e2f21064a7eb09a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8281b4cde4c8db10d9c84b425b9f4786d321ae907dd430cefa3fd3d96202c53d", - "inputIndex": "3", - "stateRoot": "0x263d8c35678a8d9175177fa4c8e08673cf517a0939c6bbd3f563079cfc6f3ffc" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480736188613c799aea193c9c8dd47b645c487fbac9ad64475f74bc5da0aad829510000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000000b1771e69debcb42c9d4ea0f7b3ca4d779a1173b75ea9a736e196dba80902beeaee826deed79c72ed3c523e17994e279dff3e8ab7b9c28d4fd08949b7a751ee00000000000000000000006a91c5a8000000000000000000000000000251cf3b00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001200000001089faed0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aa900000000000000001809b909e52c34230c7854e2f5de779e448a05f66ccbf9659db3204ee6e1e9760000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4e0bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000016cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f00000000000000031d4be1664f19ce372f58a2e3c119ee449ad649391cd264b0526861a98c00607dac9bc993fe6f0c74521fa3953043b728993dd8669effe90c01092920397dbc3e0000000003bd1aa50000000000000014b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000016cef0a35944aae6a6ac6b45e8c6c2545736508adbf6027d45a48e93ba6bbc68f0000000000000001015ac8c5813a09770e6c8e755e69357e7703be47b42d241e642b60c9bbbd9fe6dc4fb4695a1367ba6b3fee267ee828d5a55246e996cb0c7ed61237efce808eae0000000003bd1aa500000000000000144added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4d1df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002a4eb98aa21bf82b738d55acd04969e65d061a8bf9e39db477c2490a44ab63729bb93a41b93f0cffa4572ac471a95cc88401d6b92345a3ff98e2f21064a7eb09a000000000000000100000000000000038281b4cde4c8db10d9c84b425b9f4786d321ae907dd430cefa3fd3d96202c53d263d8c35678a8d9175177fa4c8e08673cf517a0939c6bbd3f563079cfc6f3ffc000000000000004082145a9aa0e7d0d3a354621bbd7decb53c03f80e0741c1e3f3a1a5aa46d649fd7f6e5069db482221e191505134d8e22ae1c73bbff7ca68f4d5d0341da7e4832f", - "receiptsRoot": "0x736188613c799aea193c9c8dd47b645c487fbac9ad64475f74bc5da0aad82951", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000000b1771e69debcb42c9d4ea0f7b3ca4d779a1173b75ea9a736e196dba80902beeaee826deed79c72ed3c523e17994e279dff3e8ab7b9c28d4fd08949b7a751ee00000000000000000000006a91c5a8000000000000000000000000000251cf3b00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001200000001089faed0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000251cf3b", - "digest": "0xdbccb314f20a3fd3f3cac636475bcbc53e5e604bbbb97e7652c19785acd9ef59", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf3b", - "digest": "0x0d49ca4cc6a2b2277515e9c36f940c7b6ff38d387438a217dad946dd03b9b100", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "102378329000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001200000001089faed000000000000000000000000000000001000000006a91c531", - "digest": "0xc1aa0d12d0ecc709a0d0a4262345a5eb5f3b433becb093a6336961133a025ffb", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100770", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100145", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a8000000000000000000000000000251cf3b", - "digest": "0x0d49ca4cc6a2b2277515e9c36f940c7b6ff38d387438a217dad946dd03b9b100", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099917", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881563", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099445", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126873", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136505", - "transactionId": "0xc37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x82145a9aa0e7d0d3a354621bbd7decb53c03f80e0741c1e3f3a1a5aa46d649fd7f6e5069db482221e191505134d8e22ae1c73bbff7ca68f4d5d0341da7e4832f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xabcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f7315370", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1729401", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0032", - "utxoId": "0xa7da254374a65eaa642a7773aac02e330e14c00899ebf1728d91cbeb0813ae8b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50015", - "utxoId": "0xc37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2fff2ee1c168858c497c1a5ca448bb84ccb6742fe72632bff9e7a57e58c3ea74", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x44a3f83c2f399a4a3871d81f56df5f9d98f4e2846bdc2e36794f92702a02099d", - "txPointer": "03bd1aa50010", - "utxoId": "0xc9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x78d9786885b0ff238f524ce51f632eb5c74b44f1e52ae6a230d673eb3f2c7451", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x0e87c667894f64e65291ce2f56d4b173de7ca8b7d8e1fe47a16c093314d6f535", - "txPointer": "03bd1aa50010", - "utxoId": "0xc9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a40002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1729164", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa80c0a2a6cb121dc4a0db6c6445438f07e5d4e91640dfbca3a1af53900757337", - "inputIndex": "2", - "stateRoot": "0x95c5106160379e474f19056138119451a253a9483edc1d9f8a6c20d7fe47192f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x66d9bbfe5085b665c583d09c25cb0ef571ec26212d05b98a6b7db629df066a6c", - "inputIndex": "3", - "stateRoot": "0xa033694162c329f6fac01f2e0934f2ef7833cef843fb254b9e55e3a289c31bc5" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f33b54370513e24e027a59c052f904275e565661351282d35b74995cba4630e900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000087490b73910438c2e52111bf73ee37f6e770543d5da01634902c59045e265e5d1ec5fe2c96f97ec830004076034d5df2c2a4f236780caa9bfd7b7f3c765082f400000000000000000000006a91c5a8000000000000000000000000000249f42c0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000000479e638400ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174882a0000000479e638400000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000a7da254374a65eaa642a7773aac02e330e14c00899ebf1728d91cbeb0813ae8b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6379f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003200000000000000000000000000000000000000000000000000000000000000000000000000000001c37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b00000000000000013c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001c9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a400000000000000032fff2ee1c168858c497c1a5ca448bb84ccb6742fe72632bff9e7a57e58c3ea7444a3f83c2f399a4a3871d81f56df5f9d98f4e2846bdc2e36794f92702a02099d0000000003bd1aa500000000000000109789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001c9aff23a2afd113ff75c25b4c5d3d159f3a908f333f110de9ded17eb9b54d0a4000000000000000278d9786885b0ff238f524ce51f632eb5c74b44f1e52ae6a230d673eb3f2c74510e87c667894f64e65291ce2f56d4b173de7ca8b7d8e1fe47a16c093314d6f5350000000003bd1aa50000000000000010295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a628cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002a80c0a2a6cb121dc4a0db6c6445438f07e5d4e91640dfbca3a1af5390075733795c5106160379e474f19056138119451a253a9483edc1d9f8a6c20d7fe47192f0000000000000001000000000000000366d9bbfe5085b665c583d09c25cb0ef571ec26212d05b98a6b7db629df066a6ca033694162c329f6fac01f2e0934f2ef7833cef843fb254b9e55e3a289c31bc5000000000000004033ff3e0a409ec790e41868f9bf3c587c1b9e3659be91deb4ccc74d2584d91a8f0862a19c9522a4ec0c0c11149ee972e41535193ed97bfc45f2cea874bd6a348a", - "receiptsRoot": "0xf33b54370513e24e027a59c052f904275e565661351282d35b74995cba4630e9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000087490b73910438c2e52111bf73ee37f6e770543d5da01634902c59045e265e5d1ec5fe2c96f97ec830004076034d5df2c2a4f236780caa9bfd7b7f3c765082f400000000000000000000006a91c5a8000000000000000000000000000249f42c0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000000479e638400ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174882a0000000479e6384000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000249f42c", - "digest": "0x277c40bc0f7b310f85cf818c573cfeebedb500586aee52fa6ad304d66325f3a4", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42c", - "digest": "0xa2c9baafafcc493b0927b765ed1f5530037775f7b2bd84ab136aadbb60061f10", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42c", - "digest": "0xa2c9baafafcc493b0927b765ed1f5530037775f7b2bd84ab136aadbb60061f10", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "307600000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001900000000174882a00000000000000001000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000010000000000000001000000479e63840000000000174882a0000000006a91c531", - "digest": "0x305d6568dc8f7efaf2f3a43c5f7d5ffa6212d053297426c4b004772641e88751", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001900000000174882a000000000000000010000000000000001", - "digest": "0x6f66e7452d26d042d6268969dcc2434ce742b92cd4f76e017871d8e528e17ac7", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126631", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136252", - "transactionId": "0xabcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f7315370" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x33ff3e0a409ec790e41868f9bf3c587c1b9e3659be91deb4ccc74d2584d91a8f0862a19c9522a4ec0c0c11149ee972e41535193ed97bfc45f2cea874bd6a348a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xeb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1584996", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0033", - "utxoId": "0xd13b21792bfd94a521b5bf1a192277ad2306fc6e89f8183f18afdfa5869171a60000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x68e2f861d33b5ff542b160a7e88a6a19fb6a16a16890bc8d99aa4d51c9f25ecb", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x7b36428a1c88ff38465364877cac0444b3747f9f838192391fdaf26210daaf0d", - "txPointer": "03bd1aa40076", - "utxoId": "0xbb91dbefd214539d9e4f06261c7a8e02855ee5c9b3c3c74dcc631924051a862b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3619e22311c9e219a4c8583eb7f11f80576e379284dd30a2b9f6480c462a1920", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x6d364d96e8612eb8433b3b98e1628d9c5444f0d095e736c2d7225c63fe9006c6", - "txPointer": "03bd1aa40076", - "utxoId": "0xbb91dbefd214539d9e4f06261c7a8e02855ee5c9b3c3c74dcc631924051a862b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50016", - "utxoId": "0xabcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f73153700001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1584760", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb4f4c1d6be9e79522c8499a788ac4c22422953c8d5fc306d221f50522345e4da", - "inputIndex": "1", - "stateRoot": "0xde02d8cdcf288578abfc9cc585a6b4221cdc1e590a9cf7fd1e2215567fa712a0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcb256bf7674f057f0e8df2af819d14d467b97b0cafe54382b497af1ca65b5945", - "inputIndex": "2", - "stateRoot": "0xed2cc6fb5ecaab58e16292786c8ac1eabdeae61119ed4cf83095579847c6bae0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480920fe0cf833fa19a49db26a3b16e14e922cdfa521e98f208ee2e3ed6585522720000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000013bfcb8e4f2cd48d495049acf132b44349fc50a13d834fccdb14a4451652a6d77b783de21ae1c85d9a58e8889748153295b2fbd9e177c0997294ef8829f3b53b00000000000000000000006a91c5a800000000000000000000000000024e034c0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000009600000002acbc0da000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa90000000000000000d13b21792bfd94a521b5bf1a192277ad2306fc6e89f8183f18afdfa5869171a60000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000182f64f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003300000000000000000000000000000000000000000000000000000000000000000000000000000001bb91dbefd214539d9e4f06261c7a8e02855ee5c9b3c3c74dcc631924051a862b000000000000000268e2f861d33b5ff542b160a7e88a6a19fb6a16a16890bc8d99aa4d51c9f25ecb7b36428a1c88ff38465364877cac0444b3747f9f838192391fdaf26210daaf0d0000000003bd1aa40000000000000076f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001bb91dbefd214539d9e4f06261c7a8e02855ee5c9b3c3c74dcc631924051a862b00000000000000033619e22311c9e219a4c8583eb7f11f80576e379284dd30a2b9f6480c462a19206d364d96e8612eb8433b3b98e1628d9c5444f0d095e736c2d7225c63fe9006c60000000003bd1aa40000000000000076c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001abcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f73153700000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000182e78f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001b4f4c1d6be9e79522c8499a788ac4c22422953c8d5fc306d221f50522345e4dade02d8cdcf288578abfc9cc585a6b4221cdc1e590a9cf7fd1e2215567fa712a000000000000000010000000000000002cb256bf7674f057f0e8df2af819d14d467b97b0cafe54382b497af1ca65b5945ed2cc6fb5ecaab58e16292786c8ac1eabdeae61119ed4cf83095579847c6bae000000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040928f8d19ebe1bca493948fce775712b0ef484687edc9ec37ed55ca12be8a5baac4bd418521afc5f9c5220fa201c1e54874bf4876cbab28da81ffd8ac1553907f", - "receiptsRoot": "0x920fe0cf833fa19a49db26a3b16e14e922cdfa521e98f208ee2e3ed658552272", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000013bfcb8e4f2cd48d495049acf132b44349fc50a13d834fccdb14a4451652a6d77b783de21ae1c85d9a58e8889748153295b2fbd9e177c0997294ef8829f3b53b00000000000000000000006a91c5a800000000000000000000000000024e034c0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000009600000002acbc0da000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e034c", - "digest": "0x052c86041e4a0c767b9e5019ead2345b44b9c55db62bce0726a6ea10f61de215", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034c", - "digest": "0x95c6dd06d71b495a65ead2934ed9a13825fcc5ec846c9533f7484c935b7ab7dc", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "114419882400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009600000002acbc0da000000000000000000000000000000001000000006a91c531", - "digest": "0x2fd8bc6a0cac64be3486494819d53407577fea7baf79bfe1b55e90325653b2aa", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100898", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100273", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034c", - "digest": "0x95c6dd06d71b495a65ead2934ed9a13825fcc5ec846c9533f7484c935b7ab7dc", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100045", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882555", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099573", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125881", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135513", - "transactionId": "0xeb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x928f8d19ebe1bca493948fce775712b0ef484687edc9ec37ed55ca12be8a5baac4bd418521afc5f9c5220fa201c1e54874bf4876cbab28da81ffd8ac1553907f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e066", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154385", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0036", - "utxoId": "0xadd9fb03c20dd15c06a72c96ce18fd6e87e29ecfd8b9ab128af764ac3e7cfc0c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc4bd46cf4159214d7aa8188aaf3226f6188abee6972c7547a19c176103e664d1", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x675a24e217aed05a40f1853ee7d8179eb2679bc16973f35d06620492e50fc1ce", - "txPointer": "03bd1aa50016", - "utxoId": "0xabcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f73153700003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x79387b1b3e02326650a57db53b9d3725424d9083918f8a1b93114264a8425bbe", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x5123681f02d36aa0e81f051d23f688a31f0571fe8991109c1b4bae9400a84272", - "txPointer": "03bd1aa50016", - "utxoId": "0xabcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f73153700002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50017", - "utxoId": "0xeb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154158", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa63d514cd8014214978b8a6bb6864561dc9a96db67f6376e0ba9ff2fede67495", - "inputIndex": "1", - "stateRoot": "0x09fc1ff582a7061d40827e88b05b7dba85a1ddf506dde15c5c1e94cbd659e510" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1ef2b3bf6c2bc84ae22e37e144c44beffa9f3a4eb3796b560207b773b90c358f", - "inputIndex": "2", - "stateRoot": "0x92096c32b9f60508c4d3b9b8eeb0ab3fd29266f187a88d34dfa4e54a3ea7db91" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480cbd055b6bf5b390314bb3e2b27332c56a096d511d48d197b2ee55c0f9cb37fc70000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e08e95b25f9a1567eb606edbd42ae9405ab122ada0e61080e58149248d129ed5a160e50acf242b1cc21ea801feb4b8428c07e0040277dab7077975cd08ca4a2a00000000000000000000006a91c5a8000000000000000000000000000249f42e0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000026000000001744024800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000add9fb03c20dd15c06a72c96ce18fd6e87e29ecfd8b9ab128af764ac3e7cfc0c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025b11f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003600000000000000000000000000000000000000000000000000000000000000000000000000000001abcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f73153700000000000000003c4bd46cf4159214d7aa8188aaf3226f6188abee6972c7547a19c176103e664d1675a24e217aed05a40f1853ee7d8179eb2679bc16973f35d06620492e50fc1ce0000000003bd1aa50000000000000016295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000001abcdde06ee875a43efbdb4abc6dffc3bd3c97326e99de781ac825489f7315370000000000000000279387b1b3e02326650a57db53b9d3725424d9083918f8a1b93114264a8425bbe5123681f02d36aa0e81f051d23f688a31f0571fe8991109c1b4bae9400a842720000000003bd1aa500000000000000169789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001eb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025a2ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001a63d514cd8014214978b8a6bb6864561dc9a96db67f6376e0ba9ff2fede6749509fc1ff582a7061d40827e88b05b7dba85a1ddf506dde15c5c1e94cbd659e510000000000000000100000000000000021ef2b3bf6c2bc84ae22e37e144c44beffa9f3a4eb3796b560207b773b90c358f92096c32b9f60508c4d3b9b8eeb0ab3fd29266f187a88d34dfa4e54a3ea7db9100000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c78866d66203e873ef2abab1dc66dcc3b6c55bb1200697772f5708854fab16dfbeb9b6af5b60df0d0ee5909beb7ef2896725cd8b28afaf19b9e6f31cda04b6f3", - "receiptsRoot": "0xcbd055b6bf5b390314bb3e2b27332c56a096d511d48d197b2ee55c0f9cb37fc7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e08e95b25f9a1567eb606edbd42ae9405ab122ada0e61080e58149248d129ed5a160e50acf242b1cc21ea801feb4b8428c07e0040277dab7077975cd08ca4a2a00000000000000000000006a91c5a8000000000000000000000000000249f42e0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000026000000001744024800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000249f42e", - "digest": "0xdcdcaae7ea6babc51ae928f5a4c9290e85c678b4e3b11543782c6efc78d35a57", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42e", - "digest": "0x55f5cba1ab7282f571453c68b174652fd86548d97334f300285c2c02aa021604", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "195751999500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000026000000001744024800000000000000000000000000000001000000006a91c531", - "digest": "0x4745d6393dae8cc82dd2ed9c2884db54ec8a580439528aca0f88be98bfd1a1ab", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101362", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100737", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42e", - "digest": "0x55f5cba1ab7282f571453c68b174652fd86548d97334f300285c2c02aa021604", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100509", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1887950", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120486", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "227", - "totalGas": "130118", - "transactionId": "0x2f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e066" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc78866d66203e873ef2abab1dc66dcc3b6c55bb1200697772f5708854fab16dfbeb9b6af5b60df0d0ee5909beb7ef2896725cd8b28afaf19b9e6f31cda04b6f3" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x70064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc388416", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1588421", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0034", - "utxoId": "0x5b71f03abc276cdabda8068d37d98af21a055a3192ce5c3981ffbf3421422b830000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f4c1d6be9e79522c8499a788ac4c22422953c8d5fc306d221f50522345e4da", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x1d802a0ff114ddceffc0ca247f6585fb169e40e68f3fe98ff03ab91d824cd93b", - "txPointer": "03bd1aa50017", - "utxoId": "0xeb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcb256bf7674f057f0e8df2af819d14d467b97b0cafe54382b497af1ca65b5945", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x5e5a731a5fa8dd93b92fdb231c6802be43ad041d56c6cd05b7de4a4b867b3ecf", - "txPointer": "03bd1aa50017", - "utxoId": "0xeb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50018", - "utxoId": "0x2f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e0660003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1588191", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1448681e559c4cb377f17d90da0d019818df20107569b4cd4c5546314d57118a", - "inputIndex": "1", - "stateRoot": "0x06c82450d0a582e6ada70d9d666a8c182194dbf1a55a77bf29921218fd792f9a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x144eb72dd7c994678de10984b4a56af47dd5b6245cf27b5999b65646d5886c97", - "inputIndex": "2", - "stateRoot": "0x58e0b4627d4a33476d25aaa2dbbdb28ae1bc6f655389f9382cb0c29814f4fc40" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848039171f61fb49fe254f6884680d862214c694f0f3b272ddee24d47f376c1ddd4b0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005708f10d86f48e673b8ae17a6b2b8742656f32d92971fce58b5959918554df4435b534d9ff42f11800965c540a16bda2d9e8e7b2ec66a3e8a81df97c8dc7b2a800000000000000000000006a91c5a800000000000000000000000000024e034d0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000008700000002aca8acb000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa900000000000000005b71f03abc276cdabda8068d37d98af21a055a3192ce5c3981ffbf3421422b830000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183cc5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003400000000000000000000000000000000000000000000000000000000000000000000000000000001eb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f0000000000000001b4f4c1d6be9e79522c8499a788ac4c22422953c8d5fc306d221f50522345e4da1d802a0ff114ddceffc0ca247f6585fb169e40e68f3fe98ff03ab91d824cd93b0000000003bd1aa50000000000000017f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001eb2be3cf67ab6e39dbde488b01fe4388c664c9ff82fdf3eb228c4c0cf05ba34f0000000000000002cb256bf7674f057f0e8df2af819d14d467b97b0cafe54382b497af1ca65b59455e5a731a5fa8dd93b92fdb231c6802be43ad041d56c6cd05b7de4a4b867b3ecf0000000003bd1aa50000000000000017c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000012f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e0660000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183bdff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000011448681e559c4cb377f17d90da0d019818df20107569b4cd4c5546314d57118a06c82450d0a582e6ada70d9d666a8c182194dbf1a55a77bf29921218fd792f9a00000000000000010000000000000002144eb72dd7c994678de10984b4a56af47dd5b6245cf27b5999b65646d5886c9758e0b4627d4a33476d25aaa2dbbdb28ae1bc6f655389f9382cb0c29814f4fc400000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004065f7c36190976409d5b5f43ffe283f977dc346a5f596616e7fd384ceefeeded2065106c614e33005a3ce50076eb960b10cf92ca0c1067068bd92c87d324941ce", - "receiptsRoot": "0x39171f61fb49fe254f6884680d862214c694f0f3b272ddee24d47f376c1ddd4b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005708f10d86f48e673b8ae17a6b2b8742656f32d92971fce58b5959918554df4435b534d9ff42f11800965c540a16bda2d9e8e7b2ec66a3e8a81df97c8dc7b2a800000000000000000000006a91c5a800000000000000000000000000024e034d0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000008700000002aca8acb000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e034d", - "digest": "0xf9d7d7bbd9a69f589d12c8873df5708e30619c87899ac20031d9775f98185e42", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034d", - "digest": "0x98675a40da683f068e91d45d12c2a432860e979f6eb9043e38d6dbbca784836b", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "602705574900", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000008700000002aca8acb000000000000000000000000000000001000000006a91c531", - "digest": "0x97eb2a43f9fa88abee09464c639d245b69d439f788f291e7a74ad469614ab566", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101202", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100577", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034d", - "digest": "0x98675a40da683f068e91d45d12c2a432860e979f6eb9043e38d6dbbca784836b", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100349", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886231", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099877", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "122205", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "230", - "totalGas": "131837", - "transactionId": "0x70064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc388416" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x65f7c36190976409d5b5f43ffe283f977dc346a5f596616e7fd384ceefeeded2065106c614e33005a3ce50076eb960b10cf92ca0c1067068bd92c87d324941ce" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e3", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587908", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0037", - "utxoId": "0x00264d35c5aaa29f24756630ef4c3107e4858cb0b0d4fa65f63722ec794821970000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50019", - "utxoId": "0x70064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc3884160003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1ef2b3bf6c2bc84ae22e37e144c44beffa9f3a4eb3796b560207b773b90c358f", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x5e7d4635f5be893a7ecbf113cbf2e9396894bdef5e14720eee7166886b4a9c24", - "txPointer": "03bd1aa50018", - "utxoId": "0x2f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e0660002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa63d514cd8014214978b8a6bb6864561dc9a96db67f6376e0ba9ff2fede67495", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x3e006d9212ae08d5956e765a86ea4eb6d0bbc93d802791971b880ea85c079f02", - "txPointer": "03bd1aa50018", - "utxoId": "0x2f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e0660001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1587681", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd192f7f546ead1f6d033e29cd6cdfc535a9f57a77ced402113a351d2ada029c2", - "inputIndex": "2", - "stateRoot": "0xd8e9b6675adb0dbe534f94a20633fa54e35af32ece71afc225a4f0bc32b1c0b5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xee105bc76a2597c3934e19c50acd5138bde519d28db90142489ce28af637654e", - "inputIndex": "3", - "stateRoot": "0xcac32364b75db888a286dc33c4f9003217236e77d493e05f767ac4684aad747b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806db1ea2a4ca9558eb9facb6c3f16ac9a97a508a6bc60defc74ee7a8bcdeacda50000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f191adf1c946d80f224e4618af02830139caab30865f77b1fdfb22112ad77b7465bd15774c942ed51187998d5d5ddc81e2873d9febb8dbbaf17c1d6bbf5a40ff00000000000000000000006a91c5a8000000000000000000000000000249f42f0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000170000000017414af800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa9000000000000000000264d35c5aaa29f24756630ef4c3107e4858cb0b0d4fa65f63722ec794821970000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183ac4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000370000000000000000000000000000000000000000000000000000000000000000000000000000000170064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc3884160000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000012f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e06600000000000000021ef2b3bf6c2bc84ae22e37e144c44beffa9f3a4eb3796b560207b773b90c358f5e7d4635f5be893a7ecbf113cbf2e9396894bdef5e14720eee7166886b4a9c240000000003bd1aa500000000000000189789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000012f26b5717c172cd948aeec66e45c780dd600508fffc62bd3f3e652ba8b28e0660000000000000001a63d514cd8014214978b8a6bb6864561dc9a96db67f6376e0ba9ff2fede674953e006d9212ae08d5956e765a86ea4eb6d0bbc93d802791971b880ea85c079f020000000003bd1aa50000000000000018295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001839e1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002d192f7f546ead1f6d033e29cd6cdfc535a9f57a77ced402113a351d2ada029c2d8e9b6675adb0dbe534f94a20633fa54e35af32ece71afc225a4f0bc32b1c0b500000000000000010000000000000003ee105bc76a2597c3934e19c50acd5138bde519d28db90142489ce28af637654ecac32364b75db888a286dc33c4f9003217236e77d493e05f767ac4684aad747b00000000000000408c8aa825c406bdc45cfa95f27cd69945cf64f417fd4a380408aaaacbf2e466b797150c285760f017fcc7065335163cd32ced24e5aa05d2f90c5f1e6f7c89115a", - "receiptsRoot": "0x6db1ea2a4ca9558eb9facb6c3f16ac9a97a508a6bc60defc74ee7a8bcdeacda5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f191adf1c946d80f224e4618af02830139caab30865f77b1fdfb22112ad77b7465bd15774c942ed51187998d5d5ddc81e2873d9febb8dbbaf17c1d6bbf5a40ff00000000000000000000006a91c5a8000000000000000000000000000249f42f0000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000170000000017414af800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000249f42f", - "digest": "0x10b1f25da09223ac89dbb0148bb06e430a949ea753a996f1dfd60716c194ac03", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42f", - "digest": "0xef410281f8f4bf54ecb09b544211fd04630279c26baa54061707f19c76b63150", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "1387313149000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000170000000017414af800000000000000000000000000000001000000006a91c531", - "digest": "0x0005cc02c9c5f9a5fb6fd21989d452bcb78e18b0d6328923e5c72efabe1a2bd2", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101514", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100889", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42f", - "digest": "0xef410281f8f4bf54ecb09b544211fd04630279c26baa54061707f19c76b63150", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100661", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1887909", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100189", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120527", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "227", - "totalGas": "130159", - "transactionId": "0x423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e3" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x8c8aa825c406bdc45cfa95f27cd69945cf64f417fd4a380408aaaacbf2e466b797150c285760f017fcc7065335163cd32ced24e5aa05d2f90c5f1e6f7c89115a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xeb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa4960563", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1721315", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0039", - "utxoId": "0x570b33c3f321288b5792c3b821bf6ef6bbad0057ff4e691fbf483e036103466d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5001a", - "utxoId": "0x423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e30001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x246d200966cb1f8479f2d2e30a49ec717834b57a315a6a467df5b32c684c899f", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xdf95fa1c951372703e1857153804caea2bf4f70a83ee9f146db25a068e0ffa91", - "txPointer": "03bd1aa50019", - "utxoId": "0x70064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc3884160002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfe583abea1a2b1a87de628ff732805a5b6abfce1e7e3b5f978108177c1cd1340", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x7e68ced7e289d6c2e27f92fb077c301902448d9a3dba24bedaf8fed3079cf877", - "txPointer": "03bd1aa50019", - "utxoId": "0x70064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc3884160001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1721088", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x66568ab094049761296777bba0df4bd35332f95f062707a8716381f3a10b5228", - "inputIndex": "2", - "stateRoot": "0x5b9e79d5c17be42eee820836505086d54132aec9521b671affd6e01a169f2cb6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xac5b1a5d8b210897d697485cce9b01fd515bbd2cf5a5a389bb182bb85b8c2c40", - "inputIndex": "3", - "stateRoot": "0x51a3a22653b99369471d19c38fab5cf93e8ff78f9749d4e57b8ce5f41a630982" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84800b2fb3da356e7ec7f6333c852b21fad368fc83e95c625ce67c72c3463364ca190000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000fab2a320d3e645c104ada9b856b20734cfe7b128f4bd96b33aa319ebafd6d779f5e8d518879752c5f546ae671d99a1b4026763423e89ed7cc5200c6a9a39305400000000000000000000006a91c5a800000000000000000000000000024e034e0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002d00000002ad324f1000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa90000000000000000570b33c3f321288b5792c3b821bf6ef6bbad0057ff4e691fbf483e036103466d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a43e3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003900000000000000000000000000000000000000000000000000000000000000000000000000000001423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e30000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000170064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc3884160000000000000002246d200966cb1f8479f2d2e30a49ec717834b57a315a6a467df5b32c684c899fdf95fa1c951372703e1857153804caea2bf4f70a83ee9f146db25a068e0ffa910000000003bd1aa50000000000000019c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000170064d6259db83cf44b6c56d9dd7692fb76abf354b7362bb96f2c9b8bc3884160000000000000001fe583abea1a2b1a87de628ff732805a5b6abfce1e7e3b5f978108177c1cd13407e68ced7e289d6c2e27f92fb077c301902448d9a3dba24bedaf8fed3079cf8770000000003bd1aa50000000000000019f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4300f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000266568ab094049761296777bba0df4bd35332f95f062707a8716381f3a10b52285b9e79d5c17be42eee820836505086d54132aec9521b671affd6e01a169f2cb600000000000000010000000000000003ac5b1a5d8b210897d697485cce9b01fd515bbd2cf5a5a389bb182bb85b8c2c4051a3a22653b99369471d19c38fab5cf93e8ff78f9749d4e57b8ce5f41a630982000000000000004043b5e26588aa0d99a4c66c17eef4bfda463ca17b0df40839a812641dacd239ff6d71e6a054fd8770082345f6d8dca26b369ba7f2aff1e07f4b2cd5e879e4b97d", - "receiptsRoot": "0x0b2fb3da356e7ec7f6333c852b21fad368fc83e95c625ce67c72c3463364ca19", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000fab2a320d3e645c104ada9b856b20734cfe7b128f4bd96b33aa319ebafd6d779f5e8d518879752c5f546ae671d99a1b4026763423e89ed7cc5200c6a9a39305400000000000000000000006a91c5a800000000000000000000000000024e034e0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002d00000002ad324f1000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e034e", - "digest": "0x5045674b98e4c4bbd9e83172074ce3c536f21e463b1b424526d14a7a4504eed8", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034e", - "digest": "0xa80c3ed290d042929e8b18464d728ab8da00a8566e2be1845ee6845bff881250", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "18580000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002d00000002ad324f1000000000000000010000000000000001000000006a91c531", - "digest": "0xcd53aa7cfb086248aafee7fdf50a2315598bd37adb65dca70e579700429f5d01", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101266", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100641", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034e", - "digest": "0xa80c3ed290d042929e8b18464d728ab8da00a8566e2be1845ee6845bff881250", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100413", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1887905", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099941", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120531", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "227", - "totalGas": "130163", - "transactionId": "0xeb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa4960563" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x43b5e26588aa0d99a4c66c17eef4bfda463ca17b0df40839a812641dacd239ff6d71e6a054fd8770082345f6d8dca26b369ba7f2aff1e07f4b2cd5e879e4b97d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1734325", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0035", - "utxoId": "0xc21382c268bd1afa0a8054a2ee80fd30a760ad48b2870e24f7b64036af7e43d50000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xee105bc76a2597c3934e19c50acd5138bde519d28db90142489ce28af637654e", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x841c35919be1e9edd23ac0d4802229298fbb77fdd21177b83d577cf0a2601433", - "txPointer": "03bd1aa5001a", - "utxoId": "0x423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e30003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd192f7f546ead1f6d033e29cd6cdfc535a9f57a77ced402113a351d2ada029c2", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x607fb56297c2628a99519682284511889e6b3f5fab213981cc8ba5ef3cfe2277", - "txPointer": "03bd1aa5001a", - "utxoId": "0x423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e30002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5001b", - "utxoId": "0xeb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa49605630001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1733971", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc181e4c73c2463b93dfc2abbb00e22b960cf820c7ba2452f3f072d8487e86f59", - "inputIndex": "1", - "stateRoot": "0x5e873bee457bcccac79f10bf671bbdc5d5bb47449beb83cc541c5bf215e4e9d8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb94cf57f819df7fcd27901c3e7235c38496fccd5127d64d697dafd70d0dcbf35", - "inputIndex": "2", - "stateRoot": "0xa5b2a8c11c0c151f6f11e7874adbbe0b55c9ae077f3d4551db6386d070b3f6d3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848009aa308b96ec4531c66cffee198e54aadedae3d7feaac3a441fe3cc0f216078f000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002a205a8db9f13721bc4cb915b70a17ad717be3d8689e3eb4ac3c36b2ebbf299c9b3deb2a2647d77287b990f43ac1dfeb89fd33549d7ecc186bdcd24984296bae00000000000000000000006a91c5a8000000000000000000000000000249f42d0000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002b000000001741f2f000000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000139bdd763906c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000001741f2f0000003240eae26000000000000000001000000000000006400000000000210ac0000000003bd1aa90000000000000000c21382c268bd1afa0a8054a2ee80fd30a760ad48b2870e24f7b64036af7e43d50000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a76b5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003500000000000000000000000000000000000000000000000000000000000000000000000000000001423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e30000000000000003ee105bc76a2597c3934e19c50acd5138bde519d28db90142489ce28af637654e841c35919be1e9edd23ac0d4802229298fbb77fdd21177b83d577cf0a26014330000000003bd1aa5000000000000001a295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000001423d9d25503f381d39cac2496192c4bec42422dce272495344f618198308a6e30000000000000002d192f7f546ead1f6d033e29cd6cdfc535a9f57a77ced402113a351d2ada029c2607fb56297c2628a99519682284511889e6b3f5fab213981cc8ba5ef3cfe22770000000003bd1aa5000000000000001a9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001eb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa496056300000000000000013c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a7553f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001c181e4c73c2463b93dfc2abbb00e22b960cf820c7ba2452f3f072d8487e86f595e873bee457bcccac79f10bf671bbdc5d5bb47449beb83cc541c5bf215e4e9d800000000000000010000000000000002b94cf57f819df7fcd27901c3e7235c38496fccd5127d64d697dafd70d0dcbf35a5b2a8c11c0c151f6f11e7874adbbe0b55c9ae077f3d4551db6386d070b3f6d30000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004036009ee103a324bbd10f2d6b3613dd17ef9390e27ecb4794a8bbeb274ea301874c0d500a29872d0b8acf9d5b778c8a7edb83d1392d373f87b75f1e6fe2b5f174", - "receiptsRoot": "0x09aa308b96ec4531c66cffee198e54aadedae3d7feaac3a441fe3cc0f216078f", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002a205a8db9f13721bc4cb915b70a17ad717be3d8689e3eb4ac3c36b2ebbf299c9b3deb2a2647d77287b990f43ac1dfeb89fd33549d7ecc186bdcd24984296bae00000000000000000000006a91c5a8000000000000000000000000000249f42d0000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002b000000001741f2f000000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000139bdd763906c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000001741f2f0000003240eae26000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000249f42d", - "digest": "0x4722669fc90438092ee3c33aeeaa15158abab09a8b0ca6a1472ce4667447b9d1", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42d", - "digest": "0x299c3c13b93c46272fea11628a6c39ba74d4a84505c350ddf58b38426edd2c32", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "1387466048400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002b000000001741f2f000000000000000000000000000000001000000006a91c531", - "digest": "0xbe8c42be57d510e711a7e4c77b3c0cf3fb95c5631e61c47c2f793d43d98855d8", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67101162", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100537", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42d", - "digest": "0x299c3c13b93c46272fea11628a6c39ba74d4a84505c350ddf58b38426edd2c32", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100309", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886565", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099837", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f42d", - "digest": "0x299c3c13b93c46272fea11628a6c39ba74d4a84505c350ddf58b38426edd2c32", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099609", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1347509773200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875160", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000000001741f2f00000000000000000000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000001000003240eae2600000000001741f2f0000000006a91c531", - "digest": "0x7b4388a8a31f88098b91dd5d4fb9f57e2d76a36ae83ca781ea35835ba1b8d690", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67098217", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000000001741f2f000000000000000000000000000000001", - "digest": "0x5de7bfcf17252b0c55169fe713aefcfae521df542a9bceb5b205b876049313b9", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67094249", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "193284", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "354", - "totalGas": "203112", - "transactionId": "0xea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x36009ee103a324bbd10f2d6b3613dd17ef9390e27ecb4794a8bbeb274ea301874c0d500a29872d0b8acf9d5b778c8a7edb83d1392d373f87b75f1e6fe2b5f174" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x78e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1586924", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0038", - "utxoId": "0x1680449dc6917d0f23f0f85260386ee93b148de77cb8fdac3a91dca21653f3530000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5001c", - "utxoId": "0xea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa80c0a2a6cb121dc4a0db6c6445438f07e5d4e91640dfbca3a1af53900757337", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x3ae57ae310ecef2a289ee48acff618bf875f8ff762d4d6a7a06e1955ab71a372", - "txPointer": "03bd1aa5001c", - "utxoId": "0xea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x66d9bbfe5085b665c583d09c25cb0ef571ec26212d05b98a6b7db629df066a6c", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x66d6b66178e8a236ebfb939a7200d390f304639b66b880af3c3889bf9311e783", - "txPointer": "03bd1aa5001c", - "utxoId": "0xea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1586597", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0c8119f3982f2d5b7f854bba07d4f14400658b706e0554b740a4eaba4d9e2b99", - "inputIndex": "2", - "stateRoot": "0xc63cd0ca604cd8b3f9683ece6970cfe82f4b8ba2e1e0a202b7959766140c2b88" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8b3be84881fcc5ff1661df3689c9f3d3fc6dc038c5aada6e74c59c70b60b3641", - "inputIndex": "3", - "stateRoot": "0x2bf637054c9b764257a2602fab47f4c8f20a0f04cc6643b5405457b0a1494343" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ab92e099334d13ddf0570c9449b3726aad2995344bcf8fba1536636f9cb270b2000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000180606485dfde1b42055321567b01e1c6bd20167a6bfa5ae88ea9a7932ea2ebe81188d09bff666a28b6604a48ca605ce045f2b3f514ad4adbcd5ba4896bdafb200000000000000000000006a91c5a8000000000000000000000000000249f4300000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002300000000174e761000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f726465720000093f89d49500ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174f39600000093f89d495000000000000000001000000000000006400000000000210ac0000000003bd1aa900000000000000001680449dc6917d0f23f0f85260386ee93b148de77cb8fdac3a91dca21653f3530000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001836ecf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003800000000000000000000000000000000000000000000000000000000000000000000000000000001ea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e00000000000000033c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e0000000000000002a80c0a2a6cb121dc4a0db6c6445438f07e5d4e91640dfbca3a1af539007573373ae57ae310ecef2a289ee48acff618bf875f8ff762d4d6a7a06e1955ab71a3720000000003bd1aa5000000000000001c9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001ea4bcf2ae56438596bd7f62b3e66faf1d42fe38f1092cd346e0daf1c2662ec8e000000000000000166d9bbfe5085b665c583d09c25cb0ef571ec26212d05b98a6b7db629df066a6c66d6b66178e8a236ebfb939a7200d390f304639b66b880af3c3889bf9311e7830000000003bd1aa5000000000000001c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001835a5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000020c8119f3982f2d5b7f854bba07d4f14400658b706e0554b740a4eaba4d9e2b99c63cd0ca604cd8b3f9683ece6970cfe82f4b8ba2e1e0a202b7959766140c2b88000000000000000100000000000000038b3be84881fcc5ff1661df3689c9f3d3fc6dc038c5aada6e74c59c70b60b36412bf637054c9b764257a2602fab47f4c8f20a0f04cc6643b5405457b0a1494343000000000000004033cd52c0e75258fef391f2bf13751e22129c7c22852eb3fe23ec6f9a33f4d074a9b9d27667d99f3cabc5b9eb6016fb38a20bdad03ff0180f7b79083c8dc42db9", - "receiptsRoot": "0xab92e099334d13ddf0570c9449b3726aad2995344bcf8fba1536636f9cb270b2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000180606485dfde1b42055321567b01e1c6bd20167a6bfa5ae88ea9a7932ea2ebe81188d09bff666a28b6604a48ca605ce045f2b3f514ad4adbcd5ba4896bdafb200000000000000000000006a91c5a8000000000000000000000000000249f4300000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002300000000174e761000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f726465720000093f89d49500ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174f39600000093f89d495000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000249f430", - "digest": "0xecfa746585cd9b7986a4c98e7fdab4c63ace5d445a7f00b41f542a534f139984", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f430", - "digest": "0x3bebcb1ebb27c820a29d7feb7b7a9d9b582492f3b8a9147df892de46afe6bbbd", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "2439600000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002300000000174e761000000000000000010000000000000001000000006a91c531", - "digest": "0x27ccc74d3f88f709684dfc1efc85d521b3a0333ac65abda64c870a91bce9958f", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67101282", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100657", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f430", - "digest": "0x3bebcb1ebb27c820a29d7feb7b7a9d9b582492f3b8a9147df892de46afe6bbbd", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100429", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886551", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099957", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a8000000000000000000000000000249f430", - "digest": "0x3bebcb1ebb27c820a29d7feb7b7a9d9b582492f3b8a9147df892de46afe6bbbd", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099729", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "10168500000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875146", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004300000000174f39600000000000000001000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d000000000000000100000000000000010000093f89d4950000000000174f3960000000006a91c531", - "digest": "0xaa719dac7b5c4e2a91275372743806b93a39cdfb255554c1125b77af348933a3", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67098337", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004300000000174f396000000000000000010000000000000001", - "digest": "0x4b50ac8360d8ce34ce474ab2accedd57001439d2ab76000bf303d60336edfb25", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67096241", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "178121", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "327", - "totalGas": "187949", - "transactionId": "0x78e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x33cd52c0e75258fef391f2bf13751e22129c7c22852eb3fe23ec6f9a33f4d074a9b9d27667d99f3cabc5b9eb6016fb38a20bdad03ff0180f7b79083c8dc42db9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "164378", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f003a", - "utxoId": "0xe519aaa1ac92ba06a96dd60bc0c298d279d04a15036e01d3fa28f19f3def9ed90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5001d", - "utxoId": "0x78e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee50001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1448681e559c4cb377f17d90da0d019818df20107569b4cd4c5546314d57118a", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x2178fd338e98ba0ef8bfd5178e0a2a0793e85e25f8aca02a7dbede992200bf81", - "txPointer": "03bd1aa5001b", - "utxoId": "0xeb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa49605630003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x144eb72dd7c994678de10984b4a56af47dd5b6245cf27b5999b65646d5886c97", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xbbb6487180997ed6066ce0d10db8a1d4c02ab2d8277e0c3886f9ff72d7edb8d5", - "txPointer": "03bd1aa5001b", - "utxoId": "0xeb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa49605630002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "164150", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x74f498c63a30c149c5d0ea6a13ae002257110d79b27f8e5778d887782be9b1f2", - "inputIndex": "2", - "stateRoot": "0x3fe0f04e211b20e9b3ca76a7110cd473291f3abd5870f1e191061211c2a05b53" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xad9abbb0c930359b450a531bdb3044e83765a993f4e1513350e682ef9a17256f", - "inputIndex": "3", - "stateRoot": "0xe3ed01d7ed8bebe5e5f34366d4ad427fbc9dfba54cbb9e4cacc35197f2cc4cbc" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805c8302b653db819b617338ecc31c74c5862329a9c6798969e05b5a10e47aeba60000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b3a2398d6d580b14b887c8ec94e896e44a960959742d38394050e0dc258f51a25cf1b0d98fcf34425d2dba31d5c212ef16a2381e4eac857138169fa6d31cbdb800000000000000000000006a91c5a800000000000000000000000000024e034f0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005a00000002ac747d5000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e519aaa1ac92ba06a96dd60bc0c298d279d04a15036e01d3fa28f19f3def9ed90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002821af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000178e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee50000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001eb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa496056300000000000000031448681e559c4cb377f17d90da0d019818df20107569b4cd4c5546314d57118a2178fd338e98ba0ef8bfd5178e0a2a0793e85e25f8aca02a7dbede992200bf810000000003bd1aa5000000000000001bf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001eb5b2f8a4d15bbb70848a0e62d67fc0615c0cc5cc3d77b6c091e6c7fa49605630000000000000002144eb72dd7c994678de10984b4a56af47dd5b6245cf27b5999b65646d5886c97bbb6487180997ed6066ce0d10db8a1d4c02ab2d8277e0c3886f9ff72d7edb8d50000000003bd1aa5000000000000001bc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028136f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000274f498c63a30c149c5d0ea6a13ae002257110d79b27f8e5778d887782be9b1f23fe0f04e211b20e9b3ca76a7110cd473291f3abd5870f1e191061211c2a05b5300000000000000010000000000000003ad9abbb0c930359b450a531bdb3044e83765a993f4e1513350e682ef9a17256fe3ed01d7ed8bebe5e5f34366d4ad427fbc9dfba54cbb9e4cacc35197f2cc4cbc000000000000004013a0f1fc56615d4ca0b92a4b701f54d01870822ecfe6a9712cd9fdf525ec85a9f18e872193be7485863de2ab0a8268b830fd0e6b97c3c215b01c6bc69fdd2124", - "receiptsRoot": "0x5c8302b653db819b617338ecc31c74c5862329a9c6798969e05b5a10e47aeba6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b3a2398d6d580b14b887c8ec94e896e44a960959742d38394050e0dc258f51a25cf1b0d98fcf34425d2dba31d5c212ef16a2381e4eac857138169fa6d31cbdb800000000000000000000006a91c5a800000000000000000000000000024e034f0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005a00000002ac747d5000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e034f", - "digest": "0x98c052ea8c34f77891d70f414fdb603c962d6a6aa523f1e978dc0eb50daac47e", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034f", - "digest": "0x62e14ec1ba0fbbdc17ce4609909747f6317c8ccf29f5a46b5da2407b69c3a99b", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "1918162080000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005a00000002ac747d5000000000000000000000000000000001000000006a91c531", - "digest": "0x93902763a447e174b79493e203e53de35f25c812cab05afa993af256b015e12f", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101266", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100641", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e034f", - "digest": "0x62e14ec1ba0fbbdc17ce4609909747f6317c8ccf29f5a46b5da2407b69c3a99b", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100413", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886998", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099941", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "121438", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "228", - "totalGas": "131070", - "transactionId": "0xb726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x13a0f1fc56615d4ca0b92a4b701f54d01870822ecfe6a9712cd9fdf525ec85a9f18e872193be7485863de2ab0a8268b830fd0e6b97c3c215b01c6bc69fdd2124" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xdec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2010464", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f003b", - "utxoId": "0x7b3d3efba52f7eb2388c804f5c77636426733306c73abd047591da348081d4430000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5001e", - "utxoId": "0xb726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6317e1124e238ce2d02c140b8d1108d08f6411f9f42bb6da999040baff25fd8c", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0xf1c9de89070e71b282ca57a24fc8789cff2f032e6898cc1d0d1c6b718d495105", - "txPointer": "03bd1aa40079", - "utxoId": "0xfbf126e28e116345db94943370ee99176892d2d9a8ec5a5f112118c9719bcea30001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x07ad7d83a2c550402322042a1fc0addada6c8b36f3230b2c6c9e598609e4121c", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x56d1b5c6519eb0ea85c4da12f4c33eee7f6c9a34c17fa97c7f40724db88bb25d", - "txPointer": "03bd1aa50013", - "utxoId": "0x5721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa020003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2010209", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x904fa8dcf117bb891a75bf91232fc71f7729528026faec067062821ecc5de4ac", - "inputIndex": "2", - "stateRoot": "0x405057eecf20243b91a12f810c5202207b9d7a572471b51033cb68eeb31751c6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2bbc02940554a287cf3be01d3f68d019238535953949ce027b68f92281d43ef5", - "inputIndex": "3", - "stateRoot": "0xf02bdc99f7ad0a7fb6c4db51e5a56884f7fce9e1757ef34136ea4dc6d7099d4d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40559d674f0e44160acffc457e0eef1dfd6707feef9df95bba1596a5f3dad53c2200000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000048d1a28e8adcb136dc40f311af4d2c4b3e998072819121472a4ba2f4548eee958be03864755d4e85e2adf1d1e98df5998a3d0c6ae6fe7066af99afbebed8a38300000000000000000000006a91c5a8000000000000000000000000000a759e780000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000001bc348ffd86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e1a46a0f000000000000175890000000000000000300000000000000000000006400000000000210ac0000000003bd1aa900000000000000007b3d3efba52f7eb2388c804f5c77636426733306c73abd047591da348081d4430000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001ead60f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003b00000000000000000000000000000000000000000000000000000000000000000000000000000001b726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc00000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001fbf126e28e116345db94943370ee99176892d2d9a8ec5a5f112118c9719bcea300000000000000016317e1124e238ce2d02c140b8d1108d08f6411f9f42bb6da999040baff25fd8cf1c9de89070e71b282ca57a24fc8789cff2f032e6898cc1d0d1c6b718d4951050000000003bd1aa40000000000000079132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000015721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa02000000000000000307ad7d83a2c550402322042a1fc0addada6c8b36f3230b2c6c9e598609e4121c56d1b5c6519eb0ea85c4da12f4c33eee7f6c9a34c17fa97c7f40724db88bb25d0000000003bd1aa500000000000000139423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001eac61f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002904fa8dcf117bb891a75bf91232fc71f7729528026faec067062821ecc5de4ac405057eecf20243b91a12f810c5202207b9d7a572471b51033cb68eeb31751c6000000000000000100000000000000032bbc02940554a287cf3be01d3f68d019238535953949ce027b68f92281d43ef5f02bdc99f7ad0a7fb6c4db51e5a56884f7fce9e1757ef34136ea4dc6d7099d4d0000000000000040a7afbfa7cf2be55b38ce64fb558b507c23c19924300a1d87a3b37e6df82c6aeae5412458332ca99795705918cc6af47e573de4b0723093d0b517d4fb33047b90", - "receiptsRoot": "0x559d674f0e44160acffc457e0eef1dfd6707feef9df95bba1596a5f3dad53c22", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000048d1a28e8adcb136dc40f311af4d2c4b3e998072819121472a4ba2f4548eee958be03864755d4e85e2adf1d1e98df5998a3d0c6ae6fe7066af99afbebed8a38300000000000000000000006a91c5a8000000000000000000000000000a759e780000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000001bc348ffd86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e1a46a0f0000000000001758900000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e78", - "digest": "0xcc450aebd673a93a55ebf09dfeab6d3c625bb29189f1743bf5910a47a7806f43", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147416", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e78", - "digest": "0xb1247fe6032262e5a3a44189f3450bcba32f440a048cc2acebebcea516e84663", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376924", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e78", - "digest": "0xb1247fe6032262e5a3a44189f3450bcba32f440a048cc2acebebcea516e84663", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67104910", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "119240458200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4951652", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e000046e1a46a0f000000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000000000000000000030000000000175890000046e1a46a0f00000000006a91c531", - "digest": "0x560f4f7cc8f87f7bd551536683f032581bd119c6ae728f68e4ec0d439f1d803a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434660", - "ptr": "67103070", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e000046e1a46a0f0000000000000000000000000000000003", - "digest": "0x39f1d7171d26a84f528b49bc4a56686b9e9ddb42d26e05daeb4d490a78f3e1d9", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380892", - "ptr": "67098254", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57220", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "136904", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "255", - "totalGas": "146525", - "transactionId": "0xdec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa7afbfa7cf2be55b38ce64fb558b507c23c19924300a1d87a3b37e6df82c6aeae5412458332ca99795705918cc6af47e573de4b0723093d0b517d4fb33047b90" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x7749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1717113", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f003c", - "utxoId": "0x35cf2b14a7d7b6f3617673b22ce555bbd2cc4b91c7265efd629127ce14730f060000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5001f", - "utxoId": "0xdec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbc5aa0e0ffe2495aef12cf07dcdfe5b258e4a77d7b58316a1d8ef606513d26cc", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x9871b3ce098addb11df22202adc45285b9c97382a8780c9db6f64dd5dae64196", - "txPointer": "03bd1aa40074", - "utxoId": "0x880f11e28e19980383ae8fc733a0dbd33f738517184873f638100f7e5f3b77890003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0862749710055a86910c109a521f91b95b534569ec61d998228f5578d254a4e7", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x374be7cd65d7e169775340e6e81f342db3401c3f67f5b6b1a76570e73de1c01e", - "txPointer": "03bd1aa40074", - "utxoId": "0x880f11e28e19980383ae8fc733a0dbd33f738517184873f638100f7e5f3b77890002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1716876", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6559a09966e02457cef29735161c4707a5cccd78900895f3e215bb731fabd717", - "inputIndex": "2", - "stateRoot": "0xcdb2172706cb12be134283c3610c5e99b3b42e5396da22b54ce21e566dfeb5a4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcfe6c2d6544891d5ffa70a6f9c743090c917f72d9dd68c55c64bdcc96753ad3e", - "inputIndex": "3", - "stateRoot": "0xf726a98059d6bf83ba04ae5585c268e80dfdaae08551c5f2001c5d1aea6c566a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d69c755863a62de003bec2c1f8824dc0499f14c3d47b71391848b8066e41c8590000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b6827473f868e8e5a5b1ca94b9c52299b827d8aca0929fbdfbb16df2b1f5ed1aae59717e3f3f121f65ab72f2f01f33d2673d7f07a2c9ed004b4d3660d17e00c100000000000000000000006a91c5a800000000000000000000000000023dd5280000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002a00000000153f358000000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa9000000000000000035cf2b14a7d7b6f3617673b22ce555bbd2cc4b91c7265efd629127ce14730f060000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3379f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003c00000000000000000000000000000000000000000000000000000000000000000000000000000001dec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000001f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001880f11e28e19980383ae8fc733a0dbd33f738517184873f638100f7e5f3b77890000000000000003bc5aa0e0ffe2495aef12cf07dcdfe5b258e4a77d7b58316a1d8ef606513d26cc9871b3ce098addb11df22202adc45285b9c97382a8780c9db6f64dd5dae641960000000003bd1aa40000000000000074e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001880f11e28e19980383ae8fc733a0dbd33f738517184873f638100f7e5f3b778900000000000000020862749710055a86910c109a521f91b95b534569ec61d998228f5578d254a4e7374be7cd65d7e169775340e6e81f342db3401c3f67f5b6b1a76570e73de1c01e0000000003bd1aa40000000000000074ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a328cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000026559a09966e02457cef29735161c4707a5cccd78900895f3e215bb731fabd717cdb2172706cb12be134283c3610c5e99b3b42e5396da22b54ce21e566dfeb5a400000000000000010000000000000003cfe6c2d6544891d5ffa70a6f9c743090c917f72d9dd68c55c64bdcc96753ad3ef726a98059d6bf83ba04ae5585c268e80dfdaae08551c5f2001c5d1aea6c566a00000000000000409cf34543b8536a3743655a0c7ff31391e6f4f2c9f6b05a1fbaebe6341bcb905e62cf6e3d3d019f9e923447cc7ebe4b88f6be5989bd250c8d2f4f9027cc5120ba", - "receiptsRoot": "0xd69c755863a62de003bec2c1f8824dc0499f14c3d47b71391848b8066e41c859", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b6827473f868e8e5a5b1ca94b9c52299b827d8aca0929fbdfbb16df2b1f5ed1aae59717e3f3f121f65ab72f2f01f33d2673d7f07a2c9ed004b4d3660d17e00c100000000000000000000006a91c5a800000000000000000000000000023dd5280000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002a00000000153f358000000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd528", - "digest": "0x7028fd0714568ca52518d6e6ed349972e54e5dc85ee7e8d0df9759571dd1b91e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd528", - "digest": "0x82d8eaf44849ee02ad5070784f424eeb896a5cc9346bafbdb0283ec692174520", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "117347948800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a00000000153f358000000000000000000000000000000001000000006a91c531", - "digest": "0x49d7201bda1070103f947a63d242d16e16ae8dd63d9665e55f23572376a5d6e3", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100834", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100209", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd528", - "digest": "0x82d8eaf44849ee02ad5070784f424eeb896a5cc9346bafbdb0283ec692174520", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099981", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882331", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099509", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126105", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "135737", - "transactionId": "0x7749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9cf34543b8536a3743655a0c7ff31391e6f4f2c9f6b05a1fbaebe6341bcb905e62cf6e3d3d019f9e923447cc7ebe4b88f6be5989bd250c8d2f4f9027cc5120ba" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x49cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c831", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587220", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f003e", - "utxoId": "0xef769b7c0ed254e9208301687484eca09ba00b1eb7d99a40f43ac01ecaa83e800000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcfe6c2d6544891d5ffa70a6f9c743090c917f72d9dd68c55c64bdcc96753ad3e", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x410fe64f2e00887e3417e82e3c0de379c443227e898941c29d8b8c7f86db53a4", - "txPointer": "03bd1aa50020", - "utxoId": "0x7749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6559a09966e02457cef29735161c4707a5cccd78900895f3e215bb731fabd717", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x1df35b0ffb6d8f306e2c74adee62007e9bdfb81ba8a3fe9c8cb35d47a98f2416", - "txPointer": "03bd1aa50020", - "utxoId": "0x7749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50020", - "utxoId": "0x7749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1586997", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd384c8f879f9e2fa3e0688cb99953bba782e07951d7dece9f6e5b2def851f935", - "inputIndex": "1", - "stateRoot": "0x3165348861d2f553c40707db98ee22fb647f1b980539e9caf40ea3c5a7b1861a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3f8e49ed3284c4aecaff8782591fb647e5c43cb0d574d212772c4b60baadc6b2", - "inputIndex": "2", - "stateRoot": "0x71bdcb5dfb19120748226948f17611cd254196d8a5f8e25baac5d20cc62be00a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809b87997e6b016edee8b27e4283497f18b86312c9523f4b4d708da4e2d946756c0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000023594c7fdf76e27182fdc92db75e66d8aa9320c9600d91634a9345f9b76336f0c7f42b5107cc764d59ae2478d7e2447e629a1d6de35cf1b66cf05dd1e409d1b600000000000000000000006a91c5a800000000000000000000000000023dd52a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004b00000000153ca54000000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000ef769b7c0ed254e9208301687484eca09ba00b1eb7d99a40f43ac01ecaa83e800000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183814f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003e000000000000000000000000000000000000000000000000000000000000000000000000000000017749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b0000000000000003cfe6c2d6544891d5ffa70a6f9c743090c917f72d9dd68c55c64bdcc96753ad3e410fe64f2e00887e3417e82e3c0de379c443227e898941c29d8b8c7f86db53a40000000003bd1aa50000000000000020ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000017749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b00000000000000026559a09966e02457cef29735161c4707a5cccd78900895f3e215bb731fabd7171df35b0ffb6d8f306e2c74adee62007e9bdfb81ba8a3fe9c8cb35d47a98f24160000000003bd1aa50000000000000020e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000017749a213b589eecae8c48b3837bcdcee2c2383a276086aa42bd8c2c3feebed2b0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183735f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d384c8f879f9e2fa3e0688cb99953bba782e07951d7dece9f6e5b2def851f9353165348861d2f553c40707db98ee22fb647f1b980539e9caf40ea3c5a7b1861a000000000000000100000000000000023f8e49ed3284c4aecaff8782591fb647e5c43cb0d574d212772c4b60baadc6b271bdcb5dfb19120748226948f17611cd254196d8a5f8e25baac5d20cc62be00a0000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004092045785aa911cd3de62be33410ecf0ec17e9be0a579eac68b05333924167e719848b60cee1a9c35f597af49b0a01eaf0561bb2b7042ae224a8c52243373954d", - "receiptsRoot": "0x9b87997e6b016edee8b27e4283497f18b86312c9523f4b4d708da4e2d946756c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000023594c7fdf76e27182fdc92db75e66d8aa9320c9600d91634a9345f9b76336f0c7f42b5107cc764d59ae2478d7e2447e629a1d6de35cf1b66cf05dd1e409d1b600000000000000000000006a91c5a800000000000000000000000000023dd52a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004b00000000153ca54000000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd52a", - "digest": "0xd6626332be42d36b4f9a483172d121c7e36e5b7bbf5cf3f4862b2e624603e405", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52a", - "digest": "0xbc317b159594fc11910fed1f51b11e11521a77cd10729e82cee1b1b7a4388618", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "686796169600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004b00000000153ca54000000000000000000000000000000001000000006a91c531", - "digest": "0x7d5ec8cd411d3000a21fc3ce3320af499ca91623b899ad044969a1861b36ff3d", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101618", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100993", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52a", - "digest": "0xbc317b159594fc11910fed1f51b11e11521a77cd10729e82cee1b1b7a4388618", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100765", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1890142", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100293", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "118294", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "223", - "totalGas": "127926", - "transactionId": "0x49cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c831" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x92045785aa911cd3de62be33410ecf0ec17e9be0a579eac68b05333924167e719848b60cee1a9c35f597af49b0a01eaf0561bb2b7042ae224a8c52243373954d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x10d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1731755", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f003f", - "utxoId": "0x55537c1bca782dd32ef8c4fa2681404d0aa88000def49bfb181a0da0f34b5d560000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd384c8f879f9e2fa3e0688cb99953bba782e07951d7dece9f6e5b2def851f935", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x625c06bf74cba96ba7719dbc8570dc6b746ab38dfdd8dea4f57a34ada8ae7485", - "txPointer": "03bd1aa50021", - "utxoId": "0x49cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c8310001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50021", - "utxoId": "0x49cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c8310003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3f8e49ed3284c4aecaff8782591fb647e5c43cb0d574d212772c4b60baadc6b2", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x10bc71024c8b1f15f5a7183429de52487001ce612b117c811fc3bd0af2048f98", - "txPointer": "03bd1aa50021", - "utxoId": "0x49cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c8310002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1731522", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x53d5b94239b891286b685f12b792d253e1e8e9d403393b84abd025937f54e2a8", - "inputIndex": "1", - "stateRoot": "0x84ab0553c0ec45e29edb64199fefc642adeeea454603de9f22ec59ef97506f88" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0c3eb9c4b8f3eff7c7a0043adbb247de937a1e03f06dee7fafabb6bbde0af236", - "inputIndex": "3", - "stateRoot": "0x38c8be648681deead6e1786fe8dc2253124789ca0aaae80e8c05cc23c21a8c11" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806afbb44e3e9f0528c546dc3b1a001e4e7f2c823fc394c22608bcf90e86d165f30000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000af356f4e3dce559de78539d1baca278baaae8dab356bfc7dff5e56bf70ba6566671a863c177553645549e85478f66bb051008b76efb1e36799027e455832b33900000000000000000000006a91c5a800000000000000000000000000023dd52b0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002300000000153d6c7800000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa9000000000000000055537c1bca782dd32ef8c4fa2681404d0aa88000def49bfb181a0da0f34b5d560000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6cabf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003f0000000000000000000000000000000000000000000000000000000000000000000000000000000149cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c8310000000000000001d384c8f879f9e2fa3e0688cb99953bba782e07951d7dece9f6e5b2def851f935625c06bf74cba96ba7719dbc8570dc6b746ab38dfdd8dea4f57a34ada8ae74850000000003bd1aa50000000000000021ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241000000000000000149cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c8310000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000149cb30cb5b7bab48c4a5e4876e92c7863c589ebff47501aeb5e36ae04048c83100000000000000023f8e49ed3284c4aecaff8782591fb647e5c43cb0d574d212772c4b60baadc6b210bc71024c8b1f15f5a7183429de52487001ce612b117c811fc3bd0af2048f980000000003bd1aa50000000000000021e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6bc2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000153d5b94239b891286b685f12b792d253e1e8e9d403393b84abd025937f54e2a884ab0553c0ec45e29edb64199fefc642adeeea454603de9f22ec59ef97506f880000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000030c3eb9c4b8f3eff7c7a0043adbb247de937a1e03f06dee7fafabb6bbde0af23638c8be648681deead6e1786fe8dc2253124789ca0aaae80e8c05cc23c21a8c11000000000000004073a15741f12a16a9fe897c9e614876b402056f766cfdeea3e28565b9851813074d900193cb64d2fdbe9c993c99b76d8c3f819f4b2104ed2bc9091350eddfb0ec", - "receiptsRoot": "0x6afbb44e3e9f0528c546dc3b1a001e4e7f2c823fc394c22608bcf90e86d165f3", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000af356f4e3dce559de78539d1baca278baaae8dab356bfc7dff5e56bf70ba6566671a863c177553645549e85478f66bb051008b76efb1e36799027e455832b33900000000000000000000006a91c5a800000000000000000000000000023dd52b0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002300000000153d6c7800000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd52b", - "digest": "0x8e81e3dd2e4afa932aa92fe28c93036f1f662d60311a23b78b21de0f9a12b515", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52b", - "digest": "0x0c2675bec70e336e2c8188e342fc23792de279feeec5d999dd6b3e2f98013cf0", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "1231855944300", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002300000000153d6c7800000000000000000000000000000001000000006a91c531", - "digest": "0xfbcae5f5d5c9d2fb23f0fd85a953c78ab85a72ff99df8bea244aca219c62be79", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101058", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100433", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52b", - "digest": "0x0c2675bec70e336e2c8188e342fc23792de279feeec5d999dd6b3e2f98013cf0", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100205", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884396", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099733", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "124040", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "233", - "totalGas": "133672", - "transactionId": "0x10d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x73a15741f12a16a9fe897c9e614876b402056f766cfdeea3e28565b9851813074d900193cb64d2fdbe9c993c99b76d8c3f819f4b2104ed2bc9091350eddfb0ec" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1731557", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f003d", - "utxoId": "0xec5ee130a1c9c1d657b05724e196c668a4d27b44a96672e7a636e2c40e8ba4740000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50022", - "utxoId": "0x10d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x53d5b94239b891286b685f12b792d253e1e8e9d403393b84abd025937f54e2a8", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xea2d73b2bf5a43895ab19c0f89028b7d3a91c6a5e2c6b484572f7d3a28afb5ef", - "txPointer": "03bd1aa50022", - "utxoId": "0x10d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0c3eb9c4b8f3eff7c7a0043adbb247de937a1e03f06dee7fafabb6bbde0af236", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0xc09b4c305d5f9da2bd8419c8e1f9e425238f8e0da384fa67e545456f585ac223", - "txPointer": "03bd1aa50022", - "utxoId": "0x10d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1731327", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x97ac2b2383c070f6eb34cd79f687c9783b1482c54aecc990b4cbb3a59de2006f", - "inputIndex": "2", - "stateRoot": "0xbd5e92db834b91ed24cb7ddd3e98cf8d3c69b063341546e81a4cc323338a238f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x060c2ae9909a594177c90935d9ad19ef5ff1391581806348892e12b53c5866ab", - "inputIndex": "3", - "stateRoot": "0x87821846be812c36663fa44587edb1dd5a7131677bc4f5ca884c4ecd2fc1d9d3" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806c3e46477fa4e26e0fbef594803bf857657fe6ef7498c61c1b8048d2f1b5973b0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000071424ca2d7331f43a40b9d67e89800eda272626a6ed6915d78610ce24c9c0bb72efdc7688a02282c88dd4e31d080c7f19912ee1883e92a6d9c0aadbd7c90924e00000000000000000000006a91c5a800000000000000000000000000023dd5290000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003500000000153eb49800000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000ec5ee130a1c9c1d657b05724e196c668a4d27b44a96672e7a636e2c40e8ba4740000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6be5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000000110d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000110d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e000000000000000153d5b94239b891286b685f12b792d253e1e8e9d403393b84abd025937f54e2a8ea2d73b2bf5a43895ab19c0f89028b7d3a91c6a5e2c6b484572f7d3a28afb5ef0000000003bd1aa50000000000000022ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241000000000000000110d42206bd21a84da0026ab0548957a3072fbdb1ba3418e042f7c342bf8d335e00000000000000030c3eb9c4b8f3eff7c7a0043adbb247de937a1e03f06dee7fafabb6bbde0af236c09b4c305d5f9da2bd8419c8e1f9e425238f8e0da384fa67e545456f585ac2230000000003bd1aa50000000000000022e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6afff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000297ac2b2383c070f6eb34cd79f687c9783b1482c54aecc990b4cbb3a59de2006fbd5e92db834b91ed24cb7ddd3e98cf8d3c69b063341546e81a4cc323338a238f00000000000000010000000000000003060c2ae9909a594177c90935d9ad19ef5ff1391581806348892e12b53c5866ab87821846be812c36663fa44587edb1dd5a7131677bc4f5ca884c4ecd2fc1d9d3000000000000004072265c58cd01d505107bee44c5166ba823aa35c1d92299c9971b08ae215fc795b23a23fddce3923206c82b28df061d0bb9baf66432cabf98ddce6aa9fa0941d9", - "receiptsRoot": "0x6c3e46477fa4e26e0fbef594803bf857657fe6ef7498c61c1b8048d2f1b5973b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000071424ca2d7331f43a40b9d67e89800eda272626a6ed6915d78610ce24c9c0bb72efdc7688a02282c88dd4e31d080c7f19912ee1883e92a6d9c0aadbd7c90924e00000000000000000000006a91c5a800000000000000000000000000023dd5290000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003500000000153eb49800000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd529", - "digest": "0x3bc79ed0be02a2cb7c6bb1471d9b27d19550fb9f3344b0f04533a0463ad57125", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd529", - "digest": "0x289808d0b4ec65411c4fe3396cb326b68d6bf7ff347b369df5be2e254f22782e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "733820142800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003500000000153eb49800000000000000000000000000000001000000006a91c531", - "digest": "0xde9c88d3c411d703a9d33a0e464a1fd2c955bc25ea5ee2ea219314fee8e2a6b6", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101234", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100609", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd529", - "digest": "0x289808d0b4ec65411c4fe3396cb326b68d6bf7ff347b369df5be2e254f22782e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100381", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886271", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099909", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "122165", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "230", - "totalGas": "131797", - "transactionId": "0x8ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x72265c58cd01d505107bee44c5166ba823aa35c1d92299c9971b08ae215fc795b23a23fddce3923206c82b28df061d0bb9baf66432cabf98ddce6aa9fa0941d9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a18", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1721040", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0040", - "utxoId": "0xa8d41624244814f49417a32486bc95807687656adba2f2823d28008532abb3df0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x904fa8dcf117bb891a75bf91232fc71f7729528026faec067062821ecc5de4ac", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x3ab6b9b29a35cf5490807b93729e926e04bebd65a2fc2049ca9c30ab91d8b0b5", - "txPointer": "03bd1aa5001f", - "utxoId": "0xdec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2bbc02940554a287cf3be01d3f68d019238535953949ce027b68f92281d43ef5", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x83c884397e1a2776822996fd82f03f81e1b0168e6bd004b8907562c0ac3adfe6", - "txPointer": "03bd1aa5001f", - "utxoId": "0xdec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50023", - "utxoId": "0x8ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1720791", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x683357356f89997e1738e840efcf5fef83ef65b19779db8033525b738b6a74b2", - "inputIndex": "1", - "stateRoot": "0xe915c7df58578f387f2c05c9e7dd21b49f4dd2b8e646125e311a5fde215726b7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x435b90eaaa122e0e33691787142446c5331dc2fa8ffbf2190b6bdfdcdb6a8689", - "inputIndex": "2", - "stateRoot": "0x4bf8ebdef105bf5b122f2d40712146d5c0ad30c0598baf3b64bd2d1105342293" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40e83d1c5ee7b7650a2c25bd81340a8643a7ceae6de8cef3321ce20f34ff1081aa00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001f12f0801622173bab5a70752131367c2057ebf4b0f3f3d1b14bac49d7117905ca6058147159ff3e2762fe13df0aecabdb40f71a8781a8706ba08db21e98492300000000000000000000006a91c5a8000000000000000000000000000a759e790000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000002f326083ba6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e1a16f1e80000000000027b028000000000000000300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000a8d41624244814f49417a32486bc95807687656adba2f2823d28008532abb3df0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a42d0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000001dec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b0000000000000002904fa8dcf117bb891a75bf91232fc71f7729528026faec067062821ecc5de4ac3ab6b9b29a35cf5490807b93729e926e04bebd65a2fc2049ca9c30ab91d8b0b50000000003bd1aa5000000000000001f132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000001dec93acfa765946f887508d62a1bbf3197b7336c9e8a6a4d2c59926616c4165b00000000000000032bbc02940554a287cf3be01d3f68d019238535953949ce027b68f92281d43ef583c884397e1a2776822996fd82f03f81e1b0168e6bd004b8907562c0ac3adfe60000000003bd1aa5000000000000001f9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000018ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b00000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a41d7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001683357356f89997e1738e840efcf5fef83ef65b19779db8033525b738b6a74b2e915c7df58578f387f2c05c9e7dd21b49f4dd2b8e646125e311a5fde215726b700000000000000010000000000000002435b90eaaa122e0e33691787142446c5331dc2fa8ffbf2190b6bdfdcdb6a86894bf8ebdef105bf5b122f2d40712146d5c0ad30c0598baf3b64bd2d110534229300000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040fb8ba6cffa522b092e8cc99070e65e8f69bf88f2c14aff5b97c2f17ffbfd3ac5a0173c1e9274b13583cc58a5f095ee7a7bf0e9e40ce020460d25f8f6580490be", - "receiptsRoot": "0xe83d1c5ee7b7650a2c25bd81340a8643a7ceae6de8cef3321ce20f34ff1081aa", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001f12f0801622173bab5a70752131367c2057ebf4b0f3f3d1b14bac49d7117905ca6058147159ff3e2762fe13df0aecabdb40f71a8781a8706ba08db21e98492300000000000000000000006a91c5a8000000000000000000000000000a759e790000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000002f326083ba6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e1a16f1e80000000000027b0280000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e79", - "digest": "0xe892026d1cafae836559a6215fd32a6668a032298a608ea892ef82ae8a007d1c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147416", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e79", - "digest": "0xa6b200f78a7ceb2b704db9bcd2450c1008aa7989cd16fed4820d37b5d9b083a2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463928", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376924", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e79", - "digest": "0xa6b200f78a7ceb2b704db9bcd2450c1008aa7989cd16fed4820d37b5d9b083a2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "202708648890", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4950211", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f000046e1a16f1e800000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000003000000000027b028000046e1a16f1e80000000006a91c531", - "digest": "0x7fceb58ac933c9a1c3bbc16c2f0ab5f621b7e4718a82b3665a52a992ada5fc85", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434660", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f000046e1a16f1e8000000000000000000000000000000003", - "digest": "0xfdbe20abab6af0216c0987a99eea15af2ce24867af0177a1595885e0ff156dfd", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380892", - "ptr": "67098694", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57220", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133275", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "142896", - "transactionId": "0x8923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a18" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xfb8ba6cffa522b092e8cc99070e65e8f69bf88f2c14aff5b97c2f17ffbfd3ac5a0173c1e9274b13583cc58a5f095ee7a7bf0e9e40ce020460d25f8f6580490be" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1732397", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0041", - "utxoId": "0xe2ebfd5a997200d4428e9b64d273e672a605b33b5578bc5e8e5e261f264ea78d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x683357356f89997e1738e840efcf5fef83ef65b19779db8033525b738b6a74b2", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x94de78615c7777f20a8946c8da3f1c88fe07fad1b5b42ffea4666f7ce680a3f5", - "txPointer": "03bd1aa50024", - "utxoId": "0x8923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a180001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x435b90eaaa122e0e33691787142446c5331dc2fa8ffbf2190b6bdfdcdb6a8689", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xf7703208c6718d640a2eecd23ce5cecab09b941aa59b553f55cc1e56274aa4d7", - "txPointer": "03bd1aa50024", - "utxoId": "0x8923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a180002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50024", - "utxoId": "0x8923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a180003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1732157", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x33d01739f67e5b3baa6b46d2bddff6473e9920da69716b7e385253b09f5af2d7", - "inputIndex": "1", - "stateRoot": "0x2bd5885955ac486c2d3c45fd5bc04fbf2a71ba53f5f5220f0d873f0f3619effe" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2d1294f5f0826d69b74047bdf3c1c84b3c585e869b8c4d9bed5435badd78c87c", - "inputIndex": "2", - "stateRoot": "0xeaad3c12ae98aeb3f31920b6a9093e428a24a4b2fdace42556e0a338886a6942" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40cf6c9485c7f71b7ea9ab7b3e33f7baf21813825be4828efb77345f97f6a8256e00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000041e61284794641e7ca03c0a8da4f86342182e9efd5dff5931ca05d844d41756dc4d1fef974029f6d8806e56f1b74adca8a64f0c14c93998ef9027b975c766ed000000000000000000000006a91c5a8000000000000000000000000000a759e7a0000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000003cccec2b126c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e19ae0a70000000000003320ac000000000000000300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e2ebfd5a997200d4428e9b64d273e672a605b33b5578bc5e8e5e261f264ea78d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6f2df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000041000000000000000000000000000000000000000000000000000000000000000000000000000000018923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a180000000000000001683357356f89997e1738e840efcf5fef83ef65b19779db8033525b738b6a74b294de78615c7777f20a8946c8da3f1c88fe07fad1b5b42ffea4666f7ce680a3f50000000003bd1aa50000000000000024132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000018923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a180000000000000002435b90eaaa122e0e33691787142446c5331dc2fa8ffbf2190b6bdfdcdb6a8689f7703208c6718d640a2eecd23ce5cecab09b941aa59b553f55cc1e56274aa4d70000000003bd1aa500000000000000249423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000018923c552ba1448834660edf3b73b23cbc3da1ee6ff658bb8135392cfd50e5a1800000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6e3df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000133d01739f67e5b3baa6b46d2bddff6473e9920da69716b7e385253b09f5af2d72bd5885955ac486c2d3c45fd5bc04fbf2a71ba53f5f5220f0d873f0f3619effe000000000000000100000000000000022d1294f5f0826d69b74047bdf3c1c84b3c585e869b8c4d9bed5435badd78c87ceaad3c12ae98aeb3f31920b6a9093e428a24a4b2fdace42556e0a338886a694200000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e2160874baac85cc83a916fa00c64da88ab52e7d98d5b87440678aa26129439aa422529b4abde87df694b856a6a133cbbd68b440889f15405fe397529430e083", - "receiptsRoot": "0xcf6c9485c7f71b7ea9ab7b3e33f7baf21813825be4828efb77345f97f6a8256e", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000041e61284794641e7ca03c0a8da4f86342182e9efd5dff5931ca05d844d41756dc4d1fef974029f6d8806e56f1b74adca8a64f0c14c93998ef9027b975c766ed000000000000000000000006a91c5a8000000000000000000000000000a759e7a0000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000003cccec2b126c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e19ae0a70000000000003320ac0000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e7a", - "digest": "0x7cd1a0efbc84247ca4378814d43a2737396bd71ad118940ec6c1166cd26717d0", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147416", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7a", - "digest": "0x82fb46ef080d626bd263b56d16ae0a37e514a13fc7e7fd1fd05b31d564cd6383", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463928", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376924", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7a", - "digest": "0x82fb46ef080d626bd263b56d16ae0a37e514a13fc7e7fd1fd05b31d564cd6383", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "261136067346", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4950211", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000041000046e19ae0a7000000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000000000000000300000000003320ac000046e19ae0a700000000006a91c531", - "digest": "0x3067a9b3663b6b31665d99c352ee72357a24db48da70191e6051501e2b0f3913", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434660", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000041000046e19ae0a70000000000000000000000000000000003", - "digest": "0xe3422ba7334f6c9401584df833bee3025ac5240b7d3ad2ddf018f7fe6acbb374", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306392", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380892", - "ptr": "67099318", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57220", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127964", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "240", - "totalGas": "137585", - "transactionId": "0x0811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe2160874baac85cc83a916fa00c64da88ab52e7d98d5b87440678aa26129439aa422529b4abde87df694b856a6a133cbbd68b440889f15405fe397529430e083" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xbe271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b35", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1584923", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0042", - "utxoId": "0x4a6b7b7e9efc903cdfe991a57936ff8f85cf34401de43de2f6114d16a4ea0bb00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x63e38174ac8ecdc8e3e96efc117be5455560018655f9ed0531f6d7d63553704b", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0xdc01675773d38712a0f725f46f9b14a143f59bd549fef20744389e9e4be238ed", - "txPointer": "03bd1aa50013", - "utxoId": "0x5721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa020001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1a3792a5be30b609c296a71878c37f8afcb34c59e549c9f0c270bf59b55f3e82", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x513d936a4b7db2ee3f00bc18ba0a46d976e3f4a358be1f1c54c24dcb27f75c9e", - "txPointer": "03bd1aa50025", - "utxoId": "0x0811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50025", - "utxoId": "0x0811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1584546", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x96f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6f", - "inputIndex": "1", - "stateRoot": "0xc0e0c421400027278d1985d8dc0b54321f1718c01e5bcad8f1e8a16a0ed17cc2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x779667159329579bc0f49cc5670326499cf734665ea748207606143c95c5e4b9", - "inputIndex": "2", - "stateRoot": "0x1fa3e39e0bea63f1009fc780351ce7c00d4d2426e36f228fdc8c0bad3ef1e8cb" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40429275b4cf69ce16fc8a509487fedca7cc272ccc1361100c8e23f530a3a0a52c00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000080301e7202546004bb1769f2be4288866be5224ceb5cdc44834e12f6935201d89ed7359ed2bfc7a5a7554dc497a10fa3b70ab63efb50f12d866410250a99bea800000000000000000000006a91c5a8000000000000000000000000000a759e7b00000000000000025a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d65a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f7264657200000001a13b8600ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff0000000000000001000000000000001800000238e990b90000000001a13b8600000000000000000300000000000000000000006400000000000210ac0000000003bd1aa900000000000000004a6b7b7e9efc903cdfe991a57936ff8f85cf34401de43de2f6114d16a4ea0bb00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000182f1bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000042000000000000000000000000000000000000000000000000000000000000000000000000000000015721a0917b50931ddd2c4bc41c9bd509a4dac83c78e1230154a8e7b98e31fa02000000000000000163e38174ac8ecdc8e3e96efc117be5455560018655f9ed0531f6d7d63553704bdc01675773d38712a0f725f46f9b14a143f59bd549fef20744389e9e4be238ed0000000003bd1aa500000000000000135a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000010811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e00000000000000021a3792a5be30b609c296a71878c37f8afcb34c59e549c9f0c270bf59b55f3e82513d936a4b7db2ee3f00bc18ba0a46d976e3f4a358be1f1c54c24dcb27f75c9e0000000003bd1aa500000000000000259423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000010811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e00000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000182da2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000196f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6fc0e0c421400027278d1985d8dc0b54321f1718c01e5bcad8f1e8a16a0ed17cc200000000000000010000000000000002779667159329579bc0f49cc5670326499cf734665ea748207606143c95c5e4b91fa3e39e0bea63f1009fc780351ce7c00d4d2426e36f228fdc8c0bad3ef1e8cb00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040da9b71f477c794b29916623cdd40306ac2fb9a7509bba845da77587161cef01ef607a4ffe0aa66167f8b795469873f28b8bc2cf7324919a8ccdc00827dc81173", - "receiptsRoot": "0x429275b4cf69ce16fc8a509487fedca7cc272ccc1361100c8e23f530a3a0a52c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000080301e7202546004bb1769f2be4288866be5224ceb5cdc44834e12f6935201d89ed7359ed2bfc7a5a7554dc497a10fa3b70ab63efb50f12d866410250a99bea800000000000000000000006a91c5a8000000000000000000000000000a759e7b00000000000000025a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d65a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f7264657200000001a13b8600ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff0000000000000001000000000000001800000238e990b90000000001a13b86000000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e7b", - "digest": "0x6ad173877ae25c6b6799ac3829b46721ae40633e6d84222188eef80b36197372", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147416", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e7b", - "digest": "0xc0eb55019a20062a50fb686399889d565629870c23d7a29d49319e2df44232d7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463928", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376924", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e7b", - "digest": "0xc0eb55019a20062a50fb686399889d565629870c23d7a29d49319e2df44232d7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "7000000000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": "4950211", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000040300000238e990b9000000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000001a13b860000000238e990b900000000006a91c531", - "digest": "0x229d179648f95a6309db7e95be6eb72f828c6cd9f2c004b6b3184a03798ee020", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434660", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000c400000238ea294f8000000000000000000000000000000003000000006a91c531", - "digest": "0xee67e84d2a8af9718233f885fed404a306a5212c20e75698a384663c029e3011", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "447712", - "ptr": "67096814", - "ra": "0", - "rb": "10627443379711231661", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000040300000238e990b90000000000000000010000000000000003", - "digest": "0xbce79f4e7a18ba84b7bcf252d85116d55257b6d9de3809c4207ae194ed4ce990", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306392", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380892", - "ptr": "67092582", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57220", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "206917", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "377", - "totalGas": "216538", - "transactionId": "0xbe271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b35" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xda9b71f477c794b29916623cdd40306ac2fb9a7509bba845da77587161cef01ef607a4ffe0aa66167f8b795469873f28b8bc2cf7324919a8ccdc00827dc81173" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "417216", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0043", - "utxoId": "0x927f59ed2ac48f94df4724d9c197e18a1edf1d305cdf895e6d6966a00efbfde60000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50026", - "utxoId": "0xbe271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b350003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xca8a4f08a62ea766f11be27830be124df7169c03c488f4f71a55ac8cca74642b", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0xd133d1f100935a4cfb4d63c41815896ebc96a559e9572b59ac0d0d488620e302", - "txPointer": "03bd1aa50026", - "utxoId": "0xbe271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b350001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2d1294f5f0826d69b74047bdf3c1c84b3c585e869b8c4d9bed5435badd78c87c", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xdcd9155b9992ad0cd96187e1a4947f7e8b237ac5eb3fbc7ffcae6f5050f3b2e1", - "txPointer": "03bd1aa50026", - "utxoId": "0xbe271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b350002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "416935", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x77762036528aa55674456f8ad1b03ecb92f0545805cf1f70f457d62cc18d9f30", - "inputIndex": "2", - "stateRoot": "0x367fb942b55117b3656e742e00745af0045e51ff431b37e47c78b844ef9abaa3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x68cf44b2d012b7f7af082978fc0fd36d647e5e5b6f9a2ef9b56d31fa9e85b03d", - "inputIndex": "3", - "stateRoot": "0x66293575ae6bd96454c3ab89c9033470e39752d0db45e285e1e5a820acc3d392" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40898061eabea25635c3f5aa940d0875e5ca606cdc56cf96bede9ca316a4a1d6fd000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000036bfbdc5d6f2dfbd0f76a614be2c9271acf79008f6cb895a1b2555b14b57bc1fe67907477d4779f86af3d129ecdadaffc55d577f6508ea156d17af7d128cb27800000000000000000000006a91c5a8000000000000000000000000000a759e7c00000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000c400000238ea294f80000000000000000000000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d65a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000008ecf8d73e206c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000238e1387e0000000000ef68b5600000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000927f59ed2ac48f94df4724d9c197e18a1edf1d305cdf895e6d6966a00efbfde60000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000065dc0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004300000000000000000000000000000000000000000000000000000000000000000000000000000001be271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b3500000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001be271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b350000000000000001ca8a4f08a62ea766f11be27830be124df7169c03c488f4f71a55ac8cca74642bd133d1f100935a4cfb4d63c41815896ebc96a559e9572b59ac0d0d488620e3020000000003bd1aa500000000000000265a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000001be271de3759df3895a8b8ffbcc0be6322c9f1842ef8d195420ce06363bc00b3500000000000000022d1294f5f0826d69b74047bdf3c1c84b3c585e869b8c4d9bed5435badd78c87cdcd9155b9992ad0cd96187e1a4947f7e8b237ac5eb3fbc7ffcae6f5050f3b2e10000000003bd1aa500000000000000269423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000065ca7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000277762036528aa55674456f8ad1b03ecb92f0545805cf1f70f457d62cc18d9f30367fb942b55117b3656e742e00745af0045e51ff431b37e47c78b844ef9abaa30000000000000001000000000000000368cf44b2d012b7f7af082978fc0fd36d647e5e5b6f9a2ef9b56d31fa9e85b03d66293575ae6bd96454c3ab89c9033470e39752d0db45e285e1e5a820acc3d392000000000000004000bc45b2847629ecfd0c297e252074964cc6eb2ab48ed0245a000c35a2da92a4802d9096ddfd542bda4ff7bfd4aa79b7cd4cd26d86358c5fe3ec043cd3d814a1", - "receiptsRoot": "0x898061eabea25635c3f5aa940d0875e5ca606cdc56cf96bede9ca316a4a1d6fd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000036bfbdc5d6f2dfbd0f76a614be2c9271acf79008f6cb895a1b2555b14b57bc1fe67907477d4779f86af3d129ecdadaffc55d577f6508ea156d17af7d128cb27800000000000000000000006a91c5a8000000000000000000000000000a759e7c00000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000c400000238ea294f80000000000000000000000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d65a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000008ecf8d73e206c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000238e1387e0000000000ef68b5600000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e7c", - "digest": "0xcd8572c665b8be759f8e9823e4099a7c1b9463972221659517a1f1a1508cdd6f", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e7c", - "digest": "0x244ec930a5d41ccb67212e54f780847eee6df8b899264a63f21b58ce2a4fd367", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962951", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381348", - "ptr": "67104713", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e7c", - "digest": "0x244ec930a5d41ccb67212e54f780847eee6df8b899264a63f21b58ce2a4fd367", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67104485", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4947259", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "9814482652296", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409832", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000008ed1cc08c88", - "digest": "0xde299d63403a8b6e57d3c02e4f27d8386e437e66a014c453ba25aedd61a01803", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464080", - "ptr": "67103565", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377076", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d85a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a8000000000000000000000000000a759e7c", - "digest": "0x244ec930a5d41ccb67212e54f780847eee6df8b899264a63f21b58ce2a4fd367", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67103337", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "9813880159776", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4933289", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000c300000238e1387e000000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000000000000000300000000ef68b56000000238e1387e00000000006a91c531", - "digest": "0xb5428e7afffe35fa5b8db7e20afcf68e282774378c540cde9787a5470dbd809d", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434812", - "ptr": "67101497", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000c300000238e1387e0000000000000000000000000000000003", - "digest": "0xaae88297e622d492b44c82df73caba2a3ca690b275ed0beef2cfb9b6950c0f3b", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381044", - "ptr": "67096873", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "151364", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "281", - "totalGas": "161192", - "transactionId": "0x6cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x00bc45b2847629ecfd0c297e252074964cc6eb2ab48ed0245a000c35a2da92a4802d9096ddfd542bda4ff7bfd4aa79b7cd4cd26d86358c5fe3ec043cd3d814a1" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xeb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f06134", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1719678", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0044", - "utxoId": "0x458c63632558022e4b7bb148291448e2499c8e5fc6ca839fdc5a8dc285be8c4c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x68cf44b2d012b7f7af082978fc0fd36d647e5e5b6f9a2ef9b56d31fa9e85b03d", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x3886a58471c5899ed008eacafe98921c82f89881d79864d7abd7831711626a7c", - "txPointer": "03bd1aa50027", - "utxoId": "0x6cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50027", - "utxoId": "0x6cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b50001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x33d01739f67e5b3baa6b46d2bddff6473e9920da69716b7e385253b09f5af2d7", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x1692b4a495e6f6ca72a2be8a08df339da69c7e65f3f87af134bd6fc2edfd61cd", - "txPointer": "03bd1aa50025", - "utxoId": "0x0811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1719424", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1c373571bf1c548dcc6923b36ab9e868617e26cbc8cebe7d4c9b76644875ca40", - "inputIndex": "1", - "stateRoot": "0x51fb61f81ca37015dfea4ffe4809d687c0171cd2763ecae2883f1a6052b47872" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xca373b6952c4b3f34970fcba482237167c4e80e07c65e1d2d8ad44e051447c33", - "inputIndex": "3", - "stateRoot": "0xc44f22806edf7fc8d63204b02391cdf042159a4421c85e4662e52d5c0a695fd7" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40bdfea98ebfa4c791f330186d290bd8c770b0468d8052fbb9c92a8f4bfededce60000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000055a29aac4438a431705542169af1258fa09f57511bf546af60446f2139499312451ee1e8deb5ec888c7eed2236d882b0fbe4030ed82d22a64e1a94cbe25ecda700000000000000000000006a91c5a8000000000000000000000000000a759e7d0000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000e000046e1a46a0f0000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aa90000000000000000458c63632558022e4b7bb148291448e2499c8e5fc6ca839fdc5a8dc285be8c4c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3d7ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000016cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b5000000000000000368cf44b2d012b7f7af082978fc0fd36d647e5e5b6f9a2ef9b56d31fa9e85b03d3886a58471c5899ed008eacafe98921c82f89881d79864d7abd7831711626a7c0000000003bd1aa500000000000000279423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000016cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b50000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000010811edb38a838b4b1c9b59ff7ab2eaac64d08938b32fcecaeeaf1a20e77a662e000000000000000133d01739f67e5b3baa6b46d2bddff6473e9920da69716b7e385253b09f5af2d71692b4a495e6f6ca72a2be8a08df339da69c7e65f3f87af134bd6fc2edfd61cd0000000003bd1aa50000000000000025132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3c80f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000011c373571bf1c548dcc6923b36ab9e868617e26cbc8cebe7d4c9b76644875ca4051fb61f81ca37015dfea4ffe4809d687c0171cd2763ecae2883f1a6052b47872000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003ca373b6952c4b3f34970fcba482237167c4e80e07c65e1d2d8ad44e051447c33c44f22806edf7fc8d63204b02391cdf042159a4421c85e4662e52d5c0a695fd70000000000000040ae10a44883baad08e7008824c3061171e73359a3251662bb3c307a9c49648c95f662e33cef1473a929e74a5468cdc5d5ab3cf5e35692092a2498acad6d40cc4f", - "receiptsRoot": "0xbdfea98ebfa4c791f330186d290bd8c770b0468d8052fbb9c92a8f4bfededce6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000055a29aac4438a431705542169af1258fa09f57511bf546af60446f2139499312451ee1e8deb5ec888c7eed2236d882b0fbe4030ed82d22a64e1a94cbe25ecda700000000000000000000006a91c5a8000000000000000000000000000a759e7d0000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000e000046e1a46a0f0000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e7d", - "digest": "0x7b0e576e856d922e125420edfee9d32bfb0393655b6a4ac84c73d81508ed9310", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7d", - "digest": "0x0ae643b75a5cde0b3cca71ece781ca340331ee2d21f470c937307c88bb40962c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964602", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "119240458200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409688", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e000046e1a46a0f0000000000000000000000000000000003000000006a91c531", - "digest": "0xf19a877c821ade390036b2324b41dceb5bebbec9a0a059f8816624951b8c5ee2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404036", - "ptr": "67099810", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381204", - "ptr": "67099185", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7d", - "digest": "0x0ae643b75a5cde0b3cca71ece781ca340331ee2d21f470c937307c88bb40962c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67098957", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4873156", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463936", - "ptr": "67098037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376932", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "136126", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "254", - "totalGas": "145758", - "transactionId": "0xeb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f06134" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xae10a44883baad08e7008824c3061171e73359a3251662bb3c307a9c49648c95f662e33cef1473a929e74a5468cdc5d5ab3cf5e35692092a2498acad6d40cc4f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xdb2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1719376", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0045", - "utxoId": "0x32000c526bbf1bc38fb2a038f1a863bc41a6a38966bc7e0636eb2df758ab82e00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1c373571bf1c548dcc6923b36ab9e868617e26cbc8cebe7d4c9b76644875ca40", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x6635d2a422d724e920c1b9cb4573aacb436e35912d87441c018dcdbf3ed79c94", - "txPointer": "03bd1aa50028", - "utxoId": "0xeb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f061340001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50028", - "utxoId": "0xeb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f061340002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xca373b6952c4b3f34970fcba482237167c4e80e07c65e1d2d8ad44e051447c33", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0xd1fd0ceb767ca7fa55797c17cce55c01582bef746320538a7aae319609c7fd22", - "txPointer": "03bd1aa50028", - "utxoId": "0xeb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f061340003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1719128", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5192443c65dbba9b35f9d6b5b6090b64fd2c3184edfdb2a57b4e2de0d3e38cef", - "inputIndex": "1", - "stateRoot": "0x1f087f7684f5e873dc7c4944a5d75436f834e0d47c7a1b36477898808278e3e2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x15080f1f90f0ac603813671c2b0b580dbf368955686fac8eaef66ae105feb75f", - "inputIndex": "3", - "stateRoot": "0x6b0f977609f3fc6446fc187d50454be9e9743528fdf08b40bc86f09fdecd3252" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b4017f1b022ab58e1f0dbb679ca94bc2fc01b0a8644f84bc68bd7492677a48e92f80000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000db61ac6d4936f86e43652547c35331ba72ec5791264b1b9bca37d81194a4c87be4601c590e9748c57cc8d761c105faa375650ecaed012db011b2b04049c92b9e00000000000000000000006a91c5a8000000000000000000000000000a759e7e0000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000f000046e1a16f1e8000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aa9000000000000000032000c526bbf1bc38fb2a038f1a863bc41a6a38966bc7e0636eb2df758ab82e00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3c50f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004500000000000000000000000000000000000000000000000000000000000000000000000000000001eb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f0613400000000000000011c373571bf1c548dcc6923b36ab9e868617e26cbc8cebe7d4c9b76644875ca406635d2a422d724e920c1b9cb4573aacb436e35912d87441c018dcdbf3ed79c940000000003bd1aa500000000000000289423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001eb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f061340000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001eb1ff2d7f085816d0a117f32c8258bf98e1b18f26addfec20545f17a34f061340000000000000003ca373b6952c4b3f34970fcba482237167c4e80e07c65e1d2d8ad44e051447c33d1fd0ceb767ca7fa55797c17cce55c01582bef746320538a7aae319609c7fd220000000003bd1aa50000000000000028132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3b58f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000015192443c65dbba9b35f9d6b5b6090b64fd2c3184edfdb2a57b4e2de0d3e38cef1f087f7684f5e873dc7c4944a5d75436f834e0d47c7a1b36477898808278e3e200000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000315080f1f90f0ac603813671c2b0b580dbf368955686fac8eaef66ae105feb75f6b0f977609f3fc6446fc187d50454be9e9743528fdf08b40bc86f09fdecd325200000000000000408dbcd53722dd20fcfccdb24a05830358ed6a9129643aa5fe3f2b94990df58455ce6a4e69c41c29fd3905f0e9417a24d5950e6a43cf9a62c043c83b75999f6616", - "receiptsRoot": "0x17f1b022ab58e1f0dbb679ca94bc2fc01b0a8644f84bc68bd7492677a48e92f8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000db61ac6d4936f86e43652547c35331ba72ec5791264b1b9bca37d81194a4c87be4601c590e9748c57cc8d761c105faa375650ecaed012db011b2b04049c92b9e00000000000000000000006a91c5a8000000000000000000000000000a759e7e0000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000f000046e1a16f1e8000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e7e", - "digest": "0x99fe100c6de1520b5467dee76e2885549b33c0d8b91fe0f6d3778947eba9e86b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7e", - "digest": "0xd50b5fbf2d9bdf84a43dd2a3040438b5ac810461d7e42be5e3533b9f7f8fbc0b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964602", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "202708648890", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409688", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f000046e1a16f1e8000000000000000000000000000000003000000006a91c531", - "digest": "0x318b863ad63e74ce76c30a385b4b62ed179476b320b5e7b37baf184be83c3153", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404036", - "ptr": "67100082", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381204", - "ptr": "67099457", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7e", - "digest": "0xd50b5fbf2d9bdf84a43dd2a3040438b5ac810461d7e42be5e3533b9f7f8fbc0b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67099229", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4876812", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463936", - "ptr": "67098309", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376932", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132470", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "248", - "totalGas": "142102", - "transactionId": "0xdb2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x8dbcd53722dd20fcfccdb24a05830358ed6a9129643aa5fe3f2b94990df58455ce6a4e69c41c29fd3905f0e9417a24d5950e6a43cf9a62c043c83b75999f6616" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "156258", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0047", - "utxoId": "0x9474c902c0a7408db648f8fea6789dced6c336ec7beaf7a7d1c910c0b5d36d4f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x66568ab094049761296777bba0df4bd35332f95f062707a8716381f3a10b5228", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x4d6aa8e55770ccade4d20ce09dbc612166d8f2d9a37be09a4ed1d4b81a437c87", - "txPointer": "03bd1aa5001e", - "utxoId": "0xb726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50029", - "utxoId": "0xdb2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xac5b1a5d8b210897d697485cce9b01fd515bbd2cf5a5a389bb182bb85b8c2c40", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x772af4121a7c9145a124b8c35854471306fdda728e04e9dee00759d6d045b672", - "txPointer": "03bd1aa5001e", - "utxoId": "0xb726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "156022", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb46c329298fae121bf09c88e972d978141a345e37e1663dd003a654b637ba6a4", - "inputIndex": "1", - "stateRoot": "0xd5c913e8de5559a514e24da0e5d4c4a97bdc81ec192859cc39d042f07cc164f7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x93c91510031c45950662d45787e8417cdcbdc90e5e2b26938b01da384d82759c", - "inputIndex": "3", - "stateRoot": "0xda8a3187abd2d2c75d349c9e95b988fd4055468cb80d5e7c426199bd81b08905" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848031054e7cce10a4ae1904dc079fae402694c8ffb4380fb7b6239058538f6596000000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e4e8fc0539101f6917e069c463117be280da07a3296e1980b08f23aa6fe21c882b7fac49cd81870d16278efad2247654457fdce94007a66554fe2d91e16c729400000000000000000000006a91c5a800000000000000000000000000024e03500000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000007a00000002ad26683000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa900000000000000009474c902c0a7408db648f8fea6789dced6c336ec7beaf7a7d1c910c0b5d36d4f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026262f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004700000000000000000000000000000000000000000000000000000000000000000000000000000001b726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc000000000000000366568ab094049761296777bba0df4bd35332f95f062707a8716381f3a10b52284d6aa8e55770ccade4d20ce09dbc612166d8f2d9a37be09a4ed1d4b81a437c870000000003bd1aa5000000000000001ec46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001db2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001b726eee70cb54121737b16d4947f834f9f9ffe8a512d7f99ae2e12bcea52bccc0000000000000002ac5b1a5d8b210897d697485cce9b01fd515bbd2cf5a5a389bb182bb85b8c2c40772af4121a7c9145a124b8c35854471306fdda728e04e9dee00759d6d045b6720000000003bd1aa5000000000000001ef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026176f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001b46c329298fae121bf09c88e972d978141a345e37e1663dd003a654b637ba6a4d5c913e8de5559a514e24da0e5d4c4a97bdc81ec192859cc39d042f07cc164f700000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000393c91510031c45950662d45787e8417cdcbdc90e5e2b26938b01da384d82759cda8a3187abd2d2c75d349c9e95b988fd4055468cb80d5e7c426199bd81b089050000000000000040ea05939906f16f8f5c11f2d62aadec4fefacc59dc9e41e2f8f14d7b98189e58ae790d8a3b80dfa7e44dcbfc701c8e4f7febfeef5c39c4776d91adc92a8ba7c06", - "receiptsRoot": "0x31054e7cce10a4ae1904dc079fae402694c8ffb4380fb7b6239058538f659600", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e4e8fc0539101f6917e069c463117be280da07a3296e1980b08f23aa6fe21c882b7fac49cd81870d16278efad2247654457fdce94007a66554fe2d91e16c729400000000000000000000006a91c5a800000000000000000000000000024e03500000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000007a00000002ad26683000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e0350", - "digest": "0xcae97ff79e8721bc09fb30f187fb12f09f39df53f667f2964e5e0ac6942523da", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0350", - "digest": "0xfa4ea0f2e9f54b777fbfea6d463da887e7b008cff185fa92c8928722e0e58404", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "35870000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000007a00000002ad26683000000000000000010000000000000001000000006a91c531", - "digest": "0x63bd68f6044f1256cb386c5dcd7e590a0f0cc083edf691ac31d23df32dcc9bab", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100930", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100305", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0350", - "digest": "0xfa4ea0f2e9f54b777fbfea6d463da887e7b008cff185fa92c8928722e0e58404", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100077", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882662", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099605", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125774", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135406", - "transactionId": "0x1204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xea05939906f16f8f5c11f2d62aadec4fefacc59dc9e41e2f8f14d7b98189e58ae790d8a3b80dfa7e44dcbfc701c8e4f7febfeef5c39c4776d91adc92a8ba7c06" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd466", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1719638", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0046", - "utxoId": "0xb24ab1d7df273266a7e70f53e8e121b72fd08cc7390a9320d0b5e5bf3fb8865b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe4c304a62d1752f16c12df0d1ddb605e337eadfd2dc149c497182b81fb93d513", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0xa152900cd711c5d32fdab1cf49d2b02f2f56a137d31c41964242bb97f546997a", - "txPointer": "03bd1aa50023", - "utxoId": "0x8ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5002a", - "utxoId": "0x1204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa21a42045c1ebeb4aab85969dc236789971d7da9474e955887f4006b55e00558", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xc704ce33e05f47c0b94f566432d23619c3496dd79bc1f96c27a18e274247c874", - "txPointer": "03bd1aa50023", - "utxoId": "0x8ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1719401", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x104f1e0a33ed8e173254ee152c2267ec4ba575dbcb4a7d28cfa9bb1fe3f6567d", - "inputIndex": "1", - "stateRoot": "0xdfd303a217c6d4ed975524e1f5d3df1b645c50cadfb7d8130f281d6597d18d00" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb8f0642e39845a1780eb06d6c9a757ce4d1b8296a84eaf1905e2c3f36be9a17c", - "inputIndex": "3", - "stateRoot": "0x51e8552945f1aa450eb01e334e0bf79c66bff1decb2debf5ad1b4c6672acfed9" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480687773dcaba819ffed1a8e5ab06a8c577bc5b4277e0f168ce037fb2ca1c31af300000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b38dc296fafc0317a433fd00e01e587600037bd50d7eca2a6c5b6986b876ec2534b2fb878668ffaff167797da05651eb74853db3dd309741229b429ba647532200000000000000000000006a91c5a800000000000000000000000000023dd52c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000061b811c5000f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001545dca00000061b811c5000000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000b24ab1d7df273266a7e70f53e8e121b72fd08cc7390a9320d0b5e5bf3fb8865b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3d56f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000046000000000000000000000000000000000000000000000000000000000000000000000000000000018ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b0000000000000003e4c304a62d1752f16c12df0d1ddb605e337eadfd2dc149c497182b81fb93d513a152900cd711c5d32fdab1cf49d2b02f2f56a137d31c41964242bb97f546997a0000000003bd1aa50000000000000023e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000011204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f0000000000000002b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018ec92167864ba8d778d2fb4be2330fc0d2d19353a4ce2afcc59eade43a48023b0000000000000002a21a42045c1ebeb4aab85969dc236789971d7da9474e955887f4006b55e00558c704ce33e05f47c0b94f566432d23619c3496dd79bc1f96c27a18e274247c8740000000003bd1aa50000000000000023ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3c69f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001104f1e0a33ed8e173254ee152c2267ec4ba575dbcb4a7d28cfa9bb1fe3f6567ddfd303a217c6d4ed975524e1f5d3df1b645c50cadfb7d8130f281d6597d18d00000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003b8f0642e39845a1780eb06d6c9a757ce4d1b8296a84eaf1905e2c3f36be9a17c51e8552945f1aa450eb01e334e0bf79c66bff1decb2debf5ad1b4c6672acfed90000000000000040a42fb81dc81b2625fc88617157e5ff78074c6b433ac8449786bf883172d9ee6aaa3d3495ff2061cddf5cef779e9cc13c875e36485d0275a441196899859cfec3", - "receiptsRoot": "0x687773dcaba819ffed1a8e5ab06a8c577bc5b4277e0f168ce037fb2ca1c31af3", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b38dc296fafc0317a433fd00e01e587600037bd50d7eca2a6c5b6986b876ec2534b2fb878668ffaff167797da05651eb74853db3dd309741229b429ba647532200000000000000000000006a91c5a800000000000000000000000000023dd52c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000061b811c5000f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001545dca00000061b811c50000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd52c", - "digest": "0x3d00c6006e3bd3a78dd96c89a63898c35759a613fb8e2f958cbcf882b32d2d48", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52c", - "digest": "0x51c33c600db9fad5235ec2ab7f4fb2296855b4e36090381b71c6caa12e39b40c", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52c", - "digest": "0x51c33c600db9fad5235ec2ab7f4fb2296855b4e36090381b71c6caa12e39b40c", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "6715200000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003c000000001545dca0000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000100000000000000010000061b811c5000000000001545dca0000000006a91c531", - "digest": "0xeca4a188263772db91a6167d1f506e3316c8742cc76642097a2e91e9de8b4e47", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003c000000001545dca000000000000000010000000000000001", - "digest": "0x2dc43117f535e4715d523b7b85ff7e2aff43f0b8707158c323fb6ebfc1ad5360", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099862", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126557", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136178", - "transactionId": "0xed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd466" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa42fb81dc81b2625fc88617157e5ff78074c6b433ac8449786bf883172d9ee6aaa3d3495ff2061cddf5cef779e9cc13c875e36485d0275a441196899859cfec3" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1720667", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f004b", - "utxoId": "0x03ee9814638985e0350da4b72e70f8d79af7e97ccc43569dbeb7f66b2f9e953e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5002b", - "utxoId": "0xed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd4660002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x93c91510031c45950662d45787e8417cdcbdc90e5e2b26938b01da384d82759c", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x7f5454c29237859c62d77afdd3ba2ebd4990e190cad054ccd64c487e8a808b78", - "txPointer": "03bd1aa5002a", - "utxoId": "0x1204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb46c329298fae121bf09c88e972d978141a345e37e1663dd003a654b637ba6a4", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xe99e2e3018f65518a19e09ac5dd8b23b5edc9f62e9540ada71b814d065a5b548", - "txPointer": "03bd1aa5002a", - "utxoId": "0x1204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1720426", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xaa5367d3ed4cdccf56db66bf78d0426a77d506dca05eb60f7c7f3f54c60b4b11", - "inputIndex": "2", - "stateRoot": "0xac1b228e5b46b3cb69649acb4f391cafecbc610df407f7d18bfc594abc98bb71" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4d001b022a40263bee01ad369b50a8637bb332aa2a9839a329ec04517ff9a0e2", - "inputIndex": "3", - "stateRoot": "0x367a21871101f2cc1deb0069b23664dc585fccab4243c5e8e25358c3dc3cf926" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480bb3a3cd2a9cf0973bd510c7358304aaa68f3e7ed4c763ada33b976b3213fa7eb00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000039f4b58ed7c91d98e98598a17bb911110753b3de15295a0d4038e9ff34812a88eafaae08a104ffa7ba886a41d288209aa4f0b8645780e4788c62f569b01ee8300000000000000000000006a91c5a800000000000000000000000000024e03510000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000004dac1c0807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad1ddcb000000004dac1c080000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000003ee9814638985e0350da4b72e70f8d79af7e97ccc43569dbeb7f66b2f9e953e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a415bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004b00000000000000000000000000000000000000000000000000000000000000000000000000000001ed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd466000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000011204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f000000000000000393c91510031c45950662d45787e8417cdcbdc90e5e2b26938b01da384d82759c7f5454c29237859c62d77afdd3ba2ebd4990e190cad054ccd64c487e8a808b780000000003bd1aa5000000000000002af356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000011204b41ad340431f99867cfb9d0f98541b605e4d453790be19adbe91f1a2df0f0000000000000001b46c329298fae121bf09c88e972d978141a345e37e1663dd003a654b637ba6a4e99e2e3018f65518a19e09ac5dd8b23b5edc9f62e9540ada71b814d065a5b5480000000003bd1aa5000000000000002ac46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a406af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002aa5367d3ed4cdccf56db66bf78d0426a77d506dca05eb60f7c7f3f54c60b4b11ac1b228e5b46b3cb69649acb4f391cafecbc610df407f7d18bfc594abc98bb71000000000000000100000000000000034d001b022a40263bee01ad369b50a8637bb332aa2a9839a329ec04517ff9a0e2367a21871101f2cc1deb0069b23664dc585fccab4243c5e8e25358c3dc3cf9260000000000000040750d006336883c38d30f55ee8fe23a886080bab2ef1cc9f3bd956328de3f4be1978c9b8555cfb7088efd38369da4afae065c6c4f54e192d962488a64a730650e", - "receiptsRoot": "0xbb3a3cd2a9cf0973bd510c7358304aaa68f3e7ed4c763ada33b976b3213fa7eb", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000039f4b58ed7c91d98e98598a17bb911110753b3de15295a0d4038e9ff34812a88eafaae08a104ffa7ba886a41d288209aa4f0b8645780e4788c62f569b01ee8300000000000000000000006a91c5a800000000000000000000000000024e03510000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000004dac1c0807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad1ddcb000000004dac1c0800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e0351", - "digest": "0x4ec8be810c014fa7ca3af480b15ad21f4887e25d9eab4e06cbe8351c8b6ecbb0", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0351", - "digest": "0x4cfbb7d25913ad5565582042dd5c134672dc393c5d12fbce015c3c994c48685e", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0351", - "digest": "0x4cfbb7d25913ad5565582042dd5c134672dc393c5d12fbce015c3c994c48685e", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "20850000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d00000002ad1ddcb0000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001000000000000000100000004dac1c08000000002ad1ddcb0000000006a91c531", - "digest": "0x2f4512cf7d184a9b7f6b1ebedf3e1703ad0dfffbb8d01ca02fc19c3b3b6e86e5", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d00000002ad1ddcb000000000000000010000000000000001", - "digest": "0xc2db6b4114f3d1ab20548f9b16811fcc4fc8dd05365baab254d0b759fd5d3d74", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128487", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138108", - "transactionId": "0xc454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x750d006336883c38d30f55ee8fe23a886080bab2ef1cc9f3bd956328de3f4be1978c9b8555cfb7088efd38369da4afae065c6c4f54e192d962488a64a730650e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x15855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb8", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1861899", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0049", - "utxoId": "0xdb988fb31b23b49d004382b0a43a7fa648052e0fb5632fbcd83a9818f86b7c240000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb8f0642e39845a1780eb06d6c9a757ce4d1b8296a84eaf1905e2c3f36be9a17c", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x20a9ce324c2a24e53dcc9a6cd996ebb1a7d153c5fdd7352dc3442405c7016026", - "txPointer": "03bd1aa5002b", - "utxoId": "0xed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd4660003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x104f1e0a33ed8e173254ee152c2267ec4ba575dbcb4a7d28cfa9bb1fe3f6567d", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x1ccc2e3f2ea2800e215da94bc613d376f618a8028e03677634ac5fd9eee49d48", - "txPointer": "03bd1aa5002b", - "utxoId": "0xed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd4660001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5002c", - "utxoId": "0xc454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1861693", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e9", - "inputIndex": "1", - "stateRoot": "0x78addbfe61844664a5a94cac515fe77708e9b64519c88e771ddbe4649adc18bb" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x961efb22b1a37444c1ecc8ff0066149b8eaba0db3cad8e9d882a9292f43a21ef", - "inputIndex": "2", - "stateRoot": "0xed0a7186225324b20409bdb53adda2dc00ac4ed2463093c9ff40dcae03d0996b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480a16e0e9eacb34392919dd2b18b215a236c1dc734d4075eafca126607725df1d900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b84646a9740a9c4eda16030a43fcacac9ef0b01db5cb0db5ce45d7d3814e27fc6cddb14cc2658ae3ec74cec87f4e5c1d3279dd014fc1e340d2ed0795bf96f91700000000000000000000006a91c5a800000000000000000000000000023dd52e0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000247f668d900f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154c780800000247f668d900000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000db988fb31b23b49d004382b0a43a7fa648052e0fb5632fbcd83a9818f86b7c240000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c690bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004900000000000000000000000000000000000000000000000000000000000000000000000000000001ed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd4660000000000000003b8f0642e39845a1780eb06d6c9a757ce4d1b8296a84eaf1905e2c3f36be9a17c20a9ce324c2a24e53dcc9a6cd996ebb1a7d153c5fdd7352dc3442405c70160260000000003bd1aa5000000000000002bba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000001ed706eb16e1bced786b8c72c8834fe78f0dacc1190d97d7cee3b4b35b40bd4660000000000000001104f1e0a33ed8e173254ee152c2267ec4ba575dbcb4a7d28cfa9bb1fe3f6567d1ccc2e3f2ea2800e215da94bc613d376f618a8028e03677634ac5fd9eee49d480000000003bd1aa5000000000000002be2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001c454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e0000000000000001b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c683df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000014b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e978addbfe61844664a5a94cac515fe77708e9b64519c88e771ddbe4649adc18bb00000000000000010000000000000002961efb22b1a37444c1ecc8ff0066149b8eaba0db3cad8e9d882a9292f43a21efed0a7186225324b20409bdb53adda2dc00ac4ed2463093c9ff40dcae03d0996b00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c9ed07000727e8f396b0fbeea25f778b8f359b90e3c8038a3d57c88eb5d243340252057e60abe0e71457bffed8f8e0a1327672e13c7dbbb7637edf2614c9cc46", - "receiptsRoot": "0xa16e0e9eacb34392919dd2b18b215a236c1dc734d4075eafca126607725df1d9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b84646a9740a9c4eda16030a43fcacac9ef0b01db5cb0db5ce45d7d3814e27fc6cddb14cc2658ae3ec74cec87f4e5c1d3279dd014fc1e340d2ed0795bf96f91700000000000000000000006a91c5a800000000000000000000000000023dd52e0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000247f668d900f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154c780800000247f668d9000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd52e", - "digest": "0x5be850501196e68956be9665662396cce0344a63ef692c1a67af8186a698964a", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52e", - "digest": "0x5f6ea0d2ea9c25e7e9f0357a6bb000b01f2d1e97e33bb63cd76bd22d9150a876", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52e", - "digest": "0x5f6ea0d2ea9c25e7e9f0357a6bb000b01f2d1e97e33bb63cd76bd22d9150a876", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2508100000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004300000000154c7808000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001000000000000000100000247f668d90000000000154c7808000000006a91c531", - "digest": "0x5a68b7d86bd454a5f6efced5fc0018cdd0e7e5eb83aebb13a927c8ebb8b4c5f9", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004300000000154c780800000000000000010000000000000001", - "digest": "0x1c0aa1883024b191c6b2c83c72a6928184110d74de062af054ed22e0f0929200", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101702", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "108706", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "206", - "totalGas": "118327", - "transactionId": "0x15855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb8" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc9ed07000727e8f396b0fbeea25f778b8f359b90e3c8038a3d57c88eb5d243340252057e60abe0e71457bffed8f8e0a1327672e13c7dbbb7637edf2614c9cc46" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc0198356", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1722763", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f004a", - "utxoId": "0x35dd6956a3722fb08e61c11a6e1565737c8a32814f976833b041096344ac6e220000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x961efb22b1a37444c1ecc8ff0066149b8eaba0db3cad8e9d882a9292f43a21ef", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x50bbfc33aa6b27edad6d33229fc9ea26cdf99570f2bdfee3aaf1a757d42b63d7", - "txPointer": "03bd1aa5002d", - "utxoId": "0x15855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb80002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5002d", - "utxoId": "0x15855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb80003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e9", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x3ff7434c6881e1ce643c9e8556fbe407d3ba399a93b86df9aeacaa258bdf3f12", - "txPointer": "03bd1aa5002d", - "utxoId": "0x15855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb80001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1722526", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6411b1a57bb288b897d3bb78ef534d565195946337b901895e703a1484687d0f", - "inputIndex": "1", - "stateRoot": "0x45afb9e8d18fe9dfa28ec4a988f2583b57ce63b4c537d23ad65eecf22ecde471" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x99f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a", - "inputIndex": "3", - "stateRoot": "0x9340985f255ace9434ae5eb4f253cda94077d96421d061701291ee5dcf1e16bc" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480e4f7489e99db4ea90ab254e4450ba1e5278b6206af9ea2385604b3c0302b2a1600000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d8b7551d41c9878ec14631a032858d8d5d61e1e898d60c89b3a11dad041ea9db7059bf7a98eeb489ad6ca3d6a7d85b924746e39b6899bda5418da0b38082ce8e00000000000000000000006a91c5a800000000000000000000000000023dd52f0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000004a221e7000f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001544c3600000004a221e7000000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000035dd6956a3722fb08e61c11a6e1565737c8a32814f976833b041096344ac6e220000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a498bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004a0000000000000000000000000000000000000000000000000000000000000000000000000000000115855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb80000000000000002961efb22b1a37444c1ecc8ff0066149b8eaba0db3cad8e9d882a9292f43a21ef50bbfc33aa6b27edad6d33229fc9ea26cdf99570f2bdfee3aaf1a757d42b63d70000000003bd1aa5000000000000002de2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000115855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb80000000000000003b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000115855656320bd572ef27550441e8165792b5e981362a49a1d2a3b218848b1fb800000000000000014b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e93ff7434c6881e1ce643c9e8556fbe407d3ba399a93b86df9aeacaa258bdf3f120000000003bd1aa5000000000000002dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a489ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016411b1a57bb288b897d3bb78ef534d565195946337b901895e703a1484687d0f45afb9e8d18fe9dfa28ec4a988f2583b57ce63b4c537d23ad65eecf22ecde47100000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000399f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a9340985f255ace9434ae5eb4f253cda94077d96421d061701291ee5dcf1e16bc000000000000004017fb988e20d4f9caab1c859a848e5f615343388ddb479bcb40eb0102894ae06404da0e912dd17f8f852e3f68a44cace1ca6a1163f902f32deb0375c3d2693963", - "receiptsRoot": "0xe4f7489e99db4ea90ab254e4450ba1e5278b6206af9ea2385604b3c0302b2a16", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d8b7551d41c9878ec14631a032858d8d5d61e1e898d60c89b3a11dad041ea9db7059bf7a98eeb489ad6ca3d6a7d85b924746e39b6899bda5418da0b38082ce8e00000000000000000000006a91c5a800000000000000000000000000023dd52f0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000004a221e7000f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001544c3600000004a221e70000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd52f", - "digest": "0xa718004af1d4beb552a900dc1c7b7e89840522b4fc855dc857e75750db711b7d", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52f", - "digest": "0x9c26594a4983bd67117aea97dc15bd4ceb7558d38b227de1c1d1158970a556e0", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52f", - "digest": "0x9c26594a4983bd67117aea97dc15bd4ceb7558d38b227de1c1d1158970a556e0", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "318400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002e000000001544c360000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000100000000000000010000004a221e7000000000001544c360000000006a91c531", - "digest": "0x7df8e514eeaeddaa683b446949ec16090fa43ae1049d2b9977670cb825127c89", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002e000000001544c36000000000000000010000000000000001", - "digest": "0xf18d15eb1ace9988010484299a86e4e2c82fc598a25cc7b0a10a20babd23d25d", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126616", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136237", - "transactionId": "0xa80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc0198356" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x17fb988e20d4f9caab1c859a848e5f615343388ddb479bcb40eb0102894ae06404da0e912dd17f8f852e3f68a44cace1ca6a1163f902f32deb0375c3d2693963" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xf8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d17164", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1588036", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f004d", - "utxoId": "0x9393007439632e3f468cbbf3762187e478e398406859d528a318af9214b3ec440000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6411b1a57bb288b897d3bb78ef534d565195946337b901895e703a1484687d0f", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x602b2e3d0a780af984b7a57b8f3f6b10503e6d763e4e17937269739529409ef6", - "txPointer": "03bd1aa5002e", - "utxoId": "0xa80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc01983560001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5002e", - "utxoId": "0xa80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc01983560002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x99f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x107b5fe67e6c662c8a7792ea40d0a608db3115b0aabcf91013240d61d95ffcda", - "txPointer": "03bd1aa5002e", - "utxoId": "0xa80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc01983560003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1587799", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbe38c23cf3c7384a05e95ec7648b0883e4baed7215a8de8f8aa499aa16ce1cbf", - "inputIndex": "1", - "stateRoot": "0xb3f4279d97f68b1758de04db27f8ea8188c233472843a306abe4144f7ea46beb" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9474bd8668b20460e5acab07514bd1542864ee261f6f6a8895eec869c80ad3f1", - "inputIndex": "3", - "stateRoot": "0x81889957e4ffe03dc5d71257bce12cb0027810664f2abb91bf40be86c2dff897" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84800ab29d2d2628281057ba62bbf3cadc06427e0aee6a0e394abc7ccf23566ea2e200000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009873816504f54c76c6ea2288a0bbed96a78e154fff6c6dae9c54c0cc2c0804d1b288f328b4300825f506bac055d03c44e0c31fac627356c49425bd5d3ce68f8d00000000000000000000006a91c5a800000000000000000000000000023dd5300000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000022b70d7300f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001544b7a800000022b70d7300000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000009393007439632e3f468cbbf3762187e478e398406859d528a318af9214b3ec440000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183b44f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004d00000000000000000000000000000000000000000000000000000000000000000000000000000001a80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc019835600000000000000016411b1a57bb288b897d3bb78ef534d565195946337b901895e703a1484687d0f602b2e3d0a780af984b7a57b8f3f6b10503e6d763e4e17937269739529409ef60000000003bd1aa5000000000000002ee2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001a80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc01983560000000000000002b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a80c6aa050b48ad2ce309b2a64681494460c5566a6ad7487d0d9213fc0198356000000000000000399f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a107b5fe67e6c662c8a7792ea40d0a608db3115b0aabcf91013240d61d95ffcda0000000003bd1aa5000000000000002eba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183a57f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001be38c23cf3c7384a05e95ec7648b0883e4baed7215a8de8f8aa499aa16ce1cbfb3f4279d97f68b1758de04db27f8ea8188c233472843a306abe4144f7ea46beb0000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000039474bd8668b20460e5acab07514bd1542864ee261f6f6a8895eec869c80ad3f181889957e4ffe03dc5d71257bce12cb0027810664f2abb91bf40be86c2dff8970000000000000040101db417dd60bfc8b2b5a75be1d3d69b311854755bdcb0ef4d7fda7f63c7fd1a66f56d7caec33070132d83c0d5f524ba218c56f07ec447cc21d9dcc89dcdd7e0", - "receiptsRoot": "0x0ab29d2d2628281057ba62bbf3cadc06427e0aee6a0e394abc7ccf23566ea2e2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009873816504f54c76c6ea2288a0bbed96a78e154fff6c6dae9c54c0cc2c0804d1b288f328b4300825f506bac055d03c44e0c31fac627356c49425bd5d3ce68f8d00000000000000000000006a91c5a800000000000000000000000000023dd5300000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000022b70d7300f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001544b7a800000022b70d73000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd530", - "digest": "0xf78d14e42b4452ca92c731230583daa02925deddaea0e48e3a00bb15bd1ed1cd", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd530", - "digest": "0xb4f45b4aad6f6ed15e18b7cda4358b035a2b3e40ccc52a288df4ad87017806ac", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd530", - "digest": "0xb4f45b4aad6f6ed15e18b7cda4358b035a2b3e40ccc52a288df4ad87017806ac", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "149100000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000054000000001544b7a8000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001000000000000000100000022b70d7300000000001544b7a8000000006a91c531", - "digest": "0x2214d9b65061d1f0d0d24c2a5fc109707a3c3ac8a089ffb02e1edded8f19e91e", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000054000000001544b7a800000000000000010000000000000001", - "digest": "0xdc8acc4b3dc93d39948874e4f05f05cfd01bacb35c5cf8db74f5148568329773", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126618", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136239", - "transactionId": "0xf8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d17164" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x101db417dd60bfc8b2b5a75be1d3d69b311854755bdcb0ef4d7fda7f63c7fd1a66f56d7caec33070132d83c0d5f524ba218c56f07ec447cc21d9dcc89dcdd7e0" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153977", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0048", - "utxoId": "0xe48fd205d6307ede88b4199e8cbd87499c8b062e241ad3fd1cfd3b83f6b5c2580000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbe38c23cf3c7384a05e95ec7648b0883e4baed7215a8de8f8aa499aa16ce1cbf", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x249e44b52f62331634c966a73b5bd5905337f935016d67403dc9fe4150ddbcf7", - "txPointer": "03bd1aa5002f", - "utxoId": "0xf8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d171640001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5002f", - "utxoId": "0xf8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d171640002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9474bd8668b20460e5acab07514bd1542864ee261f6f6a8895eec869c80ad3f1", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x47e20e2d695a6fdbba1b76952d7677d6dcf0596f5e2e4e2016607896735cd3c4", - "txPointer": "03bd1aa5002f", - "utxoId": "0xf8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d171640003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153759", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa667a7f48b52c3e3066a1fb980dd8745cdcf6ddbb154ea8fce9e95435550236d", - "inputIndex": "1", - "stateRoot": "0x2313a50c3b8e339b8889b997c0fb189c2dfb255a165aaa1edbb975ca5cc897b6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e", - "inputIndex": "3", - "stateRoot": "0x61a9af073c5efcc49199d2c63847d477dfec059752c388957e6afe2be72e3c62" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848019a41314d23e605319191aedfc9ba6fb20f3791414fc942a8e8c19b36492037b00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000db08f377a6b6744639ef9745c1b8528cb0a2acb019f92c47c65c35f0c8f6d83871dd2b9fde7085d52fe448b08b0e50ad425019e397b88425db6e89a91c7ea4f500000000000000000000006a91c5a800000000000000000000000000023dd52d0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000012cdd1f3a00f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154870c80000012cdd1f3a00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e48fd205d6307ede88b4199e8cbd87499c8b062e241ad3fd1cfd3b83f6b5c2580000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025979f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004800000000000000000000000000000000000000000000000000000000000000000000000000000001f8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d171640000000000000001be38c23cf3c7384a05e95ec7648b0883e4baed7215a8de8f8aa499aa16ce1cbf249e44b52f62331634c966a73b5bd5905337f935016d67403dc9fe4150ddbcf70000000003bd1aa5000000000000002fe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001f8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d171640000000000000002b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000002f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001f8fdb30542dba4fcf964bd6cbe35ef68fafc45c1b82a44a2f1f0eaeda3d1716400000000000000039474bd8668b20460e5acab07514bd1542864ee261f6f6a8895eec869c80ad3f147e20e2d695a6fdbba1b76952d7677d6dcf0596f5e2e4e2016607896735cd3c40000000003bd1aa5000000000000002fba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002589ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001a667a7f48b52c3e3066a1fb980dd8745cdcf6ddbb154ea8fce9e95435550236d2313a50c3b8e339b8889b997c0fb189c2dfb255a165aaa1edbb975ca5cc897b6000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003f870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e61a9af073c5efcc49199d2c63847d477dfec059752c388957e6afe2be72e3c620000000000000040039a9670385974a7d83b0af1c27bad67cc492e64e36e3312eab006bcdb72a2a1f7fb4a52d9dfa53000937062000ff800e307f76820cf7b3fb6d57d2b25942f24", - "receiptsRoot": "0x19a41314d23e605319191aedfc9ba6fb20f3791414fc942a8e8c19b36492037b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000db08f377a6b6744639ef9745c1b8528cb0a2acb019f92c47c65c35f0c8f6d83871dd2b9fde7085d52fe448b08b0e50ad425019e397b88425db6e89a91c7ea4f500000000000000000000006a91c5a800000000000000000000000000023dd52d0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000012cdd1f3a00f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154870c80000012cdd1f3a000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000023dd52d", - "digest": "0xdf96b0c969fcdad080022ef50737f67c94f846ee47d80d1049cb4184762561e6", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52d", - "digest": "0xd9bb1feda199b839674e9fc8c9c1996ad2abe2ad151e684b0e1d7bcb7f454386", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a800000000000000000000000000023dd52d", - "digest": "0xd9bb1feda199b839674e9fc8c9c1996ad2abe2ad151e684b0e1d7bcb7f454386", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1292200000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003f00000000154870c8000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000100000000000000010000012cdd1f3a0000000000154870c8000000006a91c531", - "digest": "0x3b6db2c47ba6b18dbe6123637e5229b20d62dfc25b0e5ec3034c5cb9a71d678e", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003f00000000154870c800000000000000010000000000000001", - "digest": "0xa6264bb815c86f3e8628f3b563a3386a408a2e06709e6a21c4fa8b5dc6c88b1c", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101046", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "115460", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "218", - "totalGas": "125081", - "transactionId": "0x5ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x039a9670385974a7d83b0af1c27bad67cc492e64e36e3312eab006bcdb72a2a1f7fb4a52d9dfa53000937062000ff800e307f76820cf7b3fb6d57d2b25942f24" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x92ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "148942", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f004f", - "utxoId": "0xd78743223bb96a28f744959d0e4835971ab67d2d0e6a99eb688c2ecfea38b26c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaa5367d3ed4cdccf56db66bf78d0426a77d506dca05eb60f7c7f3f54c60b4b11", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x485256b956771b284bcdbc8a31ae7d2c596c336da0592dc76193ee598144838e", - "txPointer": "03bd1aa5002c", - "utxoId": "0xc454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4d001b022a40263bee01ad369b50a8637bb332aa2a9839a329ec04517ff9a0e2", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x39de93f025504aa5b8d2986bf650d227297e4bb70d1a879fef4e803fc00af5b3", - "txPointer": "03bd1aa5002c", - "utxoId": "0xc454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50030", - "utxoId": "0x5ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "148701", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xdb8053b0519b5224a07ed9851d8f9f69050551c75c7b3bf0b90c866d8eedb2dc", - "inputIndex": "1", - "stateRoot": "0xe7e09ac2e3eb40c7549103f993670240cbbc22b7bae096f546c36d123f8ff6a6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x38ebb2703f670a385c4e57a781ad77f57bc37afe461a1a4083672a11b58df2d0", - "inputIndex": "2", - "stateRoot": "0xd60dfb7292675b99cd7a2641d9b0985e5db3f0aaaacf8a26d2343c03f7b10034" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809e2928745d1963b401a7a03402d0ca68f05eb6048b5434b79ad90ccc19963ff000000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f8abeab13ba16d93fccb0e063f946727ccd284cb5b23be6c58a82238386d19486672116495b8b446e0ab2d3c8e385346d1eeaab2efa9bd1b1d9c2ba6c75c1fbe00000000000000000000006a91c5a800000000000000000000000000024e03530000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000015e79ae007ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad1d1960000000015e79ae00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000d78743223bb96a28f744959d0e4835971ab67d2d0e6a99eb688c2ecfea38b26c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000245cef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004f00000000000000000000000000000000000000000000000000000000000000000000000000000001c454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e0000000000000002aa5367d3ed4cdccf56db66bf78d0426a77d506dca05eb60f7c7f3f54c60b4b11485256b956771b284bcdbc8a31ae7d2c596c336da0592dc76193ee598144838e0000000003bd1aa5000000000000002cf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001c454e0d430e78bccf8d0bf39a3ac70002536cd235cb441526318a92a5257f88e00000000000000034d001b022a40263bee01ad369b50a8637bb332aa2a9839a329ec04517ff9a0e239de93f025504aa5b8d2986bf650d227297e4bb70d1a879fef4e803fc00af5b30000000003bd1aa5000000000000002cc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000015ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000244ddf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001db8053b0519b5224a07ed9851d8f9f69050551c75c7b3bf0b90c866d8eedb2dce7e09ac2e3eb40c7549103f993670240cbbc22b7bae096f546c36d123f8ff6a60000000000000001000000000000000238ebb2703f670a385c4e57a781ad77f57bc37afe461a1a4083672a11b58df2d0d60dfb7292675b99cd7a2641d9b0985e5db3f0aaaacf8a26d2343c03f7b1003400000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040392bff0a20c75975e2ac47f8f2a93a3ad5ce3f7bbdb65004ea0add3bf5cb91ddd55ccebf079cc455a36587dddfeb56573f188a5cbd8552159568e819741a5a33", - "receiptsRoot": "0x9e2928745d1963b401a7a03402d0ca68f05eb6048b5434b79ad90ccc19963ff0", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f8abeab13ba16d93fccb0e063f946727ccd284cb5b23be6c58a82238386d19486672116495b8b446e0ab2d3c8e385346d1eeaab2efa9bd1b1d9c2ba6c75c1fbe00000000000000000000006a91c5a800000000000000000000000000024e03530000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000015e79ae007ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad1d1960000000015e79ae000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e0353", - "digest": "0x144fd5453ae10f53e805d69bc841395549ceb4a3fa75eab9bb12eb80f0af6bd8", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0353", - "digest": "0x6cbc96d23fc53106b4d739853dda67a65fd5f4659264d0230de85b5530d9841d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0353", - "digest": "0x6cbc96d23fc53106b4d739853dda67a65fd5f4659264d0230de85b5530d9841d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5880000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003000000002ad1d1960000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000010000000000000001000000015e79ae0000000002ad1d1960000000006a91c531", - "digest": "0x89475031c9f795994f06ec8b1146c31b44525e5b65a1ae1f453810618010f2bb", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003000000002ad1d196000000000000000010000000000000001", - "digest": "0x27152e080800e50db2bf9425de3dc75ddf8b2da45d4d711775e607d62c798f5d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099606", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128551", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138172", - "transactionId": "0x92ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x392bff0a20c75975e2ac47f8f2a93a3ad5ce3f7bbdb65004ea0add3bf5cb91ddd55ccebf079cc455a36587dddfeb56573f188a5cbd8552159568e819741a5a33" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e13", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1721636", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f004c", - "utxoId": "0x10b41712b71546527431b13ea86fb41a205d3b74f766476cb745bec2b4299bdf0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xad9abbb0c930359b450a531bdb3044e83765a993f4e1513350e682ef9a17256f", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x29b97299c637112d77a3f6736736226f6ef3f99fba9042fb40c89b4c7aa276a4", - "txPointer": "03bd1aa50031", - "utxoId": "0x92ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b40002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50031", - "utxoId": "0x92ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x74f498c63a30c149c5d0ea6a13ae002257110d79b27f8e5778d887782be9b1f2", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xcc1b98d31e91293eb88b02d21d6babb79024d5954a7e31553e3381ad262f5572", - "txPointer": "03bd1aa50031", - "utxoId": "0x92ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b40001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1721295", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfba4d3fff32983f9a4085fcf0dad6356fca560690e5fedf75b704b7a20d7f75f", - "inputIndex": "1", - "stateRoot": "0x04c3421ba9dd21b0a3e1fc5e3156816de398da5b31d6a7d0b34601cc79b301da" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x99b29288d795b72844b215582e4d1c37eb3032cad58444a67abdbe7cdde4feb7", - "inputIndex": "3", - "stateRoot": "0xadc3408ca09274e86186b168b27e46b814e31690da95c9201402a6c63768029c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802cc0d835f2555eb4ae54a60fff8d4594a97ce3c40844ec097aced02039cf264d000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a9f231f86b08c18e1cf0931bb016c21c9e369f34e0d5df1d64aed11d6f0b21d0573dd34123a37b3df09000371046af3e8f9b45ba1756f593fb6eac56df08368500000000000000000000006a91c5a800000000000000000000000000024e03520000000000000003f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000600000002aa0a0d0000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000213b4e6e146c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ab515a1000000002e613ec800000000000000001000000000000006400000000000210ac0000000003bd1aa9000000000000000010b41712b71546527431b13ea86fb41a205d3b74f766476cb745bec2b4299bdf0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4524f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004c0000000000000000000000000000000000000000000000000000000000000000000000000000000192ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b40000000000000002ad9abbb0c930359b450a531bdb3044e83765a993f4e1513350e682ef9a17256f29b97299c637112d77a3f6736736226f6ef3f99fba9042fb40c89b4c7aa276a40000000003bd1aa50000000000000031c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000192ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b4000000000000000302cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000192ca677c50d7a00ddd79fbb8d50048503ec6a5897a85b2ed158181b59f1f52b4000000000000000174f498c63a30c149c5d0ea6a13ae002257110d79b27f8e5778d887782be9b1f2cc1b98d31e91293eb88b02d21d6babb79024d5954a7e31553e3381ad262f55720000000003bd1aa50000000000000031f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a43cff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001fba4d3fff32983f9a4085fcf0dad6356fca560690e5fedf75b704b7a20d7f75f04c3421ba9dd21b0a3e1fc5e3156816de398da5b31d6a7d0b34601cc79b301da00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000399b29288d795b72844b215582e4d1c37eb3032cad58444a67abdbe7cdde4feb7adc3408ca09274e86186b168b27e46b814e31690da95c9201402a6c63768029c00000000000000401b41c1c0ae8f6a84238fe6cd39fcf9a9f5781c78e7199b307cf289accc31b85ea5fb4fce2578af4ba8dce3167aca5f4450572495166c52191697c090e11e73c2", - "receiptsRoot": "0x2cc0d835f2555eb4ae54a60fff8d4594a97ce3c40844ec097aced02039cf264d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a9f231f86b08c18e1cf0931bb016c21c9e369f34e0d5df1d64aed11d6f0b21d0573dd34123a37b3df09000371046af3e8f9b45ba1756f593fb6eac56df08368500000000000000000000006a91c5a800000000000000000000000000024e03520000000000000003f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000600000002aa0a0d0000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000213b4e6e146c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ab515a1000000002e613ec800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a800000000000000000000000000024e0352", - "digest": "0x9ea8fb64e7208745c4996d46b66c9ae4ac6e0415484f2b6beacd325683e77252", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0352", - "digest": "0x29470fd473bde3f28446500888b4380a2318194504b737838b52908f1adca454", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "157451827200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000600000002aa0a0d0000000000000000000000000000000001000000006a91c531", - "digest": "0x88f7b140cd7253cc293ce8441a3c5250e385825579f7861a606e0aa2c0896d95", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100858", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100233", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0352", - "digest": "0x29470fd473bde3f28446500888b4380a2318194504b737838b52908f1adca454", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100005", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1883691", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099533", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a800000000000000000000000000024e0352", - "digest": "0x29470fd473bde3f28446500888b4380a2318194504b737838b52908f1adca454", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099305", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "142728916500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1872286", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e00000002ab515a10000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000000000000000000000100000002e613ec8000000002ab515a10000000006a91c531", - "digest": "0x6cfc4ab4e105a65900ab46e0054e18c8259e68ed866163a6156e5038ead968e6", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097913", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e00000002ab515a1000000000000000000000000000000001", - "digest": "0x5cdc2cf0c9166f6ec951ec64903acd9017505d577038612f9c8a717a9eb55e0f", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67095353", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "185789", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "341", - "totalGas": "195617", - "transactionId": "0xe2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e13" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x1b41c1c0ae8f6a84238fe6cd39fcf9a9f5781c78e7199b307cf289accc31b85ea5fb4fce2578af4ba8dce3167aca5f4450572495166c52191697c090e11e73c2" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xbb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc17", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1589946", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f004e", - "utxoId": "0x6d2b9e1131c2c1f3b4a0abc0f1e1a2c3e2f4e322cef98522c6aab37f046ac4c70000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0ec81dcb3120dca60c3bde7a0b768a2ef8da1168e204ddfba10458fe62faab43", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x080d2a0ae2f962dd1c4db1de208f983f12fe01a6e66a594d0cf124d05dabf411", - "txPointer": "03bd1aa40061", - "utxoId": "0x8d9fd9f08d170a353bbc316e946001ca697ad3433fee091b29e9b0ba91b323a30002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd8cdc45ce6179ac2c275d5b52d8e609ccfc25efb832493cfd63b6f46ad66d25c", - "contractId": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "stateRoot": "0x1e9fcf15d22aec30bcb5f2f144bbba43147dee16afdb8a4363bb39bcfca641f3", - "txPointer": "03bd1aa40061", - "utxoId": "0x8d9fd9f08d170a353bbc316e946001ca697ad3433fee091b29e9b0ba91b323a30001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef4", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50032", - "utxoId": "0xe2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e130002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1589641", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x11ffdfc6ad7eb63302dc3fb4657804abc3b49bafba96bc002e5d93f1c1007dc6", - "inputIndex": "1", - "stateRoot": "0x062a3341981b10428d3eeae7a675f9e2ab4e89a3ed73d2eaade9620b20509884" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2ce52a9a46ed8f90d9127729105ff0a56119df5d90b7e025a565edeb22c8194c", - "inputIndex": "2", - "stateRoot": "0x3478fe82a3141de727a597939a9b4a65b5c39e7b100c2f7a8ba565aa1db20739" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848079245af16cf69380fdf0b7585508096fef52eccd20bdebd26cc954cdb488e4ba000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009bcd159a7172aa27be2b70deded40cad0affbdb2a13c6864f6cf5ae424d72fedd31cc43924f7e48cec63f2357ab1b24942d3548d0af528f98745440de24159a900000000000000000000006a91c5a8000000000000000000000000000224361e0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002a00000412324f9a0000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000000e359e78e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041297a38b00000000000e359e780000000000000003000000000000006400000000000210ac0000000003bd1aa900000000000000006d2b9e1131c2c1f3b4a0abc0f1e1a2c3e2f4e322cef98522c6aab37f046ac4c70000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001842baf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000004e000000000000000000000000000000000000000000000000000000000000000000000000000000018d9fd9f08d170a353bbc316e946001ca697ad3433fee091b29e9b0ba91b323a300000000000000020ec81dcb3120dca60c3bde7a0b768a2ef8da1168e204ddfba10458fe62faab43080d2a0ae2f962dd1c4db1de208f983f12fe01a6e66a594d0cf124d05dabf4110000000003bd1aa40000000000000061f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000018d9fd9f08d170a353bbc316e946001ca697ad3433fee091b29e9b0ba91b323a30000000000000001d8cdc45ce6179ac2c275d5b52d8e609ccfc25efb832493cfd63b6f46ad66d25c1e9fcf15d22aec30bcb5f2f144bbba43147dee16afdb8a4363bb39bcfca641f30000000003bd1aa400000000000000619e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b0000000000000001e2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e1300000000000000022644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef400000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000184189f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000111ffdfc6ad7eb63302dc3fb4657804abc3b49bafba96bc002e5d93f1c1007dc6062a3341981b10428d3eeae7a675f9e2ab4e89a3ed73d2eaade9620b20509884000000000000000100000000000000022ce52a9a46ed8f90d9127729105ff0a56119df5d90b7e025a565edeb22c8194c3478fe82a3141de727a597939a9b4a65b5c39e7b100c2f7a8ba565aa1db20739000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406147f9657597ff74d67e8553c900ead74f6619ef9e12d355e158f45d5e8f4cac539750c14614fa8aaf3b43468b319e239982907eaf929ba5fe8f3548531357d9", - "receiptsRoot": "0x79245af16cf69380fdf0b7585508096fef52eccd20bdebd26cc954cdb488e4ba", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009bcd159a7172aa27be2b70deded40cad0affbdb2a13c6864f6cf5ae424d72fedd31cc43924f7e48cec63f2357ab1b24942d3548d0af528f98745440de24159a900000000000000000000006a91c5a8000000000000000000000000000224361e0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002a00000412324f9a0000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000000e359e78e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041297a38b00000000000e359e780000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000224361e", - "digest": "0x2a26ea3dfb3ee0b2f412abd2c78720fbbc45ae827309f2fe43c5df6bbe6a3e89", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a8000000000000000000000000000224361e", - "digest": "0xf3d23e836cf2c22a8ccb9088eb59edd5fb9612f9dc3a5ee8c46938984b41d16a", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963079", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "189581000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "401592", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a00000412324f9a0000000000000000010000000000000003000000006a91c531", - "digest": "0x71da150fd96693cc2330674a1b8039529b3e87d3b8b7f56f545a58a685c08f49", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "395940", - "ptr": "67102250", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "373108", - "ptr": "67101625", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a8000000000000000000000000000224361e", - "digest": "0xf3d23e836cf2c22a8ccb9088eb59edd5fb9612f9dc3a5ee8c46938984b41d16a", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67101397", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1899176", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000000", - "digest": "0x71c2674e8d8b35ad161cfd1915bb382fb6b8209e2ef9dd0e5883ab0dbbce7a4b", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "455840", - "ptr": "67100925", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "368836", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a8000000000000000000000000000224361e", - "digest": "0xf3d23e836cf2c22a8ccb9088eb59edd5fb9612f9dc3a5ee8c46938984b41d16a", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100697", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "238395000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1887771", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000260000041297a38b000000000000000001000000000000000300000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000010000000000000003000000000e359e780000041297a38b00000000006a91c531", - "digest": "0x75b00f9ff69bedbbccf39ba23a8556b57caed84402376549d3fbff7342d95c55", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "426572", - "ptr": "67099305", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000260000041297a38b0000000000000000010000000000000003", - "digest": "0xa12ddba7f5cb5fd9f7bcb297deaf8d92f00c56a0151e6522f2b6b0fc8cd59b66", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "372804", - "ptr": "67097241", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "165524", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "305", - "totalGas": "175352", - "transactionId": "0xbb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc17" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6147f9657597ff74d67e8553c900ead74f6619ef9e12d355e158f45d5e8f4cac539750c14614fa8aaf3b43468b319e239982907eaf929ba5fe8f3548531357d9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d496", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1724770", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0050", - "utxoId": "0x29e586650d4dd1ef81da1302c2567772b61d4bade2785dc446246498d15cd2ae0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50033", - "utxoId": "0xbb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc170003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb6dc56546a244c85aeac17d96a539f9839070e97aaa943147146d92a8edb41c2", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x4995c13a836f5902014aa6c3294e49847e1fd4ff02d2a96119938f141e418d2d", - "txPointer": "03bd1aa50029", - "utxoId": "0xdb2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa411693282cda8585b3aa4bb88b3821f87b8ded1823d334f1cbc8bab9c3b36b2", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0xecdc4019632589bf2665eb4165580f9ac19953f6cc6dc34738eebbdc39787790", - "txPointer": "03bd1aa50029", - "utxoId": "0xdb2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1724225", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x52055f9b7e756dbb743383e1147a99f73207287854dbdb0037d030d4bec8fd6a", - "inputIndex": "2", - "stateRoot": "0x2b507baf21410d08832be3a3f996f38d2c80a1bece60110431c9ad315c16804c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4d2ae1c199e6926f99bf0e3953c7b378ec09a8dbf06dbe905ababe9d09e8e28e", - "inputIndex": "3", - "stateRoot": "0x3b505cab254ff63e6847a3b14898331882d7dedc121da2166d4e96352766f264" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b408c53e33c56e489beb327e1a1fc17357ce1054a78ab2ae92f37264fc43f4a2cb200000000000000180000000000000354000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bef894dfc9b0cc43575098c567edd5cff8c27978913c88675805da0b092002baca0edb37b296f91fc7492850e39ee218c0cad4eb3cce786052c093799b89cc1500000000000000000000006a91c5a8000000000000000000000000000a759e7f0000000000000004132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000041000046e19ae0a70000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000004c10102ff46c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e19ae0a70000000000003ff6380000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000000000265d7c1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e226f2ce800000000000265d7c000000000000000300000000000000000000006400000000000210ac0000000003bd1aa9000000000000000029e586650d4dd1ef81da1302c2567772b61d4bade2785dc446246498d15cd2ae0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a5162f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000001bb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc1700000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001db2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d0000000000000001b6dc56546a244c85aeac17d96a539f9839070e97aaa943147146d92a8edb41c24995c13a836f5902014aa6c3294e49847e1fd4ff02d2a96119938f141e418d2d0000000003bd1aa500000000000000299423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001db2cde8992e11d5aba69aef87928e88f9a3f8c1f569f845dd0dc096f550d613d0000000000000003a411693282cda8585b3aa4bb88b3821f87b8ded1823d334f1cbc8bab9c3b36b2ecdc4019632589bf2665eb4165580f9ac19953f6cc6dc34738eebbdc397877900000000003bd1aa50000000000000029132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4f41f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000252055f9b7e756dbb743383e1147a99f73207287854dbdb0037d030d4bec8fd6a2b507baf21410d08832be3a3f996f38d2c80a1bece60110431c9ad315c16804c000000000000000100000000000000034d2ae1c199e6926f99bf0e3953c7b378ec09a8dbf06dbe905ababe9d09e8e28e3b505cab254ff63e6847a3b14898331882d7dedc121da2166d4e96352766f2640000000000000040590123850cdb2cf75c6429cfcc87d14b867d7322a47672c030392d5390871790dc754a404e8642ea6c925aa199052e7ee8b56d36eac63804af954f2c634f17c4", - "receiptsRoot": "0x8c53e33c56e489beb327e1a1fc17357ce1054a78ab2ae92f37264fc43f4a2cb2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bef894dfc9b0cc43575098c567edd5cff8c27978913c88675805da0b092002baca0edb37b296f91fc7492850e39ee218c0cad4eb3cce786052c093799b89cc1500000000000000000000006a91c5a8000000000000000000000000000a759e7f0000000000000004132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000041000046e19ae0a70000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000004c10102ff46c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046e19ae0a70000000000003ff6380000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000000000265d7c1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e226f2ce800000000000265d7c0000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12912", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759e7f", - "digest": "0x8a4ba6b0881da5d1e93e64b34b9568ef2d988a81650ff3d3e5878619dd6b4a15", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147720", - "ptr": "67107526", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7f", - "digest": "0xd3b3af602d2e79bc6b0f89db797ad2a51cf2c7924240e4cb25bfdef12f829f2d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67105250", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4961301", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108172", - "param2": "67108140", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "261136067346", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409984", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000041000046e19ae0a70000000000000000000000000000000003000000006a91c531", - "digest": "0x11fe6c2497e3a998f79cd0a38507fb71ead78931eac6c4bccbcd78ac8e8f7d04", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404332", - "ptr": "67098898", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381500", - "ptr": "67098273", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7f", - "digest": "0xd3b3af602d2e79bc6b0f89db797ad2a51cf2c7924240e4cb25bfdef12f829f2d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67098045", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4868756", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108118", - "param2": "67108078", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464232", - "ptr": "67097125", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7f", - "digest": "0xd3b3af602d2e79bc6b0f89db797ad2a51cf2c7924240e4cb25bfdef12f829f2d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67096897", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "326687010804", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4856359", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108058", - "param2": "67108034", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000042000046e19ae0a7000000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000000000000000300000000003ff638000046e19ae0a700000000006a91c531", - "digest": "0x15190dad424abf3b118aa5ebc5c7cd064c4dc3ec12a32e57d4e1292000cb6900", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434964", - "ptr": "67095057", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000042000046e19ae0a70000000000000000000000000000000003", - "digest": "0xf0a873addca747793000d086d8342910340a0f38ace78fc0ea0d092520ecbe72", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381196", - "ptr": "67090241", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a8000000000000000000000000000a759e7f", - "digest": "0xd3b3af602d2e79bc6b0f89db797ad2a51cf2c7924240e4cb25bfdef12f829f2d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67090013", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2514300", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": "4776103", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108014", - "param2": "67107990", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000024000046e226f2ce800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000100000000000000030000000000265d7c000046e226f2ce80000000006a91c531", - "digest": "0x93ad9d5a994f3519ca6ca62a10fa8805efa67f46fb9481f21214622cbb1cc7b8", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434964", - "ptr": "67088173", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000024000046e226f2ce8000000000000000010000000000000003", - "digest": "0x9d81eed727518cd2778813565ad52c0e4a9dd4c9c46e9c88edf12122993d8edc", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306696", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381196", - "ptr": "67083741", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57524", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "303148", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "545", - "totalGas": "313183", - "transactionId": "0x2b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d496" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x590123850cdb2cf75c6429cfcc87d14b867d7322a47672c030392d5390871790dc754a404e8642ea6c925aa199052e7ee8b56d36eac63804af954f2c634f17c4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "159078", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0052", - "utxoId": "0x6cf1e23a10afa0bc9081cd028156f3c6053635aafd51ea434b502feb0fd6b9e10000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x82583fe7b29847c2514f9ef185df7950bd41e1f6ad5933782974bfac01c21328", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50034", - "utxoId": "0x2b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d4960001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xefb28c61bd7eaef45718b7b97b0ea09712188f3d3258937c806d3652dfb374be", - "contractId": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "stateRoot": "0xcdf8d479db9e500cbf028030c73342c168727f5490215ee8f9eaa9245f5e47cf", - "txPointer": "03bd1aa10043", - "utxoId": "0x8ec634b24f03491e26562f51114cfa20189c76ca36541b05f382d611c99d766a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xab46b37b8b38b35f7a601ca7eeebeb96e2263760afb086e1d3016b5c6f2a09e9", - "txPointer": "03bd1aa50030", - "utxoId": "0x5ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "158836", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xefb28c61bd7eaef45718b7b97b0ea09712188f3d3258937c806d3652dfb374be", - "inputIndex": "2", - "stateRoot": "0xb38723a4664a2a6884c0afd46adcba6cc1e7dd41568d6d91c8d86443baec45aa" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e", - "inputIndex": "3", - "stateRoot": "0x299c955e34b6cce1c913662dfadd4e07086ac4d9917d57138af8364bdb79744b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d274428fbe721cac6a00381160a1a1a68e8380888313eac0258fb42e0de4f90600000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad077393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bc140bdd13f34c439e6f0177d963fd80fcb018b4eed4177573734e01540c90d475bc7868e463465f8620ed3c9f5cfd459667c05d82783a2d067c323333a636aa00000000000000000000006a91c5a900000000000000000000000000000ddc0a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000caa7e200f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001544bf7800000000caa7e200000000000000000300000000000000000000006400000000000210ac0000000003bd1aa900000000000000006cf1e23a10afa0bc9081cd028156f3c6053635aafd51ea434b502feb0fd6b9e10000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026d66f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000052000000000000000000000000000000000000000000000000000000000000000000000000000000012b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d496000000000000000182583fe7b29847c2514f9ef185df7950bd41e1f6ad5933782974bfac01c2132800000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018ec634b24f03491e26562f51114cfa20189c76ca36541b05f382d611c99d766a0000000000000003efb28c61bd7eaef45718b7b97b0ea09712188f3d3258937c806d3652dfb374becdf8d479db9e500cbf028030c73342c168727f5490215ee8f9eaa9245f5e47cf0000000003bd1aa100000000000000437393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000000015ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e0000000000000003f870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8eab46b37b8b38b35f7a601ca7eeebeb96e2263760afb086e1d3016b5c6f2a09e90000000003bd1aa50000000000000030ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026c74f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002efb28c61bd7eaef45718b7b97b0ea09712188f3d3258937c806d3652dfb374beb38723a4664a2a6884c0afd46adcba6cc1e7dd41568d6d91c8d86443baec45aa00000000000000010000000000000003f870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e299c955e34b6cce1c913662dfadd4e07086ac4d9917d57138af8364bdb79744b00000000000000403cf88b9b634a5cd042a255efaa10151f864b746273efd1899ac176ab578cdf309d45acbb5625085c1a7895a1ea24b634825ef0d7c6d87e4d97c64843e2d35f96", - "receiptsRoot": "0xd274428fbe721cac6a00381160a1a1a68e8380888313eac0258fb42e0de4f906", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad077393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bc140bdd13f34c439e6f0177d963fd80fcb018b4eed4177573734e01540c90d475bc7868e463465f8620ed3c9f5cfd459667c05d82783a2d067c323333a636aa00000000000000000000006a91c5a900000000000000000000000000000ddc0a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000caa7e200f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001544bf7800000000caa7e2000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000000ddc0a", - "digest": "0xa221c56c8a46c03d3717dc06fcafcb2d1e41174560ec5780441f258d4043eec5", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b0c638ded9019780974b6d2313e7cb0f3b625d3a3c57c4e2a3d020e7a32f99e2ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000000ddc0a", - "digest": "0x4f07d9ad8ee5b80b90f91fd0342572c41e7d6ced5477e13d25cd083d4470cd22", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "3400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000caa7e2000000000000000000", - "digest": "0x53d7c2fb2765b84d879a4beb146763184fcfaaa2178d3d8132753e46b997982b", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b0c638ded9019780974b6d2313e7cb0f3b625d3a3c57c4e2a3d020e7a32f99e2ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000000ddc0a", - "digest": "0x4f07d9ad8ee5b80b90f91fd0342572c41e7d6ced5477e13d25cd083d4470cd22", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000000001544bf780000000000000001000000000000000300000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d0000000000000001000000000000000300000000caa7e200000000001544bf78000000006a91c531", - "digest": "0xedcf73dad4f6c3c050476410f25a949ee63aa3e2bd88d1e255fed008595020e5", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000000001544bf7800000000000000010000000000000003", - "digest": "0xf4379879976c880f666db634eac63765f4c6b75e614dfc6c090ff6b267cbe52b", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099926", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129527", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "242", - "totalGas": "139148", - "transactionId": "0x5e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3cf88b9b634a5cd042a255efaa10151f864b746273efd1899ac176ab578cdf309d45acbb5625085c1a7895a1ea24b634825ef0d7c6d87e4d97c64843e2d35f96" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f10694", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1716292", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0051", - "utxoId": "0x3531dd494d3aef8598bb244e9b7f30bf1d092beb2790e6072fb57f22dd5db9850000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x983acb07285fafab406132996afcdd8263f79ebc949bcbeb0d92a10d7dd8358a", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x2b8a30925c52cb17694867b06510afa54b8113f4c1aee83b4f31556ec743e389", - "txPointer": "03bd1aa50034", - "utxoId": "0x2b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d4960002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbae9c347c6e63489cf6857293abdd140e85c2286bab2ee4725df798c8001f0c7", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0xe05bba024d792369a7623a65e4bf2698d834305e0006123c6cfabaccbc860202", - "txPointer": "03bd1aa5000b", - "utxoId": "0xa35c6bf057569f0a9d27fec68401c7e0ef4162b051b15fd26b98ae0cfcb494710001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50035", - "utxoId": "0x5e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1715944", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8cedc73e575cb170e5569a19fc57a19489a30ac7db7323489db73d08cbef7220", - "inputIndex": "1", - "stateRoot": "0x2d9bb88ffd9846bd53039fd72106a5b703ad59c8006b769ef2f37ba2de6fa03a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5f76950beb40e8b9203cd4f3dffaee887088ca4eeb374c192204487606b9f50a", - "inputIndex": "2", - "stateRoot": "0xdfb8046ec722a2e75e1ea973071d0e86568c1cad2c95ce40f73b9b7461eae8ee" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b402e9e04e4aa0b8f839cde42a6b678d78c4deedb74dbc18b7a10001828a41b05aa000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000015d06c1923e2913ea6fe9b9dc2cedf35201e0c58a9c63b795fc34dcc48e36591177f5f9761e55cc83fdad33e8c05823cc92eca8d0b67b7cb2a1efbbf246601f500000000000000000000006a91c5a8000000000000000000000000000a759f000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000c400000000000cf69400000000000000000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f72646572000000050a00e9576c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cf69d0000172b5c535e000000000000000003000000000000006400000000000210ac0000000003bd1aa900000000000000003531dd494d3aef8598bb244e9b7f30bf1d092beb2790e6072fb57f22dd5db9850000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a3044f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000051000000000000000000000000000000000000000000000000000000000000000000000000000000012b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d4960000000000000002983acb07285fafab406132996afcdd8263f79ebc949bcbeb0d92a10d7dd8358a2b8a30925c52cb17694867b06510afa54b8113f4c1aee83b4f31556ec743e3890000000003bd1aa500000000000000349423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001a35c6bf057569f0a9d27fec68401c7e0ef4162b051b15fd26b98ae0cfcb494710000000000000001bae9c347c6e63489cf6857293abdd140e85c2286bab2ee4725df798c8001f0c7e05bba024d792369a7623a65e4bf2698d834305e0006123c6cfabaccbc8602020000000003bd1aa5000000000000000bdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000015e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe00000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a2ee8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018cedc73e575cb170e5569a19fc57a19489a30ac7db7323489db73d08cbef72202d9bb88ffd9846bd53039fd72106a5b703ad59c8006b769ef2f37ba2de6fa03a000000000000000100000000000000025f76950beb40e8b9203cd4f3dffaee887088ca4eeb374c192204487606b9f50adfb8046ec722a2e75e1ea973071d0e86568c1cad2c95ce40f73b9b7461eae8ee00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c41d62039530fe36ff70adbbd268a0bee7788716a7deac3125c4d433c1b585153f9799ac94a87ab1360c625121c4224aebf355aafe3ac5c7c30c3c3a3894810f", - "receiptsRoot": "0x2e9e04e4aa0b8f839cde42a6b678d78c4deedb74dbc18b7a10001828a41b05aa", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000015d06c1923e2913ea6fe9b9dc2cedf35201e0c58a9c63b795fc34dcc48e36591177f5f9761e55cc83fdad33e8c05823cc92eca8d0b67b7cb2a1efbbf246601f500000000000000000000006a91c5a8000000000000000000000000000a759f000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000c400000000000cf69400000000000000000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f72646572000000050a00e9576c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cf69d0000172b5c535e000000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000a759f00", - "digest": "0x38f09b93cf8c7be109b912e14b8ffc6864d1fcc75aa581ddc308782dab576d07", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000a759f00", - "digest": "0x954fcd3594132dc3dc8ae99ff2729799e04c7361448a058bb0137b219cf40a61", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962906", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "17294411492", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409832", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000c400000000000cf69400000000000000000000000000000003000000006a91c531", - "digest": "0xa67b34bf7a27c8189b4c99d60b00d67367cf73af1032a8accc500029ebe98ed5", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404180", - "ptr": "67100906", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381348", - "ptr": "67100281", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000a759f00", - "digest": "0x954fcd3594132dc3dc8ae99ff2729799e04c7361448a058bb0137b219cf40a61", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67100053", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4887429", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464080", - "ptr": "67099133", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377076", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a8000000000000000000000000000a759f00", - "digest": "0x954fcd3594132dc3dc8ae99ff2729799e04c7361448a058bb0137b219cf40a61", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67098905", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "21642668375", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4875154", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009d00000000000cf69d0000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000000000000000000030000172b5c535e0000000000000cf69d000000006a91c531", - "digest": "0xc608186310d7d689ae5ffc297f7476497e8e55e7841c2b5d43a0d2cd779cbbff", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434812", - "ptr": "67097065", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009d00000000000cf69d00000000000000000000000000000003", - "digest": "0xcec56340205d96cb050daebb8659f884293450954df71b96a4e1e91ce3ca467f", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381044", - "ptr": "67093561", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "190160", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "348", - "totalGas": "199988", - "transactionId": "0xc71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f10694" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc41d62039530fe36ff70adbbd268a0bee7788716a7deac3125c4d433c1b585153f9799ac94a87ab1360c625121c4224aebf355aafe3ac5c7c30c3c3a3894810f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1858470", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0053", - "utxoId": "0x681ec92020c8b63ff266a5907d2861efcc4cbbbfeda5ae84cb778abc874e96cc0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x97ac2b2383c070f6eb34cd79f687c9783b1482c54aecc990b4cbb3a59de2006f", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x8287862462216d976ad56d17461ed1a8097b3bc1477065e03c747a5df3cc3bfc", - "txPointer": "03bd1aa50035", - "utxoId": "0x5e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x83dfaabd428215ba7c936682bf2cc0d542d3c79ef7345e2e7984064f216d4d54", - "contractId": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "stateRoot": "0x96b43d800b5e5987e87cb0396f7f7b5c8d34d4612fd97e48ef0ab7934d513668", - "txPointer": "03bd1aa10046", - "utxoId": "0x210e7f3055b2e058f3607a53e77e148615b61d3657b01cd810a973d0d7f0fd350002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe5a0a6ed6d8747d301a98c92d619dfbabc8ec5ab00156971fa6503d2cf613273", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50036", - "utxoId": "0xc71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f106940003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1858272", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x54131a924a0eaf3da4622561a5e3075f4fb1e0b5eecbd364c10f24bc563e41cc", - "inputIndex": "1", - "stateRoot": "0xbdb97cae92a51fb86360dda2dd87af4e15c978838af7b3ce0c17aeafdae86cef" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb29c11c1be76ca05825ca52608f9c2bef1adadb15ec6d989534361daf2f2910f", - "inputIndex": "2", - "stateRoot": "0xe261cea420c0c1e091372500f4c8cab9d00d608c66c1467295dd4af593832ead" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480715c8fe49155cf688e2bf6e9ca8cfa2bafd9b95e26c0e4b6d06e09a7fd7d42b600000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0739cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a8900000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000df712331cd06f74fa03b7c65bac63133eb388790ddec22c5367002f4b961a9719d7decce3d6b0ae41fcb7f565d8f5a8fe065cdec7716d42325c2cbe47beb91200000000000000000000006a91c5a900000000000000000000000000000dd94c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000485024986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000001544bf7800000000caa7e200000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000681ec92020c8b63ff266a5907d2861efcc4cbbbfeda5ae84cb778abc874e96cc0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c5ba6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000053000000000000000000000000000000000000000000000000000000000000000000000000000000015e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe000000000000000397ac2b2383c070f6eb34cd79f687c9783b1482c54aecc990b4cbb3a59de2006f8287862462216d976ad56d17461ed1a8097b3bc1477065e03c747a5df3cc3bfc0000000003bd1aa50000000000000035ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000001210e7f3055b2e058f3607a53e77e148615b61d3657b01cd810a973d0d7f0fd35000000000000000283dfaabd428215ba7c936682bf2cc0d542d3c79ef7345e2e7984064f216d4d5496b43d800b5e5987e87cb0396f7f7b5c8d34d4612fd97e48ef0ab7934d5136680000000003bd1aa1000000000000004639cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a890000000000000001c71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f106940000000000000003e5a0a6ed6d8747d301a98c92d619dfbabc8ec5ab00156971fa6503d2cf61327300000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c5ae0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000154131a924a0eaf3da4622561a5e3075f4fb1e0b5eecbd364c10f24bc563e41ccbdb97cae92a51fb86360dda2dd87af4e15c978838af7b3ce0c17aeafdae86cef00000000000000010000000000000002b29c11c1be76ca05825ca52608f9c2bef1adadb15ec6d989534361daf2f2910fe261cea420c0c1e091372500f4c8cab9d00d608c66c1467295dd4af593832ead0000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004007e5d098b4eb0de561c6d112a446c7d7c436511f6ad8715355f0683c58c81c8bba867f0b7d175c23079cd674c913db8de7fbaadb8a61cfe34c5b8e57fe9b74af", - "receiptsRoot": "0x715c8fe49155cf688e2bf6e9ca8cfa2bafd9b95e26c0e4b6d06e09a7fd7d42b6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0739cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a8900000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000df712331cd06f74fa03b7c65bac63133eb388790ddec22c5367002f4b961a9719d7decce3d6b0ae41fcb7f565d8f5a8fe065cdec7716d42325c2cbe47beb91200000000000000000000006a91c5a900000000000000000000000000000dd94c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000485024986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000001544bf7800000000caa7e2000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000000dd94c", - "digest": "0xf2fbaea5b5e59fa67756d397168b31ef5ad5140757689d7f1df5669d8967c5dc", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000069962080a316af926a8a969477fff533d8495d85bbf7900d2f68eaa58b87aebbba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000000dd94c", - "digest": "0xa1843f31615832dc1e7c4275b2171b3a47c96db314c02b9fa6f0444845554ca0", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "1212730115", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a890000000000000000000000004848cb03", - "digest": "0x9d9a40b3ce245fe12325518eb13f5bf7f1b345610fafa7074bdbe24d44395d57", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000069962080a316af926a8a969477fff533d8495d85bbf7900d2f68eaa58b87aebbba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000000dd94c", - "digest": "0xa1843f31615832dc1e7c4275b2171b3a47c96db314c02b9fa6f0444845554ca0", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1213211800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000052000000001544bf7800000000000000000000000000000001000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a890000000000000000000000000000000100000000caa7e200000000001544bf78000000006a91c531", - "digest": "0x5bf94a1f265c6823fb91d3fd899d135e341ffc1441a5cdf02cd91f76afcc0cc8", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000054000000001544b7a8000000000000000100000000000000010000000000000052000000001544bf780000000000000000000000000000000100000000caa7e200000000001544b7a8000000006a91c531", - "digest": "0x5dc85381a712548db453ad6be779d23da73bba2d389d69c56e7fbf93ca9426e6", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000530200000000000000000", - "digest": "0xbefef872ccb5059ae6ca121d93967198cd16ca826eafa7f97f9dbe8774979833", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67102606", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "6800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000052000000001544bf7800000000000000000000000000000001", - "digest": "0xe834a1b0722c46b884501fb33d6bd7ccba59a8d4ebaaac3e47e71327eca84a34", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101646", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "104168", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "198", - "totalGas": "113789", - "transactionId": "0x963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x07e5d098b4eb0de561c6d112a446c7d7c436511f6ad8715355f0683c58c81c8bba867f0b7d175c23079cd674c913db8de7fbaadb8a61cfe34c5b8e57fe9b74af" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d0", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "170733", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0054", - "utxoId": "0x6f59a5469faaddafd839b79be744b03093378b716e2e31ceb89c4df51e579e720000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50037", - "utxoId": "0x963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x8390c00d0b34dfc8279cae37e1bdd06b20fc0ae636a871f898a4612a03708c2e", - "txPointer": "03bd1aa50034", - "utxoId": "0x2b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d4960003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x03b454dfcbf80aef3cb7ade940e71ac1b66aa5f79787219bbe6552d4908fcf7e", - "txPointer": "03bd1aa50036", - "utxoId": "0xc71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f106940001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "170610", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0xa121d8b1b8d548a7318a573e2fd839e2e20aeaaa74f5d5635e2f195e3878bb10" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0xf4345ee40a1918a529caee03317ca4a14f0d90e34fa9cac36e25ba6f227e6a8f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40839f7e66c63b00fedb2015d75760fdbe2c82fe328c363eb0ad079dcd886583670000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000acdc042d072e4698b2dd22e58106844e593dda2506a526653e18d2d4aa7aa8ba30e52985212772243c6b393427a13aa3aa509b3215fefa8bd798021b79132a2400000000000000000000006a91c5a9000000000000000000000000000a759f010000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000041000046e19ae0a70000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aa900000000000000006f59a5469faaddafd839b79be744b03093378b716e2e31ceb89c4df51e579e720000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029aedf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005400000000000000000000000000000000000000000000000000000000000000000000000000000001963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000012b6e92386b275502b886c5551c7fcc9425a3401d04fb3938f583c6b8ba32d496000000000000000300000000000000000000000000000000000000000000000000000000000000008390c00d0b34dfc8279cae37e1bdd06b20fc0ae636a871f898a4612a03708c2e0000000003bd1aa50000000000000034132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000001c71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f106940000000000000001000000000000000000000000000000000000000000000000000000000000000003b454dfcbf80aef3cb7ade940e71ac1b66aa5f79787219bbe6552d4908fcf7e0000000003bd1aa500000000000000369423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029a72f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000a121d8b1b8d548a7318a573e2fd839e2e20aeaaa74f5d5635e2f195e3878bb10000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000f4345ee40a1918a529caee03317ca4a14f0d90e34fa9cac36e25ba6f227e6a8f0000000000000040ac7f034e544f52e429468fe8e8debb4a89658e4993d46d6b1c1723faf938e0c2bb89f54ee3a85a9c3562b56af7be664b5155a7a32cbbaa9b6269867cec14cd42", - "receiptsRoot": "0x839f7e66c63b00fedb2015d75760fdbe2c82fe328c363eb0ad079dcd88658367", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000acdc042d072e4698b2dd22e58106844e593dda2506a526653e18d2d4aa7aa8ba30e52985212772243c6b393427a13aa3aa509b3215fefa8bd798021b79132a2400000000000000000000006a91c5a9000000000000000000000000000a759f010000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000041000046e19ae0a70000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000a759f01", - "digest": "0x91de24edc702e59baf8efc7b0042f15dd167abac125186e0aee039772ed18c24", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f01", - "digest": "0x59ddce971ffd9c1c6798341bf50f09d1cd013703ee64e3064f707d6f45e20967", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964602", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381204", - "ptr": "67105041", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f01", - "digest": "0x59ddce971ffd9c1c6798341bf50f09d1cd013703ee64e3064f707d6f45e20967", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67104813", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4948910", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463936", - "ptr": "67103893", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376932", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "61077", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "123", - "totalGas": "70709", - "transactionId": "0xb2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d0" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xac7f034e544f52e429468fe8e8debb4a89658e4993d46d6b1c1723faf938e0c2bb89f54ee3a85a9c3562b56af7be664b5155a7a32cbbaa9b6269867cec14cd42" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c092", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2001607", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0055", - "utxoId": "0x302c5ed936c73439db1e6bc545a3a71783fc7955ef2ce65c8c5e2dafbb2ff3a70000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0081800b53bff2d9e77ed85ecc39b2265ddff72f356249a88483393ea56c9eb2", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x947f285c089abfe7cce01901bbcbf02fb912003833286c8f8c9793565f90594a", - "txPointer": "03bd1aa50038", - "utxoId": "0xb2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d00002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x75151cdf7123d508be0aa2d2ba5e0d96bf6040a509f3ff3032180371b45b8168", - "contractId": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "stateRoot": "0x1841810ff42b81d7ff4371918c0be201f357c8c3183994fe9b85855ac3a4e57f", - "txPointer": "03bd1aa40079", - "utxoId": "0xfbf126e28e116345db94943370ee99176892d2d9a8ec5a5f112118c9719bcea30002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdb0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50038", - "utxoId": "0xb2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d00001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2001249", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x40ca3228edb9cacb572dadd81dac02c325ba8b8fc9a253384df3dbf8233a29bf", - "inputIndex": "1", - "stateRoot": "0x9740b8710d8f248a216c4d0cd16d6f00916aadc18b66e7200eec4fcfb79d977e" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x41278d6b1504cd605e8719f7f9403a3d7c3e87e1776cdeeb38569956242b1ce0", - "inputIndex": "2", - "stateRoot": "0x3e1a479ec7ae403b9b759354dbff66e29ddfadbc59a37b602659decb8f3b1323" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480718e55af0264bcf3b40bc65c18acd34f86e1b3a12eeae331cffca4e3f7c83082000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d27f2bd6cb0c0c9cc0cb6d90520bc5c54dcc8949e624158cafd76240fae0e3ae21a4cddb5e18bdc0def628d8bf3574e107337377af9ba73e915f5c0e4d07b72b00000000000000000000006a91c5a900000000000000000000000000029da72c0000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000034000046e84856b90000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000007508f01a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046eb2e6aa58000000000007508f00000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000302c5ed936c73439db1e6bc545a3a71783fc7955ef2ce65c8c5e2dafbb2ff3a70000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001e8ac7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005500000000000000000000000000000000000000000000000000000000000000000000000000000001b2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d000000000000000020081800b53bff2d9e77ed85ecc39b2265ddff72f356249a88483393ea56c9eb2947f285c089abfe7cce01901bbcbf02fb912003833286c8f8c9793565f90594a0000000003bd1aa50000000000000038132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000001fbf126e28e116345db94943370ee99176892d2d9a8ec5a5f112118c9719bcea3000000000000000275151cdf7123d508be0aa2d2ba5e0d96bf6040a509f3ff3032180371b45b81681841810ff42b81d7ff4371918c0be201f357c8c3183994fe9b85855ac3a4e57f0000000003bd1aa40000000000000079e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a0000000000000001b2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d00000000000000001db0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001e8961f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000140ca3228edb9cacb572dadd81dac02c325ba8b8fc9a253384df3dbf8233a29bf9740b8710d8f248a216c4d0cd16d6f00916aadc18b66e7200eec4fcfb79d977e0000000000000001000000000000000241278d6b1504cd605e8719f7f9403a3d7c3e87e1776cdeeb38569956242b1ce03e1a479ec7ae403b9b759354dbff66e29ddfadbc59a37b602659decb8f3b132300000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c59e18305315265729e055625fca3f89c2ac3a105cf61419078ce406821a69fb1ceea9ee7e1338d4f841e2df0d5a4d3652d8e4f6d7a02e33048d97eed644a5c2", - "receiptsRoot": "0x718e55af0264bcf3b40bc65c18acd34f86e1b3a12eeae331cffca4e3f7c83082", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d27f2bd6cb0c0c9cc0cb6d90520bc5c54dcc8949e624158cafd76240fae0e3ae21a4cddb5e18bdc0def628d8bf3574e107337377af9ba73e915f5c0e4d07b72b00000000000000000000006a91c5a900000000000000000000000000029da72c0000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000034000046e84856b90000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000007508f01a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046eb2e6aa58000000000007508f00000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000029da72c", - "digest": "0xc61c30f01edb7006302216d664a5ea6d72019cd5dfb84c4e2da5cddc84cbcffd", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72c", - "digest": "0x705be1537336c7969d254395196fd8874b6c833c573992f8310e63c891ee541a", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "6916000", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000046e84856b90000000000000000010000000000000003000000006a91c531", - "digest": "0x65484072d1bdc76411a55421831698b764650d9fcf1388a06eec101af17afe65", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67100306", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099681", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72c", - "digest": "0x705be1537336c7969d254395196fd8874b6c833c573992f8310e63c891ee541a", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099453", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879931", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000000", - "digest": "0x60ac9d69fe81ca4d4e5a181ff68c21eb015cb5f23c223d4ce6423a6dee90aab2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67098533", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72c", - "digest": "0x705be1537336c7969d254395196fd8874b6c833c573992f8310e63c891ee541a", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098305", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "7670000", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": "1867657", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000009000046eb2e6aa580000000000000000100000000000000030000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a0000000000000001000000000000000300000000007508f0000046eb2e6aa580000000006a91c531", - "digest": "0x90dea3688b394ff9ff051ec7aa0c8fe289451b957852c9d7b6db48d1f45f7da3", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67096465", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000009000046eb2e6aa58000000000000000010000000000000003", - "digest": "0xd400cb76323b86df502fb23c6317c4a67d8c2d199c9ad2ad9a7814b769ac6ea4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67093345", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "195992", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "358", - "totalGas": "205820", - "transactionId": "0x2be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c092" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc59e18305315265729e055625fca3f89c2ac3a105cf61419078ce406821a69fb1ceea9ee7e1338d4f841e2df0d5a4d3652d8e4f6d7a02e33048d97eed644a5c2" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x51b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f29", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1739329", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0056", - "utxoId": "0x2c0cec4f0c7286ca20f8582c2c93f738adbca134780710ed742c988d705066150000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50039", - "utxoId": "0x2be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c0920003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xefb28c61bd7eaef45718b7b97b0ea09712188f3d3258937c806d3652dfb374be", - "contractId": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "stateRoot": "0x8c8299648214a5dd013a015e48efa77d7b81f5f4315e55f317fa86f730d01595", - "txPointer": "03bd1aa50035", - "utxoId": "0x5e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x15bd3740c653ad29c9cf72a5c4474a76b1d46b0bb0290d3042f14053e85276af", - "txPointer": "03bd1aa50037", - "utxoId": "0x963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1739124", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6b514d8268c1805ab720af99299d68f8cbc3f67b78b87be3451b9618b560c2d4", - "inputIndex": "2", - "stateRoot": "0x72dbe4141d77d552875483f30846d4241c4e26dc9cb171b356983564fae31261" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8cc084a933f12972ae2b7dc434f89e9a23d5b49457d10bb293afa6ae95430236", - "inputIndex": "3", - "stateRoot": "0x30fb6805ed51287819e7cc73db18c7ab8897696bd888cf3e230cc0370c6e8a4d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808e5c79a1df8bf4507c4b0bd84afbabf8e08ae63ac9cebd44a65ef3a00776002800000000000000180000000000000186000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad077393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008a3f6058b44c409cfc6b04c75507a17a2a100c02a976f61194879854a38a52727140a6af55be2fe15b916180e5a180af36dad9249b13c48d87ccda9fb0efe37f00000000000000000000006a91c5a900000000000000000000000000000ddc0b0000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000034000000001544bf78000000000000000100000000000000030000000000000000006400000000000210ac0000000003bd1aa900000000000000002c0cec4f0c7286ca20f8582c2c93f738adbca134780710ed742c988d705066150000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a8a41f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000056000000000000000000000000000000000000000000000000000000000000000000000000000000012be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c0920000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015e1581fac3a48e4809355320dfeebfa46a53799eaf918b7d44c6abeb73497cfe0000000000000002efb28c61bd7eaef45718b7b97b0ea09712188f3d3258937c806d3652dfb374be8c8299648214a5dd013a015e48efa77d7b81f5f4315e55f317fa86f730d015950000000003bd1aa500000000000000357393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d0000000000000001963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb0000000000000001f870db0b4dbb46f6aa5f411a7efeed9addc1aa4ba2be08a517e5e6b21c330d8e15bd3740c653ad29c9cf72a5c4474a76b1d46b0bb0290d3042f14053e85276af0000000003bd1aa50000000000000037ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a8974f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000026b514d8268c1805ab720af99299d68f8cbc3f67b78b87be3451b9618b560c2d472dbe4141d77d552875483f30846d4241c4e26dc9cb171b356983564fae31261000000000000000100000000000000038cc084a933f12972ae2b7dc434f89e9a23d5b49457d10bb293afa6ae9543023630fb6805ed51287819e7cc73db18c7ab8897696bd888cf3e230cc0370c6e8a4d0000000000000040fb2dd9eb253d91479c4c68c00ed5c381725d00ed375e443cb4bc7fd1db9a48816b48e22a42b194b39f3dae44e3cacff8be935efb915540fa4092e0707ce7a948", - "receiptsRoot": "0x8e5c79a1df8bf4507c4b0bd84afbabf8e08ae63ac9cebd44a65ef3a007760028", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad077393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008a3f6058b44c409cfc6b04c75507a17a2a100c02a976f61194879854a38a52727140a6af55be2fe15b916180e5a180af36dad9249b13c48d87ccda9fb0efe37f00000000000000000000006a91c5a900000000000000000000000000000ddc0b0000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000034000000001544bf7800000000000000010000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12448", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12448", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000000ddc0b", - "digest": "0x6ce9827d8b9ca71e1ff46cf584fb842b540c7a3d3af697cd0dd0d40f8d1c0792", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12448", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147216", - "ptr": "67108084", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b0c638ded9019780974b6d2313e7cb0f3b625d3a3c57c4e2a3d020e7a32f99e2ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000000ddc0b", - "digest": "0x6e3fb3899f90945a0307f83d1fbb3066134c0946413be57c2f6fbe368de3cff3", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12448", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "165984", - "ptr": "67106270", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1966280", - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "306192", - "len": null, - "nonce": null, - "param1": "67108580", - "param2": "67108548", - "pc": "306192", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "3400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306192", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "407872", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000000001544bf7800000000000000010000000000000003000000006a91c531", - "digest": "0x914e0029d51b16fb184eaf89dfd29fdda81c2da2e69f1aee2462e7f903c66805", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306192", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402220", - "ptr": "67101686", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306192", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379388", - "ptr": "67101061", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12448", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57020", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "108416", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "205", - "totalGas": "117820", - "transactionId": "0x51b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f29" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xfb2dd9eb253d91479c4c68c00ed5c381725d00ed375e443cb4bc7fd1db9a48816b48e22a42b194b39f3dae44e3cacff8be935efb915540fa4092e0707ce7a948" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "556175", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0058", - "utxoId": "0x400012939cfc67b8259dd7c39add15f59d6cd0eb48e4e9ebb7420efd4dd0931e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5003a", - "utxoId": "0x51b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f290001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd0741a04c4155a0bf5c0c4770167cbeab862f6e78e849817290263ca18eae861", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xbfebde0b4bb4c9b7b3747bf35a6ed31b7dd968d1345a7f55a900d18375bcb3ae", - "txPointer": "03bd1aa5000c", - "utxoId": "0x646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe8d566dd210943ff089320650fd14e262abd45968c321fb4745f83c50b846a5c", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x6af16d95bf0f98365d7fcd6b718b9640d98639894f604af5d586ab51713a5cfa", - "txPointer": "03bd1aa5000c", - "utxoId": "0x646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "555926", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe7dc2f873fccab9cd4cf6f3d81798dd79538fff89c8bef9e5ffc39e8d1e64925", - "inputIndex": "2", - "stateRoot": "0x32228db554f11d7c03858385112b77231635c66c53ce521c87f13f1cca523498" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5be93bb7406b7637c4380916458fe5c832a72d8668ddea8de1c43ee323456d72", - "inputIndex": "3", - "stateRoot": "0xfeb045ba0a3983d299f37ad37db98b18f5f1a1ac7b454e4261064e366ae0128a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480bce636d720383d31625b72668696fe37e5f05e78b378da42f832356694e2b1620000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d98c75d231186c15c7e345dcb9a252711fe99e9d1111a857eede293dc54977084fe2021f2a133c897a408814c750ada0a303f61c38622d7a8e6945ee701d3fd800000000000000000000006a91c5a9000000000000000000000000000313566600000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000001c90832c80000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000400012939cfc67b8259dd7c39add15f59d6cd0eb48e4e9ebb7420efd4dd0931e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000087c8ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000580000000000000000000000000000000000000000000000000000000000000000000000000000000151b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f290000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf0000000000000001d0741a04c4155a0bf5c0c4770167cbeab862f6e78e849817290263ca18eae861bfebde0b4bb4c9b7b3747bf35a6ed31b7dd968d1345a7f55a900d18375bcb3ae0000000003bd1aa5000000000000000c8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001646d58548917e808ff54b7c96f6b2f3fa1be41b27d0c38ace77b20889fb49fdf0000000000000002e8d566dd210943ff089320650fd14e262abd45968c321fb4745f83c50b846a5c6af16d95bf0f98365d7fcd6b718b9640d98639894f604af5d586ab51713a5cfa0000000003bd1aa5000000000000000cc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000087b96f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e7dc2f873fccab9cd4cf6f3d81798dd79538fff89c8bef9e5ffc39e8d1e6492532228db554f11d7c03858385112b77231635c66c53ce521c87f13f1cca523498000000000000000100000000000000035be93bb7406b7637c4380916458fe5c832a72d8668ddea8de1c43ee323456d72feb045ba0a3983d299f37ad37db98b18f5f1a1ac7b454e4261064e366ae0128a0000000000000040d0cc5c1207ec2f5c34865f86eb1dc70dc28c020bae4278a2f99361587c13e7ecbeacf8deb717ca87e9c631dbd133786ec52c3722e09c9b47be5e69a53f9c6676", - "receiptsRoot": "0xbce636d720383d31625b72668696fe37e5f05e78b378da42f832356694e2b162", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d98c75d231186c15c7e345dcb9a252711fe99e9d1111a857eede293dc54977084fe2021f2a133c897a408814c750ada0a303f61c38622d7a8e6945ee701d3fd800000000000000000000006a91c5a9000000000000000000000000000313566600000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000001c90832c80000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135666", - "digest": "0xa8def9974a98efc1e1fc8bf20a2f6beac96455663a7ff662d90139dc9637aad1", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135666", - "digest": "0xdb5ec2acdf12a6ee17026cbfb2d0c0e4afe2fead2e43438aaec9b96abf137532", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "373080827600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000001c90832c8000000000000000000000000000000001000000006a91c531", - "digest": "0xb85019e60d30d2dfef21892e0f9cfdf97e72611491b29a3c53d98d28b090f7f8", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100778", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100153", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135666", - "digest": "0xdb5ec2acdf12a6ee17026cbfb2d0c0e4afe2fead2e43438aaec9b96abf137532", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099925", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875009", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099453", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133427", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "143059", - "transactionId": "0x0aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd0cc5c1207ec2f5c34865f86eb1dc70dc28c020bae4278a2f99361587c13e7ecbeacf8deb717ca87e9c631dbd133786ec52c3722e09c9b47be5e69a53f9c6676" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1731402", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0057", - "utxoId": "0x48f4845f8894f7315e510a23708ab89823800653b41fdaeba509de93afa64f460000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe7dc2f873fccab9cd4cf6f3d81798dd79538fff89c8bef9e5ffc39e8d1e64925", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x0f9cd5c4d680d332bda4b5b1cd6ca070022df48cbca5777268dd86d6ed9a4e6a", - "txPointer": "03bd1aa5003b", - "utxoId": "0x0aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5be93bb7406b7637c4380916458fe5c832a72d8668ddea8de1c43ee323456d72", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x7451a4dc20756727827fde179297b93fc9b439b7f7bfc0e6069853d57f34bf4f", - "txPointer": "03bd1aa5003b", - "utxoId": "0x0aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5003b", - "utxoId": "0x0aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1731169", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5777dcff2fd1983ede47ed95b91916f3a22ad6e3843df2c37d8db530e3e58bff", - "inputIndex": "1", - "stateRoot": "0xf450149175d206b096e545ae251131d0d017a57a8ecd45c42e98878e71d52dae" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x26b4b12a1611c901f3f16f8538fde111095e23f38d2d234cfda5ace55f8b2bf9", - "inputIndex": "2", - "stateRoot": "0xd308f0a2c149f0e6ee27fcb490e5d1f4f08874e04ee429fc87b31b524a592c69" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480a4828fb6e2bdefe242a3aeebfc350173a0b34392f9a248759ca0adf31a4b6d750000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000022899457017b43c2799964e7beabb4096d1298ef76b06fff7d655e31e5005cb90e4de3cc8f8ccd1e5a46e359e06ff98c40211c65b26c9eff32c045fec4eaeff800000000000000000000006a91c5a9000000000000000000000000000313566500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000110000001c926b7480000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa9000000000000000048f4845f8894f7315e510a23708ab89823800653b41fdaeba509de93afa64f460000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6b4af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000057000000000000000000000000000000000000000000000000000000000000000000000000000000010aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c0000000000000002e7dc2f873fccab9cd4cf6f3d81798dd79538fff89c8bef9e5ffc39e8d1e649250f9cd5c4d680d332bda4b5b1cd6ca070022df48cbca5777268dd86d6ed9a4e6a0000000003bd1aa5000000000000003b8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000010aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c00000000000000035be93bb7406b7637c4380916458fe5c832a72d8668ddea8de1c43ee323456d727451a4dc20756727827fde179297b93fc9b439b7f7bfc0e6069853d57f34bf4f0000000003bd1aa5000000000000003bc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000010aef67b533ed78e4e651c93158a5fca34abfb2269f4dd069442b54b75ecbea2c0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6a61f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000015777dcff2fd1983ede47ed95b91916f3a22ad6e3843df2c37d8db530e3e58bfff450149175d206b096e545ae251131d0d017a57a8ecd45c42e98878e71d52dae0000000000000001000000000000000226b4b12a1611c901f3f16f8538fde111095e23f38d2d234cfda5ace55f8b2bf9d308f0a2c149f0e6ee27fcb490e5d1f4f08874e04ee429fc87b31b524a592c6900000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f72b80e18f5a297b988b8bc577daa6e0f668bb47e94c0729df813548e09e6650791f0127027bf1336a416b80fbcb1c0650160c3cc1cb14af14f791868d97c403", - "receiptsRoot": "0xa4828fb6e2bdefe242a3aeebfc350173a0b34392f9a248759ca0adf31a4b6d75", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000022899457017b43c2799964e7beabb4096d1298ef76b06fff7d655e31e5005cb90e4de3cc8f8ccd1e5a46e359e06ff98c40211c65b26c9eff32c045fec4eaeff800000000000000000000006a91c5a9000000000000000000000000000313566500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000110000001c926b7480000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135665", - "digest": "0xc0b421c620705cbc551f875b84fdcfd5e03111e71c1141b464aa76cd5794c71a", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135665", - "digest": "0xba0181b264b2576df08ef3d45b238206bb08aba68f6c5359b1c029a120993fcc", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1381041362400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000110000001c926b748000000000000000000000000000000001000000006a91c531", - "digest": "0x020f612fbfa280e2b1b2d13aec8e30305dc4f92c7aba7ed339c47beb4d66391d", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101338", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100713", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135665", - "digest": "0xba0181b264b2576df08ef3d45b238206bb08aba68f6c5359b1c029a120993fcc", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100485", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884539", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100013", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123897", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "233", - "totalGas": "133529", - "transactionId": "0xd0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf72b80e18f5a297b988b8bc577daa6e0f668bb47e94c0729df813548e09e6650791f0127027bf1336a416b80fbcb1c0650160c3cc1cb14af14f791868d97c403" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc2", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1733895", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0059", - "utxoId": "0x7793ac34f50012e770fa3bafc4bfe49fc7794902d391a4568ff7e308f9cd022b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x96f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6f", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0x9b8b831e8c6411e2348ea41e497e5ba652e287ce32ac7b6cbef3c3643953173a", - "txPointer": "03bd1aa50027", - "utxoId": "0x6cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b50002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaf5c1c32558a4942d095dd486b1240b7fd5b6e1c7f060c8eaecdce8be87bfe61", - "contractId": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "stateRoot": "0xeabc79a87f0e59fafc5fd656f7b6734bb845817612732867c8b02945b4424576", - "txPointer": "03bd1aa40073", - "utxoId": "0xd0c32a4f3e936213d4718ffa3867559e903b36e2c487c835339f9e1688ae4d130002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a5", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5003c", - "utxoId": "0xd0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1733540", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7d09ca744c5e8a5529106ab4349905bdc3c447a1d9179476f618d387cfe1b597", - "inputIndex": "1", - "stateRoot": "0x0a67a4deb0b0156a9b9555891901f907979a8957ddae2ae2a06edb544de28866" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x63f75a807c4b2c724f9e39e219aa4998f216c71ff8e3f00fce00dd75db38cfcd", - "inputIndex": "2", - "stateRoot": "0x0ac6c164df55916e4fe222d7f859260705ea6d9e9ed3cdab6f9363f2547904af" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480588a33085979e352193b753280da0260785fd7ca73d5d53c303928b670f095d2000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ad49b2e75a8c2690463b5aaf0860c1c70e44940acc2ad92a7990ac7f03ca7ff999b73b83b786092d5cfbe361f728da48e9070d4049137264a21b3c05f12151c600000000000000000000006a91c5a900000000000000000000000000028d0c7f00000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000003d0000002392e1c5480000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000001f7a2aa0ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff00000000000000010000000000000018000002392492ec80000000001f7a2aa00000000000000003000000000000006400000000000210ac0000000003bd1aa900000000000000007793ac34f50012e770fa3bafc4bfe49fc7794902d391a4568ff7e308f9cd022b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a7507f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000059000000000000000000000000000000000000000000000000000000000000000000000000000000016cd7990adcef9002bc9d75012a1af3882fd7746b7ca73dfb5bbe138db67ba9b5000000000000000296f87efd1f0f001e6f71eb552996f8a34323861cffe00ace49d7df0576475f6f9b8b831e8c6411e2348ea41e497e5ba652e287ce32ac7b6cbef3c3643953173a0000000003bd1aa500000000000000275a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000001d0c32a4f3e936213d4718ffa3867559e903b36e2c487c835339f9e1688ae4d130000000000000002af5c1c32558a4942d095dd486b1240b7fd5b6e1c7f060c8eaecdce8be87bfe61eabc79a87f0e59fafc5fd656f7b6734bb845817612732867c8b02945b44245760000000003bd1aa4000000000000007366fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da0000000000000001d0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d0000000000000003045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a73a4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000017d09ca744c5e8a5529106ab4349905bdc3c447a1d9179476f618d387cfe1b5970a67a4deb0b0156a9b9555891901f907979a8957ddae2ae2a06edb544de288660000000000000001000000000000000263f75a807c4b2c724f9e39e219aa4998f216c71ff8e3f00fce00dd75db38cfcd0ac6c164df55916e4fe222d7f859260705ea6d9e9ed3cdab6f9363f2547904af00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b218a29eed5478914166de4539cbc28bb56cbb57ca3e8871ad35116b2a809ec9df405cafdcb310a9afdd9e4ffd2e5bced90193c660c39cf67c3c5360708ea889", - "receiptsRoot": "0x588a33085979e352193b753280da0260785fd7ca73d5d53c303928b670f095d2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ad49b2e75a8c2690463b5aaf0860c1c70e44940acc2ad92a7990ac7f03ca7ff999b73b83b786092d5cfbe361f728da48e9070d4049137264a21b3c05f12151c600000000000000000000006a91c5a900000000000000000000000000028d0c7f00000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000003d0000002392e1c5480000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000001f7a2aa0ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff00000000000000010000000000000018000002392492ec80000000001f7a2aa00000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000028d0c7f", - "digest": "0xafbc9412116506532b3364b501e24ea7453b770d5fe920727a0ac58e16e54ddd", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a900000000000000000000000000028d0c7f", - "digest": "0x5b0fe82b4db16b0486aaceebf8f6182dd84b7dd14bfea886faccbb7d8139944b", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "493100000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000003d0000002392e1c548000000000000000010000000000000003000000006a91c531", - "digest": "0xf67d60d82b18e3a0d48cf1628182c266a618f078137fb668de4cde6790b2950a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67100530", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099905", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a900000000000000000000000000028d0c7f", - "digest": "0x5b0fe82b4db16b0486aaceebf8f6182dd84b7dd14bfea886faccbb7d8139944b", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099677", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882012", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000000000000000000000", - "digest": "0x59ecf2f36962ef2a9ec90b6961021042caee97c9fbf3cc61e7799c9eb0d86806", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67098757", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a900000000000000000000000000028d0c7f", - "digest": "0x5b0fe82b4db16b0486aaceebf8f6182dd84b7dd14bfea886faccbb7d8139944b", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098529", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "528100000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869738", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000417000002392492ec8000000000000000010000000000000003000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000010000000000000003000000001f7a2aa0000002392492ec80000000006a91c531", - "digest": "0xe6e89bbfdb7cd2d31050a28e1a5da48aa30b1eef9786631c25355190a179fb42", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67096689", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000417000002392492ec8000000000000000010000000000000003", - "digest": "0x2c3b275bb05dc36f338623fe50db376e21cb36d4d1718a83f864fec68bc73923", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67093441", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "194189", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "355", - "totalGas": "204017", - "transactionId": "0xe5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc2" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb218a29eed5478914166de4539cbc28bb56cbb57ca3e8871ad35116b2a809ec9df405cafdcb310a9afdd9e4ffd2e5bced90193c660c39cf67c3c5360708ea889" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f94", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "292196", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f005a", - "utxoId": "0x49258838156a3c247b5544e71f4d049d4c9619094286be563ecd52bd34740fac0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5777dcff2fd1983ede47ed95b91916f3a22ad6e3843df2c37d8db530e3e58bff", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x5d959c12dfa7dde0582514010e7a831d43fe4208d39be3301b6118a150891190", - "txPointer": "03bd1aa5003c", - "utxoId": "0xd0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x26b4b12a1611c901f3f16f8538fde111095e23f38d2d234cfda5ace55f8b2bf9", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x199868467331a807f7618d7f3321cd50376f610aa8a0403567ecabdd498e2b47", - "txPointer": "03bd1aa5003c", - "utxoId": "0xd0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5003d", - "utxoId": "0xe5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc20003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "291958", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd8a51b83063e9cbae9c2b12c245e7054909920dfbe2a6663d64f3d980a264449", - "inputIndex": "1", - "stateRoot": "0x621ebb644039793c58b4ce924511da86fde2d4432a03df3a73c432c55d6babec" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1fe0d28d2993b3d32f820af1e6ede0c68829278a504ebba9af6676f048091502", - "inputIndex": "2", - "stateRoot": "0xad0cdb94585c43362815d04a285af1b700cc6764891ed7d7a51a03efa91d856e" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84807bd53033466de96b60ee1e83cb4fbadebfee84e31046d48de062fc10f723ba2800000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bd4b317fc0aaa38809e5fde4845a17caf99ba7d21dc66280a6db733f90e41c48cc7ea8946fc0f3572039e791bb4137de0407c9ce675eecf310ed7a62fd397df000000000000000000000006a91c5a9000000000000000000000000000313566700000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000011a019c37106c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c9039ee80000000024c7a0640000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000049258838156a3c247b5544e71f4d049d4c9619094286be563ecd52bd34740fac0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047564f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005a00000000000000000000000000000000000000000000000000000000000000000000000000000001d0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d00000000000000015777dcff2fd1983ede47ed95b91916f3a22ad6e3843df2c37d8db530e3e58bff5d959c12dfa7dde0582514010e7a831d43fe4208d39be3301b6118a1508911900000000003bd1aa5000000000000003c8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001d0463935f16ecc1f1195672343d20fa50f4802d870fc2d59360016871e61da0d000000000000000226b4b12a1611c901f3f16f8538fde111095e23f38d2d234cfda5ace55f8b2bf9199868467331a807f7618d7f3321cd50376f610aa8a0403567ecabdd498e2b470000000003bd1aa5000000000000003cc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001e5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc20000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047476f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d8a51b83063e9cbae9c2b12c245e7054909920dfbe2a6663d64f3d980a264449621ebb644039793c58b4ce924511da86fde2d4432a03df3a73c432c55d6babec000000000000000100000000000000021fe0d28d2993b3d32f820af1e6ede0c68829278a504ebba9af6676f048091502ad0cdb94585c43362815d04a285af1b700cc6764891ed7d7a51a03efa91d856e00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b036754aecc05fa1fe09e32fdbf30388bcc746a29e9c2be0eead0ad8d544fab2f72faf1d60c3c992f368d12810e46cb6a4e40904363ba1372d3677a5e845c8ee", - "receiptsRoot": "0x7bd53033466de96b60ee1e83cb4fbadebfee84e31046d48de062fc10f723ba28", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bd4b317fc0aaa38809e5fde4845a17caf99ba7d21dc66280a6db733f90e41c48cc7ea8946fc0f3572039e791bb4137de0407c9ce675eecf310ed7a62fd397df000000000000000000000006a91c5a9000000000000000000000000000313566700000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000011a019c37106c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c9039ee80000000024c7a06400000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135667", - "digest": "0xea3919e89eb058c58fb845a20e86c52340f5354536d25db7c57923c5a7f13277", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135667", - "digest": "0x49641093a11f890dcda118971498483b2fb23fbbc50d6d546efa1c0d3b2bd383", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135667", - "digest": "0x49641093a11f890dcda118971498483b2fb23fbbc50d6d546efa1c0d3b2bd383", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1211207792400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000a0000001c9039ee80000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000001000000024c7a06400000001c9039ee80000000006a91c531", - "digest": "0xba37417a5586e527071a401716c5aacc758224e3df24aec0355b6ffca7c4315e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000a0000001c9039ee8000000000000000000000000000000001", - "digest": "0xa5034f5439667198ed87a55c0435e517d11b749d598cd0caed9e1028678d31ff", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100022", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126775", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136396", - "transactionId": "0xe863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f94" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb036754aecc05fa1fe09e32fdbf30388bcc746a29e9c2be0eead0ad8d544fab2f72faf1d60c3c992f368d12810e46cb6a4e40904363ba1372d3677a5e845c8ee" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b84", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1864575", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f005b", - "utxoId": "0xbda253f404412fc8971f88078f7a1741384a500acce39b0a5aca70b386a8203d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8692a84ee4535060d890fbe6b448a8738c61a2cadc21b212b98e1fea97af9e31", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x94c1ec0e7de4b02855d27b1c5fec6574b14daecffce0ae607b9ce3e04c9826f5", - "txPointer": "03bd1aa5003e", - "utxoId": "0xe863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f940001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x00206e8079151b404d84a678d861c529c2baa9305cbc1ccc5c66c0630df3c0f2", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xb141743e855c0a15a01a6dddb7520a4d00dc0ae9e2c3b69ca69c45c8c5d33e4c", - "txPointer": "03bd1aa5003e", - "utxoId": "0xe863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f940002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5003e", - "utxoId": "0xe863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f940003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1864189", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5e12bc49ca81e335131a26faab6d7ce18389a5385ad6230f0ab0b7b77233fc1d", - "inputIndex": "1", - "stateRoot": "0x83e963fa89522e6b65aeb5fb7cf3885179b330a2f15b6aecf2eeaf74eea23a9a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xdd41f43ef58a3b97473a8b33829927c92f114278dbd5a53978a3c7a2d413465e", - "inputIndex": "2", - "stateRoot": "0x0a411bae5f6ef81b26f60dae6cf3eaa6c009f436ef4714339c168fed4d5b24dc" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480fac567359cfa3527481456e48f00a3a6c3d5aadaa833a4e67bacbcc67878684a000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000067f980cd4c69c36621891a6041ff2e27d8f678c908bc28c04ed092f0ee91dd27336a8a47b058acddc759890ef0faaedf4b967c850a3fd41841c924542e6420b100000000000000000000006a91c5a9000000000000000000000000000313566800000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000120000001c9f792140000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000001d4410c013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9e47f440000000001d4410c00000000000000001000000000000006400000000000210ac0000000003bd1aa90000000000000000bda253f404412fc8971f88078f7a1741384a500acce39b0a5aca70b386a8203d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c737ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005b00000000000000000000000000000000000000000000000000000000000000000000000000000001e863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f9400000000000000018692a84ee4535060d890fbe6b448a8738c61a2cadc21b212b98e1fea97af9e3194c1ec0e7de4b02855d27b1c5fec6574b14daecffce0ae607b9ce3e04c9826f50000000003bd1aa5000000000000003e8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001e863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f94000000000000000200206e8079151b404d84a678d861c529c2baa9305cbc1ccc5c66c0630df3c0f2b141743e855c0a15a01a6dddb7520a4d00dc0ae9e2c3b69ca69c45c8c5d33e4c0000000003bd1aa5000000000000003ec7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001e863ca99486d8297387bc3e078e755e5b0f34cefa5c86ab2759247a8a6887f940000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c71fdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000015e12bc49ca81e335131a26faab6d7ce18389a5385ad6230f0ab0b7b77233fc1d83e963fa89522e6b65aeb5fb7cf3885179b330a2f15b6aecf2eeaf74eea23a9a00000000000000010000000000000002dd41f43ef58a3b97473a8b33829927c92f114278dbd5a53978a3c7a2d413465e0a411bae5f6ef81b26f60dae6cf3eaa6c009f436ef4714339c168fed4d5b24dc00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e96c2a9fef16bd2d3c4a238d65cbab7b3a9c96e2de0caf2e3b6be640fbdd26937c7ee1341913c68e4107e200701c0c8cfd5ae57e0aba9a7d12f7cd125564be3d", - "receiptsRoot": "0xfac567359cfa3527481456e48f00a3a6c3d5aadaa833a4e67bacbcc67878684a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000067f980cd4c69c36621891a6041ff2e27d8f678c908bc28c04ed092f0ee91dd27336a8a47b058acddc759890ef0faaedf4b967c850a3fd41841c924542e6420b100000000000000000000006a91c5a9000000000000000000000000000313566800000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000120000001c9f792140000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000001d4410c013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9e47f440000000001d4410c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135668", - "digest": "0xc43aaede753ef820824cf94e6782a397fb1cdba37f166a10e7a4a2fb152490ea", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135668", - "digest": "0x52ed8e0e2b91e7c6e747e036517c6125364e2f718ee4079c1750208bec0a1baa", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "454000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000120000001c9f79214000000000000000010000000000000001000000006a91c531", - "digest": "0xaa5214a850e12832506e5f26cba4ef35687e54bde6b1bdb302fb02586ebed1e8", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100010", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67099385", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135668", - "digest": "0x52ed8e0e2b91e7c6e747e036517c6125364e2f718ee4079c1750208bec0a1baa", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099157", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875183", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67098685", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135668", - "digest": "0x52ed8e0e2b91e7c6e747e036517c6125364e2f718ee4079c1750208bec0a1baa", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67098457", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "491000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1863778", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000c0000001c9e47f440000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000010000000000000001000000001d4410c00000001c9e47f440000000006a91c531", - "digest": "0x5b954db43104446d7049a09269050bbf7356d19e2689a1c8580dc296bb52142f", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097065", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000c0000001c9e47f44000000000000000010000000000000001", - "digest": "0xb343d70a0ccc2502d54033d362627fc0d43b774bc0abd4c9a0bd8b4c3664a1e1", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67092249", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "211975", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "386", - "totalGas": "221803", - "transactionId": "0xa725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b84" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe96c2a9fef16bd2d3c4a238d65cbab7b3a9c96e2de0caf2e3b6be640fbdd26937c7ee1341913c68e4107e200701c0c8cfd5ae57e0aba9a7d12f7cd125564be3d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x55d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1730797", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f005c", - "utxoId": "0x1425288bf72718d89ac03415aca28e73759be4021e23ae7ffe67034a1b57169c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1fe0d28d2993b3d32f820af1e6ede0c68829278a504ebba9af6676f048091502", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x542b87a9e2c6c21da5faf2ea5cae791abb012021331fdbcf3050a0116c39abc7", - "txPointer": "03bd1aa5003f", - "utxoId": "0xa725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b840002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd8a51b83063e9cbae9c2b12c245e7054909920dfbe2a6663d64f3d980a264449", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x79c310af2012e695ace4bf88492fb9daba7d59dcbe690fc12d53ed96dd806098", - "txPointer": "03bd1aa5003f", - "utxoId": "0xa725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b840001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5003f", - "utxoId": "0xa725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b840003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1730561", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5194545400fe01ea67d29ddd4f50aa6f5698dce1163c6ed8085a7fc5fd76742e", - "inputIndex": "1", - "stateRoot": "0x25930495ffcae9f11a39882099d2b3603a198248a5d2d698b657d9ef07dadadd" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbd2c69c3213b8de21c18f950fb6adfd6495067c00fc637d82ad9dc3d5bbcd969", - "inputIndex": "2", - "stateRoot": "0xfcf34ffef6334bf416b362978aa508b79b92be571630d61fd22ec128234764ab" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802fe15c161ad80ce72e663dea4281c69eade76ec72cb58a3902e9e68918c2d7d700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006f9a63f481d9e99e9f3b66a1686cb30547d7cf56eb80a5df3b6fa897f550bdca364cce23a4ad285407ce1b02748d4014e40bdc29c657dab35b69e136609541c100000000000000000000006a91c5a9000000000000000000000000000313566900000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000ffe91d5b986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c94a18e600000000215b33280000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000001425288bf72718d89ac03415aca28e73759be4021e23ae7ffe67034a1b57169c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a68edf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000001a725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b8400000000000000021fe0d28d2993b3d32f820af1e6ede0c68829278a504ebba9af6676f048091502542b87a9e2c6c21da5faf2ea5cae791abb012021331fdbcf3050a0116c39abc70000000003bd1aa5000000000000003fc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001a725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b840000000000000001d8a51b83063e9cbae9c2b12c245e7054909920dfbe2a6663d64f3d980a26444979c310af2012e695ace4bf88492fb9daba7d59dcbe690fc12d53ed96dd8060980000000003bd1aa5000000000000003f8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001a725a54215310a848fcd04499e01cca123613e9f80316f6e9a4a1e0ceadb6b840000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000003f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6801f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000015194545400fe01ea67d29ddd4f50aa6f5698dce1163c6ed8085a7fc5fd76742e25930495ffcae9f11a39882099d2b3603a198248a5d2d698b657d9ef07dadadd00000000000000010000000000000002bd2c69c3213b8de21c18f950fb6adfd6495067c00fc637d82ad9dc3d5bbcd969fcf34ffef6334bf416b362978aa508b79b92be571630d61fd22ec128234764ab00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040678dba01f01deada7abe098a86c817a773269cb1a9ac97ea779a79d8bb084ee21b88eb24423ca8720fdbbd4058a300f4f6740d52303a36bcc57b9e77dec3317b", - "receiptsRoot": "0x2fe15c161ad80ce72e663dea4281c69eade76ec72cb58a3902e9e68918c2d7d7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006f9a63f481d9e99e9f3b66a1686cb30547d7cf56eb80a5df3b6fa897f550bdca364cce23a4ad285407ce1b02748d4014e40bdc29c657dab35b69e136609541c100000000000000000000006a91c5a9000000000000000000000000000313566900000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000ffe91d5b986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c94a18e600000000215b332800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135669", - "digest": "0x526c16003662a11ea58cd0678eaff9812cf1791686e3d731a3da6440ce3b7f2a", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135669", - "digest": "0x93268f4aa343b49f14bc79d6888faa4b336b3cfc1703a1030bc2271bf7c04712", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135669", - "digest": "0x93268f4aa343b49f14bc79d6888faa4b336b3cfc1703a1030bc2271bf7c04712", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1099127675800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000150000001c94a18e60000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000000000000000000010000000215b332800000001c94a18e60000000006a91c531", - "digest": "0x67d2316c76fadcda51ee505524b6d8b90fab114fa476867c571379f6eed85a1b", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000150000001c94a18e6000000000000000000000000000000001", - "digest": "0x553c0e248f402d7086e68abf1ec6d23ce78721338c8dd2ed7d184bda87a4ae5d", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100150", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125625", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135246", - "transactionId": "0x55d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x678dba01f01deada7abe098a86c817a773269cb1a9ac97ea779a79d8bb084ee21b88eb24423ca8720fdbbd4058a300f4f6740d52303a36bcc57b9e77dec3317b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x69e0cddac7b387ba9871c7fd61b2d90e0146638256dfbd3d0ee3c132f97db244", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x0f9f509374c2da68997a3a1ad6d85be3f351c2f5f3da4c65bdbfad9b0bb25504", - "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "0x3d20e5a675c5fa1053fba11e176099711ba2f23112e385a7f6e2e759eca84f94", - "0x4c00c2297bc4532e74e9ef8bee4a3bdb7e8ccb84ef5aecc56f845c23e475856e", - "0x5d0b627f8192aee05c43ef53c1a12c054488cb6257f1dcf9e802b640b36722a7", - "0x6060e4d0f3c8272ebc982706667827c119bcc821d35f349c92a18ef11d2585a3", - "0x801af4ee92bd9e64ac16b65f490d4cd7dae791662ffbc8f70e20cdb7a6b7fa8c", - "0x91cfcbef2caad02996cdcb5b897222170e85a91cd2db8f23f07ea7d9ca030c19", - "0xb0d9f3e0689447632ac4dbfbbefaca7d4ff0bc580b468dd279167a07a4803724" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587370", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f005d", - "utxoId": "0xa6e134092b1ea63b1d90137eec134f5a9d7ad4ea7ed46ecd4e702502b2a24d0d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "stateRoot": "0x0b1735e9edb52b8724e170b41fd28556ed85f422a431c24e71aba71460ba8ab2", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0xb0d9f3e0689447632ac4dbfbbefaca7d4ff0bc580b468dd279167a07a4803724", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570006" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x4c00c2297bc4532e74e9ef8bee4a3bdb7e8ccb84ef5aecc56f845c23e475856e", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570008" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x6060e4d0f3c8272ebc982706667827c119bcc821d35f349c92a18ef11d2585a3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570004" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x0f9f509374c2da68997a3a1ad6d85be3f351c2f5f3da4c65bdbfad9b0bb25504", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x3d20e5a675c5fa1053fba11e176099711ba2f23112e385a7f6e2e759eca84f94", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c2157000a" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "stateRoot": "0x2fa8757b351a16c65a7bcbbcbfc50547f0c28ac64779322ddfff17949ce3efc9", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570009" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x5d0b627f8192aee05c43ef53c1a12c054488cb6257f1dcf9e802b640b36722a7", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570007" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x801af4ee92bd9e64ac16b65f490d4cd7dae791662ffbc8f70e20cdb7a6b7fa8c", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570005" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x91cfcbef2caad02996cdcb5b897222170e85a91cd2db8f23f07ea7d9ca030c19", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa3007e", - "utxoId": "0x8cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1587206", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0xa0fd00b7ca8c84d1458a59415df7a25546595b7d1274b4548a58b0ece88e3b24" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "4", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "5", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "6", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "7", - "stateRoot": "0xa80d71d198675f56798c4faac526cea035e259ce68604cfb25e421385c3e96e7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "8", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "9", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "10", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480911f4557772fe99fd8a277f2d75c4a33b7ca968a748c9ab701c3f4fec2af582000000000000000180000000000000368000000000000001a000000000000000b000000000000000b0000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a00000000000028f0000000000000290a00000000000000127061725f63616c6c5f636f6e74726163747300000000000000010000000000000000af3d390bd01c9adf45acee4a1378bdaf3414d31353b3436019dfb55a81488f959f058ad9c3ad7fbed275f5e2015c9a0ef56c6af4acf5a61a4bf23bcd1a9a9b6700000000000000000000006a91c5a6000000000000000000000000000023df7e00000000000000012f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f70000000000000016000000000000000e7075626c6973685f70726963657300000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000200000000000000000727821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b00000000000000000003032ca4cd11b00000000000000000000304cc32aa6800000000006a91c52d1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef0000000000001083416a003cb519a1fa0000000000001083af050cb43916f73c000000006a91c52dcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb00000000000000003d9c45c4d67eb27700000000000000003dae31a213a72dc5000000006a91c52df2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166000000000000000004f293f5995efc03000000000000000004f345eadf845543000000006a91c52d7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf5800000000000000009f6e1ba9a3dff7d100000000000000009f8bb3543073164c000000006a91c52ddc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c0000000000000000024a8d93a6d302d00000000000000000024af78d141a5a61000000006a91c52def13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea0000000000000000056a7c49bf29bd4a0000000000000000056bb0a169448000000000006a91c52d000000000000006400000000000210ac0000000003bd1aa90000000000000000a6e134092b1ea63b1d90137eec134f5a9d7ad4ea7ed46ecd4e702502b2a24d0d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001838aaf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005d000000000000000000000000000000000000000000000000000000000000000000000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c2157000000000000000200000000000000000000000000000000000000000000000000000000000000000b1735e9edb52b8724e170b41fd28556ed85f422a431c24e71aba71460ba8ab20000000003bd1aa3000000000000007e0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a00000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007eb0d9f3e0689447632ac4dbfbbefaca7d4ff0bc580b468dd279167a07a480372400000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e4c00c2297bc4532e74e9ef8bee4a3bdb7e8ccb84ef5aecc56f845c23e475856e00000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e6060e4d0f3c8272ebc982706667827c119bcc821d35f349c92a18ef11d2585a300000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e0f9f509374c2da68997a3a1ad6d85be3f351c2f5f3da4c65bdbfad9b0bb2550400000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c2157000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e3d20e5a675c5fa1053fba11e176099711ba2f23112e385a7f6e2e759eca84f9400000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c2157000000000000000900000000000000000000000000000000000000000000000000000000000000002fa8757b351a16c65a7bcbbcbfc50547f0c28ac64779322ddfff17949ce3efc90000000003bd1aa3000000000000007e2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f700000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e5d0b627f8192aee05c43ef53c1a12c054488cb6257f1dcf9e802b640b36722a700000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e801af4ee92bd9e64ac16b65f490d4cd7dae791662ffbc8f70e20cdb7a6b7fa8c00000000000000018cc149fe19112fe5b861a3bc9f538f0527aacea1bfe9d0fd0954df44d92c21570000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa3000000000000007e91cfcbef2caad02996cdcb5b897222170e85a91cd2db8f23f07ea7d9ca030c190000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183806f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000a0fd00b7ca8c84d1458a59415df7a25546595b7d1274b4548a58b0ece88e3b2400000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000070000000000000000000000000000000000000000000000000000000000000000a80d71d198675f56798c4faac526cea035e259ce68604cfb25e421385c3e96e7000000000000000100000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000402322aac3aec2b3c69e40ae04cb5e7ce48e11bfc0aaf39415e9170cd42a142b49e7d2fbc98b7d34ab9e49f8e299ea7f03fcb6210cb444a4f46b71d2251264bde1", - "receiptsRoot": "0x911f4557772fe99fd8a277f2d75c4a33b7ca968a748c9ab701c3f4fec2af5820", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a00000000000028f0000000000000290a00000000000000127061725f63616c6c5f636f6e74726163747300000000000000010000000000000000af3d390bd01c9adf45acee4a1378bdaf3414d31353b3436019dfb55a81488f959f058ad9c3ad7fbed275f5e2015c9a0ef56c6af4acf5a61a4bf23bcd1a9a9b6700000000000000000000006a91c5a6000000000000000000000000000023df7e00000000000000012f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f70000000000000016000000000000000e7075626c6973685f70726963657300000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000200000000000000000727821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b00000000000000000003032ca4cd11b00000000000000000000304cc32aa6800000000006a91c52d1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef0000000000001083416a003cb519a1fa0000000000001083af050cb43916f73c000000006a91c52dcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb00000000000000003d9c45c4d67eb27700000000000000003dae31a213a72dc5000000006a91c52df2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166000000000000000004f293f5995efc03000000000000000004f345eadf845543000000006a91c52d7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf5800000000000000009f6e1ba9a3dff7d100000000000000009f8bb3543073164c000000006a91c52ddc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c0000000000000000024a8d93a6d302d00000000000000000024af78d141a5a61000000006a91c52def13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea0000000000000000056a7c49bf29bd4a0000000000000000056bb0a169448000000000006a91c52d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "14608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10506", - "pc": "14608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a6000000000000000000000000000023df7e", - "digest": "0xba08c5ef108b8baad105f4e4c8c69f0c179f647bd2e323250f708d357dc05eab", - "gas": null, - "gasUsed": null, - "id": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "is": "14608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "149376", - "ptr": "67107501", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964267", - "gasUsed": null, - "id": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "is": "308352", - "len": null, - "nonce": null, - "param1": "67108578", - "param2": "67108066", - "pc": "308352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x27821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b00000000000000000003032ca4cd11b00000000000000000000304cc32aa680009000000006a91c52d", - "digest": "0x0c4a8e11521ace62764b552a29365ad87a3828fd126dc5f069d42a7fc4863c9a", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67104395", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef0000000000001083416a003cb519a1fa0000000000001083af050cb43916f73c09000000006a91c52d", - "digest": "0xa05f74d06f9dde49b0b4bebbd9a9171aa7a62f0edad714dd295cf9886136dd2b", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67103099", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb00000000000000003d9c45c4d67eb27700000000000000003dae31a213a72dc509000000006a91c52d", - "digest": "0xc85fc3543584b58658aac150a5d3af87fb1a4c802a085a2fffbd6c099adaa004", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67101803", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166000000000000000004f293f5995efc03000000000000000004f345eadf84554309000000006a91c52d", - "digest": "0xe2b888d28670793bd79a59c2b9cac5ad2703b2fcc3a07869dd40ece11ff8d5a6", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67100507", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf5800000000000000009f6e1ba9a3dff7d100000000000000009f8bb3543073164c09000000006a91c52d", - "digest": "0xbac74f550ddd25dd3afd0588d6ab465ae45b90adb1bf0eba0a280f04e6307940", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67099211", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c0000000000000000024a8d93a6d302d00000000000000000024af78d141a5a6109000000006a91c52d", - "digest": "0xa886be47a9c561c3f9c7e9356baee712e58449b09055a3e0fd642a4c1023ed53", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67097915", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea0000000000000000056a7c49bf29bd4a0000000000000000056bb0a16944800009000000006a91c52d", - "digest": "0x08f41ceb35a86fdd872b2dc8807d8c51210ed120adab206a8aa4b4c84e2a8615", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341544", - "ptr": "67096619", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "323652", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "is": "14608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "90444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "81721", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "164", - "totalGas": "94060", - "transactionId": "0x69e0cddac7b387ba9871c7fd61b2d90e0146638256dfbd3d0ee3c132f97db244" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x2322aac3aec2b3c69e40ae04cb5e7ce48e11bfc0aaf39415e9170cd42a142b49e7d2fbc98b7d34ab9e49f8e299ea7f03fcb6210cb444a4f46b71d2251264bde1" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x4fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "152188", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f005e", - "utxoId": "0x7faa0c2e618321a57aa929993cfc7405bb604843357328ca849ae1e9ed90b7f60000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfefd0b656a32bd1e51e1ef23550a34fceb47e48f6ba481ff62c5982bdadbaffa", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xcd25ad40c9168a32de05e3cdd67e9f30dfaf840c8f35c1e5e92df25ff4449883", - "txPointer": "03bd1aa50012", - "utxoId": "0xe943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e10003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50040", - "utxoId": "0x55d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbec0ffbdc7eece60a215fadff6abf7b39821f19350494ed0c0caa3aac6319eda", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xfcd7f8a3738bd459de9bb35ddd1ed9edb6c318e6be1c3c305773057eabe6f5b5", - "txPointer": "03bd1aa50012", - "utxoId": "0xe943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e10002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151939", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd854f1f11d2a882c5e697aaa98080e8b11f58ff065dff88d721a1773bcf79520", - "inputIndex": "1", - "stateRoot": "0x5390e714ea46a3f26995fc8beca50130ac369128845ce38147757451a7fc0ee9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa6a3b9a9f22402cac81a902948ff1391924d2779c2d58ec7cac0181f36e6ed89", - "inputIndex": "3", - "stateRoot": "0x6fc0a6ef0a03f961b1537516b589990a215679fbad7275a213cbd886bcc4e9d1" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848025ab6a5518238fad2971865ddea50ab970138e9c0d10ce838a59662d4fabf2b900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f101ac4a76fd10886fd2bd3e30376542cc698a774de8b01de9d2f2f28bff800e057cbaaa77e47255e3c16229ecae03d6df2ddaecfa1331b724eb9ea8f8bd82b100000000000000000000006a91c5a900000000000000000000000000023a364d00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000e258f31ff06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d639a00000055b84500700000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000007faa0c2e618321a57aa929993cfc7405bb604843357328ca849ae1e9ed90b7f60000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002527cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005e00000000000000000000000000000000000000000000000000000000000000000000000000000001e943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e10000000000000003fefd0b656a32bd1e51e1ef23550a34fceb47e48f6ba481ff62c5982bdadbaffacd25ad40c9168a32de05e3cdd67e9f30dfaf840c8f35c1e5e92df25ff44498830000000003bd1aa500000000000000120a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7000000000000000155d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde0000000000000003b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e943576b5e23fb4b8b2a565fad4df839048ab116a5946a18b2ef1831e00ff4e10000000000000002bec0ffbdc7eece60a215fadff6abf7b39821f19350494ed0c0caa3aac6319edafcd7f8a3738bd459de9bb35ddd1ed9edb6c318e6be1c3c305773057eabe6f5b50000000003bd1aa50000000000000012ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025183f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d854f1f11d2a882c5e697aaa98080e8b11f58ff065dff88d721a1773bcf795205390e714ea46a3f26995fc8beca50130ac369128845ce38147757451a7fc0ee9000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003a6a3b9a9f22402cac81a902948ff1391924d2779c2d58ec7cac0181f36e6ed896fc0a6ef0a03f961b1537516b589990a215679fbad7275a213cbd886bcc4e9d100000000000000401952e2f5fb31e3b4d64ed6237a4674fdfacae5953d7912531ae6f0aa58ab77600b89b8f26b906ba9b99d67dd4bace59bdfaf367b8a156078034983e86348aa7d", - "receiptsRoot": "0x25ab6a5518238fad2971865ddea50ab970138e9c0d10ce838a59662d4fabf2b9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f101ac4a76fd10886fd2bd3e30376542cc698a774de8b01de9d2f2f28bff800e057cbaaa77e47255e3c16229ecae03d6df2ddaecfa1331b724eb9ea8f8bd82b100000000000000000000006a91c5a900000000000000000000000000023a364d00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000e258f31ff06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d639a00000055b845007000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a364d", - "digest": "0x2c1ccda97e36d9ea99e474bf104580180ddd80683945cb60ab240f2794848c1c", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a364d", - "digest": "0x6e7f89fde64d6c7af59b80f852955f572024b266eaddc1152a0e7d0e8072a95a", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a364d", - "digest": "0x6e7f89fde64d6c7af59b80f852955f572024b266eaddc1152a0e7d0e8072a95a", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "972154937328", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000009d639a0000000000000000000000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da000000000000000000000000000000010000055b845007000000000009d639a0000000006a91c531", - "digest": "0xdabc46da807a5f90706b85113af91da7ca42ce6b56a4665abb7215f2e9df8794", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000009d639a000000000000000000000000000000001", - "digest": "0x9b3ac376a38cbff560d26a0b6839fa9b3bd084dcc6b89727a72a3b16e9530215", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099270", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133052", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "142673", - "transactionId": "0x4fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x1952e2f5fb31e3b4d64ed6237a4674fdfacae5953d7912531ae6f0aa58ab77600b89b8f26b906ba9b99d67dd4bace59bdfaf367b8a156078034983e86348aa7d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x67b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "283237", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f005f", - "utxoId": "0x510b18da16e248f94e870647d2b30978e43cfbc5eea4989f867b19c79f0d27e50000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50042", - "utxoId": "0x4fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1db2d1d6f509767d7a6ceb859f402dcc8bee3d8838deb4c1cf71831a1895e1ac", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x4f5e143af24f21e6de03af577f361fd090ee35bb41bc015ffff10ffbbd745113", - "txPointer": "03bd1aa50042", - "utxoId": "0x4fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfa425e5edee5d8d8ae6b12b4572ec795d420d9078eeed9c952366681aa3bb020", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xe75254c24da6fd62ed433356888a1a1967d9958a34383b7b425c22885878b106", - "txPointer": "03bd1aa50042", - "utxoId": "0x4fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "282992", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x01e0bf14a2bab4fe7405f53d8ec524b2e42b80a0b3361786c3c84bb33bfe4601", - "inputIndex": "2", - "stateRoot": "0x7c6155290a51f5f049b1aa415f6d71c5876024e83ffbde98687b64cc77ac878b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc89b69456413ce6921a6db39df3891a5bd3e80ec7a3ccaa6e55c8320ee1ee8b5", - "inputIndex": "3", - "stateRoot": "0x3514bbedf3f4648cea73b924292e39b95c31d69fe62b5543571462fcfc0ff2e0" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d73705b9aa884ca752b402ff6118a9973d2b005e9e2ea4debf5c50167952e6af00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000070bd768715149eaa945cba15cb37e95df1856be0d713550bc403e2ec3f1244e03f012d7893e58440979589add2f99604c3dfb1b5e07983d7060085fd7a323e2d00000000000000000000006a91c5a900000000000000000000000000023a364e00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000002e18313a580dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009da5788000002e18313a580000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000510b18da16e248f94e870647d2b30978e43cfbc5eea4989f867b19c79f0d27e50000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000045265f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000005f000000000000000000000000000000000000000000000000000000000000000000000000000000014fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e0000000000000002b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000014fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e00000000000000031db2d1d6f509767d7a6ceb859f402dcc8bee3d8838deb4c1cf71831a1895e1ac4f5e143af24f21e6de03af577f361fd090ee35bb41bc015ffff10ffbbd7451130000000003bd1aa50000000000000042ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000014fa81d84e483b490d140afd31142d5cbe3452400014e73ca3359725603fb755e0000000000000001fa425e5edee5d8d8ae6b12b4572ec795d420d9078eeed9c952366681aa3bb020e75254c24da6fd62ed433356888a1a1967d9958a34383b7b425c22885878b1060000000003bd1aa500000000000000420a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000045170f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000201e0bf14a2bab4fe7405f53d8ec524b2e42b80a0b3361786c3c84bb33bfe46017c6155290a51f5f049b1aa415f6d71c5876024e83ffbde98687b64cc77ac878b00000000000000010000000000000003c89b69456413ce6921a6db39df3891a5bd3e80ec7a3ccaa6e55c8320ee1ee8b53514bbedf3f4648cea73b924292e39b95c31d69fe62b5543571462fcfc0ff2e00000000000000040557e0ba4020f6432c2d863a9db6f2e62a38c0b0cadd2e4cc61734efced82f5ecb80732bc859e30b6d24127b089cb2b07ab19d7375a0689a2e5ab32c9bc097039", - "receiptsRoot": "0xd73705b9aa884ca752b402ff6118a9973d2b005e9e2ea4debf5c50167952e6af", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000070bd768715149eaa945cba15cb37e95df1856be0d713550bc403e2ec3f1244e03f012d7893e58440979589add2f99604c3dfb1b5e07983d7060085fd7a323e2d00000000000000000000006a91c5a900000000000000000000000000023a364e00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000002e18313a580dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009da5788000002e18313a5800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a364e", - "digest": "0x496c536b412200abdc6233934f9a0f99edbde79d590e810e3fd823bc64030675", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a364e", - "digest": "0x5a5f1d627e5305867ad58fdc69939b94d38eb1d620c03c1f077a9baa05b92504", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a364e", - "digest": "0x5a5f1d627e5305867ad58fdc69939b94d38eb1d620c03c1f077a9baa05b92504", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3167590000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000180000000009da5788000000000000000100000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000010000000000000001000002e18313a5800000000009da5788000000006a91c531", - "digest": "0x775b5c256c068f56b3af77a62f7b241f7a97195ea78fb41cb1efdfd6950383f6", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000180000000009da578800000000000000010000000000000001", - "digest": "0xd192676953ad7e4debcbf5b1eb2bb93fca2e74cbe9df4115f5aa66768bae6800", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099590", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130746", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "245", - "totalGas": "140367", - "transactionId": "0x67b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x557e0ba4020f6432c2d863a9db6f2e62a38c0b0cadd2e4cc61734efced82f5ecb80732bc859e30b6d24127b089cb2b07ab19d7375a0689a2e5ab32c9bc097039" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x84d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149624", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0060", - "utxoId": "0x1632cf5fd3d2ce3dc7caeee207dbe445a3d31fefeedd5ba03a09151895cf9c560000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc181e4c73c2463b93dfc2abbb00e22b960cf820c7ba2452f3f072d8487e86f59", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0xb1f572ee8a8fdedb42665921cb2102441913ef4b4a7c219ea5fe63d085af0e10", - "txPointer": "03bd1aa5001d", - "utxoId": "0x78e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50043", - "utxoId": "0x67b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb94cf57f819df7fcd27901c3e7235c38496fccd5127d64d697dafd70d0dcbf35", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x28baaaa95468bc40b4e10810df6eaa9fc4a120cee1e8c1ceafdfb1229afaae27", - "txPointer": "03bd1aa5001d", - "utxoId": "0x78e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee50002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149398", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0f022b3eb50e48754526e4c6f118892439649760d81ef2d7f5f64b36fe4313af", - "inputIndex": "1", - "stateRoot": "0xba16bea4ad368122114b47ba74ed8d70fec42c7ad688d40d9e95d99524fa7724" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xca045639ecf03ca1e6617e3579e95b3f710a63b69ef3c43b693f3d59eff6343b", - "inputIndex": "3", - "stateRoot": "0xa736c6d0eb8721e0da53da871be85e217452661d2be49cbeb3e4d4a22f249cac" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b384cd33ef75995d1dd84410c0acdab29a5d7657818a37ffc9890a4e75d041150000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000002ef03d0567da01e365dc3987c8d506fc9a379728679907f29f35e30ae0bcead5740092064d7af37fad4ff62cb06e934080ec74b28be16929dc1bc080703216b00000000000000000000006a91c5a9000000000000000000000000000249f4310000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c000000001741f2f000000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa900000000000000001632cf5fd3d2ce3dc7caeee207dbe445a3d31fefeedd5ba03a09151895cf9c560000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024878f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000178e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee50000000000000003c181e4c73c2463b93dfc2abbb00e22b960cf820c7ba2452f3f072d8487e86f59b1f572ee8a8fdedb42665921cb2102441913ef4b4a7c219ea5fe63d085af0e100000000003bd1aa5000000000000001d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25000000000000000167b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000178e8ba669ffa626f954d778ad22f321ea8ab4f18e99d7c89af519a78e4622ee50000000000000002b94cf57f819df7fcd27901c3e7235c38496fccd5127d64d697dafd70d0dcbf3528baaaa95468bc40b4e10810df6eaa9fc4a120cee1e8c1ceafdfb1229afaae270000000003bd1aa5000000000000001d9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024796f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010f022b3eb50e48754526e4c6f118892439649760d81ef2d7f5f64b36fe4313afba16bea4ad368122114b47ba74ed8d70fec42c7ad688d40d9e95d99524fa7724000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003ca045639ecf03ca1e6617e3579e95b3f710a63b69ef3c43b693f3d59eff6343ba736c6d0eb8721e0da53da871be85e217452661d2be49cbeb3e4d4a22f249cac0000000000000040a6d4c4f863de824a84b3aa63a38d107289a318559f94f6046d1e56475edc9f10c287bbb882dcab27f902e3a548e2156899ac8b001926069cea677acd979ddd3a", - "receiptsRoot": "0xb384cd33ef75995d1dd84410c0acdab29a5d7657818a37ffc9890a4e75d04115", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000002ef03d0567da01e365dc3987c8d506fc9a379728679907f29f35e30ae0bcead5740092064d7af37fad4ff62cb06e934080ec74b28be16929dc1bc080703216b00000000000000000000006a91c5a9000000000000000000000000000249f4310000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c000000001741f2f000000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f431", - "digest": "0x33f9dd10abee7062eb9368e9c8fc8f5e6c885ee6f66e287d22dc36371c19fc78", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f431", - "digest": "0xb537289cd4ddc16f8f1a93ec8cf4ad82fa71a7649179977db50e21ecb0a41e24", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "1347509773200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000000001741f2f000000000000000000000000000000001000000006a91c531", - "digest": "0x2113b70799ae5fd4ed878f4368cc65a7af400efd54ea0fa0cca16dd92fe06ec0", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101490", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100865", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f431", - "digest": "0xb537289cd4ddc16f8f1a93ec8cf4ad82fa71a7649179977db50e21ecb0a41e24", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100637", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1888216", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100165", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120220", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "226", - "totalGas": "129852", - "transactionId": "0x84d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa6d4c4f863de824a84b3aa63a38d107289a318559f94f6046d1e56475edc9f10c287bbb882dcab27f902e3a548e2156899ac8b001926069cea677acd979ddd3a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "426336", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0062", - "utxoId": "0xbcd3b644dfb2558187f8f822d0e93f3899e092309bebd16e16b6fbf7d6f236380000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8b3be84881fcc5ff1661df3689c9f3d3fc6dc038c5aada6e74c59c70b60b3641", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x4586fa0d3a8736e088d98526192a25eaaa316a3d9ba6e3b16ce4d36164a86715", - "txPointer": "03bd1aa50044", - "utxoId": "0x84d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0c8119f3982f2d5b7f854bba07d4f14400658b706e0554b740a4eaba4d9e2b99", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x37d21dc1803fb7918dd464e90dd2890beae3c9407f412b8b390e32850196d2c0", - "txPointer": "03bd1aa50044", - "utxoId": "0x84d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50044", - "utxoId": "0x84d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "426103", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1456a6780a818d242692c5aceee83f7e2fcfe5ba1430314c42210d5b7dd9a0d7", - "inputIndex": "1", - "stateRoot": "0xa421e39983a1a9a32e2f310b46afbce36e3d39c3e772edbaf369fc1a1d30f4b5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2925f1a73ce5bb8f70249f16d8378a71e0a5744711c63ecc738e31eb895fa2f3", - "inputIndex": "2", - "stateRoot": "0x369251c2696708781dd3a305fe34f441ff8909bcdb11f36de01e363c590e1418" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480511a9ee81a3a101e67173931cb269f2f8d02d6723c6dbe3543bfa4207ed133250000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009cc1e2abb545da360cecd6e427acd09bc4f1541a6b1a18108ed4d03a0fa435c64dc6d395063beac77ef74756e2fd78f9502ebd503389f4f4de1c922065df82eb00000000000000000000006a91c5a9000000000000000000000000000249f4330000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001900000000174882a000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000bcd3b644dfb2558187f8f822d0e93f3899e092309bebd16e16b6fbf7d6f236380000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000068160f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000620000000000000000000000000000000000000000000000000000000000000000000000000000000184d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa00000000000000018b3be84881fcc5ff1661df3689c9f3d3fc6dc038c5aada6e74c59c70b60b36414586fa0d3a8736e088d98526192a25eaaa316a3d9ba6e3b16ce4d36164a867150000000003bd1aa50000000000000044295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25000000000000000184d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa00000000000000030c8119f3982f2d5b7f854bba07d4f14400658b706e0554b740a4eaba4d9e2b9937d21dc1803fb7918dd464e90dd2890beae3c9407f412b8b390e32850196d2c00000000003bd1aa500000000000000449789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d000000000000000184d33d09b2889235215abd8acacf66415a7730bc078cab1af61cd91edd5a56aa0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000068077f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000011456a6780a818d242692c5aceee83f7e2fcfe5ba1430314c42210d5b7dd9a0d7a421e39983a1a9a32e2f310b46afbce36e3d39c3e772edbaf369fc1a1d30f4b5000000000000000100000000000000022925f1a73ce5bb8f70249f16d8378a71e0a5744711c63ecc738e31eb895fa2f3369251c2696708781dd3a305fe34f441ff8909bcdb11f36de01e363c590e14180000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004056a06e64148234bb9f9a90429bd854d9996b1b22e8867e9f3260f7231aeb233288d61861271e85a0b404c750bb5988c21a93a66da271e1b6c09df55228be7030", - "receiptsRoot": "0x511a9ee81a3a101e67173931cb269f2f8d02d6723c6dbe3543bfa4207ed13325", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009cc1e2abb545da360cecd6e427acd09bc4f1541a6b1a18108ed4d03a0fa435c64dc6d395063beac77ef74756e2fd78f9502ebd503389f4f4de1c922065df82eb00000000000000000000006a91c5a9000000000000000000000000000249f4330000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001900000000174882a000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f433", - "digest": "0xfdcd3c042633595c132422d47393824d8d50d61110691b40c4674ac986a09c93", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f433", - "digest": "0x26c04b7283331e43d0f3c993196aa219595266763f589fd9f6f84a83b82b0600", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "307600000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001900000000174882a000000000000000010000000000000001000000006a91c531", - "digest": "0x9d0d7f2dd96895f2ff711e4f435c2546478020884ed2ad3f0e69184810f05062", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101026", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100401", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f433", - "digest": "0x26c04b7283331e43d0f3c993196aa219595266763f589fd9f6f84a83b82b0600", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100173", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884317", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099701", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "124119", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "233", - "totalGas": "133751", - "transactionId": "0x6fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x56a06e64148234bb9f9a90429bd854d9996b1b22e8867e9f3260f7231aeb233288d61861271e85a0b404c750bb5988c21a93a66da271e1b6c09df55228be7030" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1726092", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0061", - "utxoId": "0xe5aa7566c55145965a613a3febb43eb03f158bc16471380ed8d0a864cd0272cf0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50045", - "utxoId": "0x6fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2925f1a73ce5bb8f70249f16d8378a71e0a5744711c63ecc738e31eb895fa2f3", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x93c0a6215d61b9c9edca2ece0e7c2d198d6cc88f2ae20bb176c180cb146e48aa", - "txPointer": "03bd1aa50045", - "utxoId": "0x6fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1456a6780a818d242692c5aceee83f7e2fcfe5ba1430314c42210d5b7dd9a0d7", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x42300b64c2f66de1f2b610daa59e068060bf75139e59bf769488cdcc277bfebc", - "txPointer": "03bd1aa50045", - "utxoId": "0x6fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1725865", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2965df0cca3bb02013f3de2bf84c0cd6f3f7b8ff7e1bd346add3e827c3233c65", - "inputIndex": "2", - "stateRoot": "0xa65207017eaac366e7df80c04c24178458d271450194921069761076ea85afe3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x65111641f155d7deed432933c273b2c0523274cf94a81e9bc5541e263db34212", - "inputIndex": "3", - "stateRoot": "0x54c4e554fb22cc72c4b1dea0e16b4e9fcee17b00fff9c90ff80282a30fa8721c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b010f6d37427300611af625ace78224da8ce0614a47292feffcbf5c1e798b5800000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003c47531e1d2ab113c63bcc1640715c414a0689efb57555d014ccc2f51d90971134fde6cc7ec02d776eec8aad2899f205029859e656566ed2ed76956db9b45b9d00000000000000000000006a91c5a9000000000000000000000000000249f4320000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001b00000000174a094000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e5aa7566c55145965a613a3febb43eb03f158bc16471380ed8d0a864cd0272cf0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a568cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000061000000000000000000000000000000000000000000000000000000000000000000000000000000016fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b00000000000000022925f1a73ce5bb8f70249f16d8378a71e0a5744711c63ecc738e31eb895fa2f393c0a6215d61b9c9edca2ece0e7c2d198d6cc88f2ae20bb176c180cb146e48aa0000000003bd1aa500000000000000459789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000016fef063be29dc65d2415b840532717b64e22439ad182bbf7b0a9840770f7174b00000000000000011456a6780a818d242692c5aceee83f7e2fcfe5ba1430314c42210d5b7dd9a0d742300b64c2f66de1f2b610daa59e068060bf75139e59bf769488cdcc277bfebc0000000003bd1aa50000000000000045295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a55a9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000022965df0cca3bb02013f3de2bf84c0cd6f3f7b8ff7e1bd346add3e827c3233c65a65207017eaac366e7df80c04c24178458d271450194921069761076ea85afe30000000000000001000000000000000365111641f155d7deed432933c273b2c0523274cf94a81e9bc5541e263db3421254c4e554fb22cc72c4b1dea0e16b4e9fcee17b00fff9c90ff80282a30fa8721c000000000000004062797407df2e39b93cd5f3254ecca4268cd96ae60f007708af75fda3196fe485397d873b0680b2ebec931ddb75336da35c3f0eabbfbf830a5df5e0b7721f6ca4", - "receiptsRoot": "0xb010f6d37427300611af625ace78224da8ce0614a47292feffcbf5c1e798b580", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003c47531e1d2ab113c63bcc1640715c414a0689efb57555d014ccc2f51d90971134fde6cc7ec02d776eec8aad2899f205029859e656566ed2ed76956db9b45b9d00000000000000000000006a91c5a9000000000000000000000000000249f4320000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001b00000000174a094000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f432", - "digest": "0x7774b5f853af61c5f657d3e2a5dcfcf98104b09d1111e4d13cb24f2589b58521", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f432", - "digest": "0x06c7d4bda2bf7f6733880c7623d21cbd2c4221fc9a9771fdd4b1566fd82b0685", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "2316700000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001b00000000174a094000000000000000010000000000000001000000006a91c531", - "digest": "0x1884f56e077bc20c4f411c7512c182c52b1d775440f2eb6c8f262f0470d510df", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101362", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100737", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f432", - "digest": "0x06c7d4bda2bf7f6733880c7623d21cbd2c4221fc9a9771fdd4b1566fd82b0685", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100509", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1888030", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120406", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "227", - "totalGas": "130038", - "transactionId": "0x6d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x62797407df2e39b93cd5f3254ecca4268cd96ae60f007708af75fda3196fe485397d873b0680b2ebec931ddb75336da35c3f0eabbfbf830a5df5e0b7721f6ca4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x48a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a6", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "166115", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0063", - "utxoId": "0xeeab39bdda37d82f014642345c6621d1ac7dfc42aeb93d5e2149869f0bfe6dfe0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50046", - "utxoId": "0x6d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x65111641f155d7deed432933c273b2c0523274cf94a81e9bc5541e263db34212", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x92313bbef44372792b98f6fa21f3c5f2d59272c97f091ce21edc03ea938bca51", - "txPointer": "03bd1aa50046", - "utxoId": "0x6d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2965df0cca3bb02013f3de2bf84c0cd6f3f7b8ff7e1bd346add3e827c3233c65", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0xfea5a2dae15836d6aff1beae22ad56deb31913c4bbf0f086df78cb53d22c0730", - "txPointer": "03bd1aa50046", - "utxoId": "0x6d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "165891", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0319c3f4ef06e73ff63214ff66bcec95791f09b3062d7bf0850fa56c4b056cb9", - "inputIndex": "2", - "stateRoot": "0x010fb5b6015b42ac05a3d631b44887471b02ee1b0a1f7c3c283ca62f393967ac" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4b97783f591c95d5d5a13dbf44edd21b9eb92fc5b00b069fb3158cbe55c5dd44", - "inputIndex": "3", - "stateRoot": "0x85cc8a80e166f559fbc3e5546e49cce8c32559e9ebd0f1c2dd7166c95434edd2" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d184a964f3d9c2572e41707ab400c08293935ae47f51d072b1d09efe43bd1bd00000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006016feb83b6879515bcc87074484c866b1eff6c269f20d7880fde51fc849e99584965388ce5b60f92efc77a86a7289c9903d1579cc2cc9c0bbf8f27c639fb78f00000000000000000000006a91c5a9000000000000000000000000000249f4340000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002100000000174c189800000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000eeab39bdda37d82f014642345c6621d1ac7dfc42aeb93d5e2149869f0bfe6dfe0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000288e3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f0000000000000063000000000000000000000000000000000000000000000000000000000000000000000000000000016d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea000000000000000365111641f155d7deed432933c273b2c0523274cf94a81e9bc5541e263db3421292313bbef44372792b98f6fa21f3c5f2d59272c97f091ce21edc03ea938bca510000000003bd1aa50000000000000046295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000016d661a3200ebe56d08fdd946327e8cdeeb0e8d50573ce9e192119cd6964dddea00000000000000022965df0cca3bb02013f3de2bf84c0cd6f3f7b8ff7e1bd346add3e827c3233c65fea5a2dae15836d6aff1beae22ad56deb31913c4bbf0f086df78cb53d22c07300000000003bd1aa500000000000000469789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028803f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000020319c3f4ef06e73ff63214ff66bcec95791f09b3062d7bf0850fa56c4b056cb9010fb5b6015b42ac05a3d631b44887471b02ee1b0a1f7c3c283ca62f393967ac000000000000000100000000000000034b97783f591c95d5d5a13dbf44edd21b9eb92fc5b00b069fb3158cbe55c5dd4485cc8a80e166f559fbc3e5546e49cce8c32559e9ebd0f1c2dd7166c95434edd20000000000000040586bb423678e7d143ba2e59b2610063fc9bb4ff996719e3cabd96cfac875a58c46f4d4fe50c0e9361234b98cbe8c4f1a3abb5b2cf14c381a957b456203b59a23", - "receiptsRoot": "0xd184a964f3d9c2572e41707ab400c08293935ae47f51d072b1d09efe43bd1bd0", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006016feb83b6879515bcc87074484c866b1eff6c269f20d7880fde51fc849e99584965388ce5b60f92efc77a86a7289c9903d1579cc2cc9c0bbf8f27c639fb78f00000000000000000000006a91c5a9000000000000000000000000000249f4340000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002100000000174c189800000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f434", - "digest": "0x39365ced4d299c4cf4e9d5f7322f7a6a7107f195c932fd33c9dfed93208c74b4", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f434", - "digest": "0xea160e127c2f2bf07ba9c3aa0e754e651c0d5426fa2b45ed1aa36f95461250d4", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "7877000000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002100000000174c189800000000000000010000000000000001000000006a91c531", - "digest": "0x17f5a5a801f28fd831fd0bc4f31a36ae7653df91b192c1b4d94b601b6999c691", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101618", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100993", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f434", - "digest": "0xea160e127c2f2bf07ba9c3aa0e754e651c0d5426fa2b45ed1aa36f95461250d4", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100765", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1889459", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100293", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "118977", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "224", - "totalGas": "128609", - "transactionId": "0x48a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a6" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x586bb423678e7d143ba2e59b2610063fc9bb4ff996719e3cabd96cfac875a58c46f4d4fe50c0e9361234b98cbe8c4f1a3abb5b2cf14c381a957b456203b59a23" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x28e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "147517", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0064", - "utxoId": "0x850b9991c64eb5cf42fd82fbdecf893883ce2c3699f59c9120f24fd888ab71d00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9615ec3b47f6d89cbdcf51ac5d0d2a5b6665786eba363ec1041252a487df195d", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xc0d47558d67d40ef3f6407b7e3fc8296d30addc0c473afe37d1193e7e283bb3f", - "txPointer": "03bd1aa50038", - "utxoId": "0xb2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d00003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x40ca3228edb9cacb572dadd81dac02c325ba8b8fc9a253384df3dbf8233a29bf", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x4348b27248ba6fd62261d897a17f59e71ced535a5970c34df026c45bb8eddf65", - "txPointer": "03bd1aa50039", - "utxoId": "0x2be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c0920001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50047", - "utxoId": "0x48a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a60001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "147134", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd9b60b37126a783189faffe6eaec5e59df08439b7584c96b1d6f9a7cf1cf38ab", - "inputIndex": "1", - "stateRoot": "0x20e21764f4a32d2ce199e2f0b21452a7ac7f43d8a42617a0ed639c8f3acfbdd6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x76e3b8e75c2b1c33b8b3aaadf1b993369761ad4f5aa9714d1bea7c1d7b370485", - "inputIndex": "2", - "stateRoot": "0x8e3db00bacd7d3f68ee08aa928d68c5baa4b66101f81d29c0107c2acb8485989" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b4028a709e328e2710405de9279a22322c81ae7c2923eacf4efb09fe214811e10e9000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cc0642bd07fc9b3eb22c3f7d9a352b01926112dc58dd3bbee7282967f11f6d053301f633d1c110c5511c715ac5e5feef1dfd9c5afc118d279dccb47145a249f000000000000000000000006a91c5a9000000000000000000000000000a759f020000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000024000046e226f2ce8000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000003929fc1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e226f2ce8000000000003929fc0000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000850b9991c64eb5cf42fd82fbdecf893883ce2c3699f59c9120f24fd888ab71d00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002403df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006400000000000000000000000000000000000000000000000000000000000000000000000000000001b2b829451c5b084c6f7b94a385eadf0be6d1ef28c104c4479e7c30db7ff032d000000000000000039615ec3b47f6d89cbdcf51ac5d0d2a5b6665786eba363ec1041252a487df195dc0d47558d67d40ef3f6407b7e3fc8296d30addc0c473afe37d1193e7e283bb3f0000000003bd1aa500000000000000389423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000012be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c092000000000000000140ca3228edb9cacb572dadd81dac02c325ba8b8fc9a253384df3dbf8233a29bf4348b27248ba6fd62261d897a17f59e71ced535a5970c34df026c45bb8eddf650000000003bd1aa50000000000000039132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc000000000000000148a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a600000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023ebef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d9b60b37126a783189faffe6eaec5e59df08439b7584c96b1d6f9a7cf1cf38ab20e21764f4a32d2ce199e2f0b21452a7ac7f43d8a42617a0ed639c8f3acfbdd60000000000000001000000000000000276e3b8e75c2b1c33b8b3aaadf1b993369761ad4f5aa9714d1bea7c1d7b3704858e3db00bacd7d3f68ee08aa928d68c5baa4b66101f81d29c0107c2acb84859890000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004045c3d3489f9698bf1d3cd1aca11d6e8e09f416f68aeb69366496d0f7a3ee2437ebb2f3fbed661e0bdfaf0ffe09981d85dc41d4346ee326d5174796862b856807", - "receiptsRoot": "0x28a709e328e2710405de9279a22322c81ae7c2923eacf4efb09fe214811e10e9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cc0642bd07fc9b3eb22c3f7d9a352b01926112dc58dd3bbee7282967f11f6d053301f633d1c110c5511c715ac5e5feef1dfd9c5afc118d279dccb47145a249f000000000000000000000006a91c5a9000000000000000000000000000a759f020000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000024000046e226f2ce8000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000003929fc1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e226f2ce8000000000003929fc0000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000a759f02", - "digest": "0x2341aaea46e0e10423c9a6b128add5baa953e783e3799569688e53785dba2b35", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f02", - "digest": "0x050e9a77546e5eb33b66496c1cacc9ad2fadee7bd54976d3e4e27f6cd648f38e", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962951", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "2514300", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409832", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000024000046e226f2ce8000000000000000010000000000000003000000006a91c531", - "digest": "0x2eecb24284a33be82260422816cc2d422ecc731554c45398a66b979748dce692", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404180", - "ptr": "67099978", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381348", - "ptr": "67099353", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f02", - "digest": "0x050e9a77546e5eb33b66496c1cacc9ad2fadee7bd54976d3e4e27f6cd648f38e", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67099125", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4876476", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464080", - "ptr": "67098205", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377076", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f02", - "digest": "0x050e9a77546e5eb33b66496c1cacc9ad2fadee7bd54976d3e4e27f6cd648f38e", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67097977", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3746300", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": "4864201", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000025000046e226f2ce800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000000003929fc000046e226f2ce80000000006a91c531", - "digest": "0x71287ed87a5dd2bd356ee18bb33f762971904cf55a8d09cb64f679d596225633", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434812", - "ptr": "67096137", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000025000046e226f2ce8000000000000000010000000000000003", - "digest": "0x6f05ef87f104f38073acaed567b47936110a96c719baaf1982007be6005cf85b", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381044", - "ptr": "67091705", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "210110", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "383", - "totalGas": "219938", - "transactionId": "0x28e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x45c3d3489f9698bf1d3cd1aca11d6e8e09f416f68aeb69366496d0f7a3ee2437ebb2f3fbed661e0bdfaf0ffe09981d85dc41d4346ee326d5174796862b856807" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x86f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf22", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "309747", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0068", - "utxoId": "0xd4bdbd0c6f08a57b039e12f88ddd69fcb99be5accb45dae57a21f23a496721b50000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0319c3f4ef06e73ff63214ff66bcec95791f09b3062d7bf0850fa56c4b056cb9", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x09f0ad032b62053af0292dba5b485121ef2480eb8f2444568a2f56dea1e24499", - "txPointer": "03bd1aa50047", - "utxoId": "0x48a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a60002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50048", - "utxoId": "0x28e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4b97783f591c95d5d5a13dbf44edd21b9eb92fc5b00b069fb3158cbe55c5dd44", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0xa7defb9d4348a5c05e285faae148f4651ea586e113647bdbdb22e18bb755f217", - "txPointer": "03bd1aa50047", - "utxoId": "0x48a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a60003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "309510", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa605232124e37f051ebd6d892ab98b9ddc1805415842484d7f36aaf6ee775e25", - "inputIndex": "1", - "stateRoot": "0x7dc20cc4ae3b48be3583a6d4aa448e47a4bd58a69d596d7089ff38dd7cda71d6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7d2c43ee942eb0f9224d75685dae885b553ed891ac04375096cdf54ed39471bb", - "inputIndex": "3", - "stateRoot": "0x8d078f78c407ea1d85959c9ff39321e98c7ccb85529821d81694650cde098bc6" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801151c3ecc3ea1e351b297455b04c6eec5bbc3f7cb92b9837b3a0ecdec1150f3b00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000027581fd9ec2a1604d1eb9c43dc91b272ce63e74dea05741a1b96037b6fce6a1ac728dba751d23de01adf3ac82ebdd09d7bd591fba4790ba584aa446f90324e4700000000000000000000006a91c5a9000000000000000000000000000249f4380000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000000479e638400ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff000000000000000100000000000000180000000017489240000000479e638400000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000d4bdbd0c6f08a57b039e12f88ddd69fcb99be5accb45dae57a21f23a496721b50000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004b9f3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000680000000000000000000000000000000000000000000000000000000000000000000000000000000148a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a600000000000000020319c3f4ef06e73ff63214ff66bcec95791f09b3062d7bf0850fa56c4b056cb909f0ad032b62053af0292dba5b485121ef2480eb8f2444568a2f56dea1e244990000000003bd1aa50000000000000047295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25000000000000000128e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef400000000000000033c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000148a474eba44c3a2784b8e7dd78012e28f7a67216e37e2ad7ed0f796e716f41a600000000000000034b97783f591c95d5d5a13dbf44edd21b9eb92fc5b00b069fb3158cbe55c5dd44a7defb9d4348a5c05e285faae148f4651ea586e113647bdbdb22e18bb755f2170000000003bd1aa500000000000000479789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004b906f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001a605232124e37f051ebd6d892ab98b9ddc1805415842484d7f36aaf6ee775e257dc20cc4ae3b48be3583a6d4aa448e47a4bd58a69d596d7089ff38dd7cda71d60000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000037d2c43ee942eb0f9224d75685dae885b553ed891ac04375096cdf54ed39471bb8d078f78c407ea1d85959c9ff39321e98c7ccb85529821d81694650cde098bc60000000000000040d64b2645fd8064df2666fdf375af715e8c8827dc8be3b1ea780eaf006b76f3d749acf3ab3dbb3246cbf77347697716b661434aef15c5489b29b2ba8300ae0dec", - "receiptsRoot": "0x1151c3ecc3ea1e351b297455b04c6eec5bbc3f7cb92b9837b3a0ecdec1150f3b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000027581fd9ec2a1604d1eb9c43dc91b272ce63e74dea05741a1b96037b6fce6a1ac728dba751d23de01adf3ac82ebdd09d7bd591fba4790ba584aa446f90324e4700000000000000000000006a91c5a9000000000000000000000000000249f4380000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000000479e638400ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff000000000000000100000000000000180000000017489240000000479e6384000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f438", - "digest": "0x1c92044bd131a844fa597c971724bb34744c7ef10df13f4fd682f740f2063953", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f438", - "digest": "0x91cb2ddacfb61676127b40f4f635b6bc834582bb41430edeb45630e515dbaa8a", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f438", - "digest": "0x91cb2ddacfb61676127b40f4f635b6bc834582bb41430edeb45630e515dbaa8a", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "307600000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005900000000174892400000000000000001000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000010000000000000001000000479e6384000000000017489240000000006a91c531", - "digest": "0x996be0c69b6bc761d895e7cbcfb02e4a833717883666be146c49a23a5da57ba0", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000059000000001748924000000000000000010000000000000001", - "digest": "0xf90974b3a487a49a5883fd1f1830419071b892ac8067b2ecc3f73c836a52e315", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099862", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126578", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136199", - "transactionId": "0x86f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf22" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd64b2645fd8064df2666fdf375af715e8c8827dc8be3b1ea780eaf006b76f3d749acf3ab3dbb3246cbf77347697716b661434aef15c5489b29b2ba8300ae0dec" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2142105", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0066", - "utxoId": "0xd22bda1fa7b5fdc6d9a0006bffa9657bb66acb78d9cc6c90723c5d32203dfd780000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50049", - "utxoId": "0x86f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf220002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0f022b3eb50e48754526e4c6f118892439649760d81ef2d7f5f64b36fe4313af", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0xc0783f7a6d1201292172ae6e7c29d517234cffc8edc0ed1c7578cfaf61f502a7", - "txPointer": "03bd1aa50049", - "utxoId": "0x86f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf220001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xca045639ecf03ca1e6617e3579e95b3f710a63b69ef3c43b693f3d59eff6343b", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0xef680b16a13379c740f13bcdf4196d86ccff3e3fef00af44847e1eb5afc38ee9", - "txPointer": "03bd1aa50049", - "utxoId": "0x86f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf220003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2141868", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf021afaa4ce99242980a8b180f9591d7c5725865e53a55864d29003fba6e7bc5", - "inputIndex": "2", - "stateRoot": "0x7ba46fe3a8e184de5b07384a87b0f98bc7e205fb46512eba5c1255de0e834e58" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9f9e20fea5e291a3b4676f4cc8afa407c7ee67d9e80f9b04c7cb103795d5fff1", - "inputIndex": "3", - "stateRoot": "0xe03fb2a79f307763f1de0d1f28a0e2618dc8c2a9339c70b49556e9f33de7d02d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d2cd37fb9a530b0f3eb5f93ae56e77047e21519c961dce48a04ffa6dc73ad65a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b49550097ac688244a793404797f29b55776d831bc0ea574564e8216c6a62717a5fe4392ef17bea169e585fb4fdd923d94a3419dc76df17b04564f777424074300000000000000000000006a91c5a9000000000000000000000000000249f4360000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000139c33173806c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000017425880000003240eae2600000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000d22bda1fa7b5fdc6d9a0006bffa9657bb66acb78d9cc6c90723c5d32203dfd780000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000020af99f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000660000000000000000000000000000000000000000000000000000000000000000000000000000000186f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf2200000000000000023c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000186f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf2200000000000000010f022b3eb50e48754526e4c6f118892439649760d81ef2d7f5f64b36fe4313afc0783f7a6d1201292172ae6e7c29d517234cffc8edc0ed1c7578cfaf61f502a70000000003bd1aa50000000000000049295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25000000000000000186f659d57874336ff95c0355e6c886f783a549a85d0a434c9fefc0c6116fdf220000000000000003ca045639ecf03ca1e6617e3579e95b3f710a63b69ef3c43b693f3d59eff6343bef680b16a13379c740f13bcdf4196d86ccff3e3fef00af44847e1eb5afc38ee90000000003bd1aa500000000000000499789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000020aeacf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002f021afaa4ce99242980a8b180f9591d7c5725865e53a55864d29003fba6e7bc57ba46fe3a8e184de5b07384a87b0f98bc7e205fb46512eba5c1255de0e834e58000000000000000100000000000000039f9e20fea5e291a3b4676f4cc8afa407c7ee67d9e80f9b04c7cb103795d5fff1e03fb2a79f307763f1de0d1f28a0e2618dc8c2a9339c70b49556e9f33de7d02d0000000000000040f3c4a40cd078b93f11f35f43788b913c65d4808d8c44ae6d8d251d4c1bd5ee2ce813de23dc24cc259d745ccec3ec74413fdf3d7243c31beef1b26cd05d0969de", - "receiptsRoot": "0xd2cd37fb9a530b0f3eb5f93ae56e77047e21519c961dce48a04ffa6dc73ad65a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b49550097ac688244a793404797f29b55776d831bc0ea574564e8216c6a62717a5fe4392ef17bea169e585fb4fdd923d94a3419dc76df17b04564f777424074300000000000000000000006a91c5a9000000000000000000000000000249f4360000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000139c33173806c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000017425880000003240eae26000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f436", - "digest": "0x0343046a59b7d3b240f02831e2b68cc3455fb69f7c0797858ffd72e41faca916", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f436", - "digest": "0x0bc3a47a6631c68839689a43a394dc6c521b8b01a7bae785315d575417df5ba7", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f436", - "digest": "0x0bc3a47a6631c68839689a43a394dc6c521b8b01a7bae785315d575417df5ba7", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1347599561600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004400000000174258800000000000000000000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000001000003240eae26000000000017425880000000006a91c531", - "digest": "0x37f553598e15fa16f441a189add4ab99255674d5525fbf5540daa591b898cbb0", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000044000000001742588000000000000000000000000000000001", - "digest": "0xe3cb19c33729c5db5f9b6e66ce8853d38af84921d68bfaa05ba4436abad60054", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099862", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126525", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136146", - "transactionId": "0x733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf3c4a40cd078b93f11f35f43788b913c65d4808d8c44ae6d8d251d4c1bd5ee2ce813de23dc24cc259d745ccec3ec74413fdf3d7243c31beef1b26cd05d0969de" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x60197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a4248", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "147679", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0069", - "utxoId": "0x5961e3139f5305dd7733c831c90e7c81199693ab06982b96d3c28934f27a61c70000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5004a", - "utxoId": "0x733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf021afaa4ce99242980a8b180f9591d7c5725865e53a55864d29003fba6e7bc5", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x1980574a769b44c7192064b094b8506921b181ada6c72cf561175811518dac6c", - "txPointer": "03bd1aa5004a", - "utxoId": "0x733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9f9e20fea5e291a3b4676f4cc8afa407c7ee67d9e80f9b04c7cb103795d5fff1", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0xaa01232378bd6eb2a0497571893fbeee0b3952c7573e89851a3da76a8385f848", - "txPointer": "03bd1aa5004a", - "utxoId": "0x733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "147444", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x90c3eb684b9457c6f162afc67b6a366a4be7314fbae24066f7ba59ba90dbf566", - "inputIndex": "2", - "stateRoot": "0xf4224c8b7e96b7381383168baa153d151385068fd2fb18507f3fc581f2f53cfa" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x69b163faf9f8d8ccde3000ad101fe31a1c808e1883fbd25eec2ae73511b82f9b", - "inputIndex": "3", - "stateRoot": "0x3cc7541cee91216cd64cfc6b792cce4e344a1407948e6b18b3cbba629bc73c06" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802b672895f24d91dbdd94197106a026908923b51c8e86e8c9528779fb1521460300000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000387ba271e429886207a0e8e628e4360e00f588617ec2fbd3881b67caf1a5a6ca55f41b39da20e92997333c63be63b07e1692967bd8a7b87864de3f37324bfbfe00000000000000000000006a91c5a9000000000000000000000000000249f4390000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000002847430c1b86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000173fc45800000674367af200000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000005961e3139f5305dd7733c831c90e7c81199693ab06982b96d3c28934f27a61c70000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000240dff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006900000000000000000000000000000000000000000000000000000000000000000000000000000001733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce00000000000000013c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce0000000000000002f021afaa4ce99242980a8b180f9591d7c5725865e53a55864d29003fba6e7bc51980574a769b44c7192064b094b8506921b181ada6c72cf561175811518dac6c0000000003bd1aa5000000000000004a295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000001733e0e654e9f971b45ebe884e5bcf0971ea04143ada0bd6f29944f33594b99ce00000000000000039f9e20fea5e291a3b4676f4cc8afa407c7ee67d9e80f9b04c7cb103795d5fff1aa01232378bd6eb2a0497571893fbeee0b3952c7573e89851a3da76a8385f8480000000003bd1aa5000000000000004a9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023ff4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000290c3eb684b9457c6f162afc67b6a366a4be7314fbae24066f7ba59ba90dbf566f4224c8b7e96b7381383168baa153d151385068fd2fb18507f3fc581f2f53cfa0000000000000001000000000000000369b163faf9f8d8ccde3000ad101fe31a1c808e1883fbd25eec2ae73511b82f9b3cc7541cee91216cd64cfc6b792cce4e344a1407948e6b18b3cbba629bc73c0600000000000000402e22984f302b5c21c8620d10cb6bacaa776d91603dce427a4d9a8eb7dfab4eddc7fc30564019dd200bd1d69260dc440fc7829e5cca129c9046f1db89807dc880", - "receiptsRoot": "0x2b672895f24d91dbdd94197106a026908923b51c8e86e8c9528779fb15214603", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000387ba271e429886207a0e8e628e4360e00f588617ec2fbd3881b67caf1a5a6ca55f41b39da20e92997333c63be63b07e1692967bd8a7b87864de3f37324bfbfe00000000000000000000006a91c5a9000000000000000000000000000249f4390000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000002847430c1b86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000173fc45800000674367af2000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f439", - "digest": "0xf8ba112fb02081a1af67994c966570eba4b0313db04c724b5f594eb7d3f54dd2", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f439", - "digest": "0x67a474d0fdb536739d9110ba31fc00e3c147022309233bf5eb32f6c85f1bc657", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f439", - "digest": "0x67a474d0fdb536739d9110ba31fc00e3c147022309233bf5eb32f6c85f1bc657", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2767908291000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001000000000173fc4580000000000000000000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000000000000000000000100000674367af20000000000173fc458000000006a91c531", - "digest": "0x05ce198c0dfee8011a7660198dfa272aad12bf0534346247d439370aec0a9825", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001000000000173fc45800000000000000000000000000000001", - "digest": "0x2f7a63305dcbb5c12be59702fb9a6d70a12479a3e57b746529df4370a631ff71", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100118", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125113", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "235", - "totalGas": "134734", - "transactionId": "0x60197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a4248" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x2e22984f302b5c21c8620d10cb6bacaa776d91603dce427a4d9a8eb7dfab4eddc7fc30564019dd200bd1d69260dc440fc7829e5cca129c9046f1db89807dc880" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1883126", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0065", - "utxoId": "0x80ada961d197ee49f0e4fa4e6c3dace59008f48ab56eb45e3f6e4489129e5b4e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x90c3eb684b9457c6f162afc67b6a366a4be7314fbae24066f7ba59ba90dbf566", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x96e3382efc35c84fce62808953aa46eab6955c3ba5b5945b4fb63a348e65ea8e", - "txPointer": "03bd1aa5004b", - "utxoId": "0x60197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a42480002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x69b163faf9f8d8ccde3000ad101fe31a1c808e1883fbd25eec2ae73511b82f9b", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0xf9f956b05a948055c4838415aca8bb3b64b6ccb069245b550a28b19c6c6c6793", - "txPointer": "03bd1aa5004b", - "utxoId": "0x60197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a42480003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5004b", - "utxoId": "0x60197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a42480001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1882889", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9cc53f4335e124db57ec6624a43e1f4c623d92bb5d7ba23b1ed09f57a962b4c0", - "inputIndex": "1", - "stateRoot": "0x43ad781ca8fa661313670038cfe79cec355dcba8609764f137f3c36b337f6e69" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x76d5a9eb422f26f79adf614376998ce0a87b17052e317665edea9ec60e21b9b2", - "inputIndex": "2", - "stateRoot": "0x8db63685a4f0fea593e9fb117639aa454b60ff1260da92a42f5ae050508e7de5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f6c634dc167816bc998b38c95f9c328388aaf7c23143755ffcb459e7d1b878f400000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000377b950c13ae7bde4af40a05cae643f1fcdd8e3364220b3f4839646613e66b37bc1376ccbdada4c8f7a5f605c412f7548ea4f4e5eae0043ec0cdc8a95ef42d3e00000000000000000000006a91c5a9000000000000000000000000000249f4350000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000007bbe32a0c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000001743f2a800000013d05af300000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000080ada961d197ee49f0e4fa4e6c3dace59008f48ab56eb45e3f6e4489129e5b4e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001cbbf6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f00000000000000650000000000000000000000000000000000000000000000000000000000000000000000000000000160197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a4248000000000000000290c3eb684b9457c6f162afc67b6a366a4be7314fbae24066f7ba59ba90dbf56696e3382efc35c84fce62808953aa46eab6955c3ba5b5945b4fb63a348e65ea8e0000000003bd1aa5000000000000004b295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25000000000000000160197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a4248000000000000000369b163faf9f8d8ccde3000ad101fe31a1c808e1883fbd25eec2ae73511b82f9bf9f956b05a948055c4838415aca8bb3b64b6ccb069245b550a28b19c6c6c67930000000003bd1aa5000000000000004b9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d000000000000000160197844cb2dc8c09b61303b8a20d108cc4a43e4bcb3f0b6598639b6682a424800000000000000013c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001cbb09f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000019cc53f4335e124db57ec6624a43e1f4c623d92bb5d7ba23b1ed09f57a962b4c043ad781ca8fa661313670038cfe79cec355dcba8609764f137f3c36b337f6e690000000000000001000000000000000276d5a9eb422f26f79adf614376998ce0a87b17052e317665edea9ec60e21b9b28db63685a4f0fea593e9fb117639aa454b60ff1260da92a42f5ae050508e7de500000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040275a9b0a00139303d518cc13655f40655fc0d4d941a64d84e5fa07b8371e1f96005a8b829b115e6b6cbff9c493b79f3f55546824416bf3b8a1918a6d50a2ea26", - "receiptsRoot": "0xf6c634dc167816bc998b38c95f9c328388aaf7c23143755ffcb459e7d1b878f4", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000377b950c13ae7bde4af40a05cae643f1fcdd8e3364220b3f4839646613e66b37bc1376ccbdada4c8f7a5f605c412f7548ea4f4e5eae0043ec0cdc8a95ef42d3e00000000000000000000006a91c5a9000000000000000000000000000249f4350000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000007bbe32a0c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000001743f2a800000013d05af3000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f435", - "digest": "0x4ad8f3bbe533919d213b570e347f9550fa09b19ba71a23225e317078f30df91d", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f435", - "digest": "0x690d8d39e0d69df43f398a2b5b106e6160b8e0ec89c5a1c92a11206369c32b79", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f435", - "digest": "0x690d8d39e0d69df43f398a2b5b106e6160b8e0ec89c5a1c92a11206369c32b79", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "33216997900", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000024000000001743f2a80000000000000000000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000000000000000000000100000013d05af300000000001743f2a8000000006a91c531", - "digest": "0x8e2b7f91edd7af772f9303f3e0b321b2c60a4b907cb2e4a7f3fba668c85c43d6", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000024000000001743f2a800000000000000000000000000000001", - "digest": "0xb037db47aa6fd17b21f3a0c9ad2062213f15a76a6a44b48616134a0ba33d4fc6", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126581", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136202", - "transactionId": "0xff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x275a9b0a00139303d518cc13655f40655fc0d4d941a64d84e5fa07b8371e1f96005a8b829b115e6b6cbff9c493b79f3f55546824416bf3b8a1918a6d50a2ea26" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8b8a76a5a53b1fbcd9022416d5e16001f8ffc71897cbe04f2d02643a39127713", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "162652", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f0067", - "utxoId": "0x9a94d88dfeb0f7145f33733b817dea3608ee3cad8931c99cbbfd5c4646297b6d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7d2c43ee942eb0f9224d75685dae885b553ed891ac04375096cdf54ed39471bb", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x46a9a57a1ccd1b919d612622a12d39a7e862fad822a36434562ec9e62d5112ce", - "txPointer": "03bd1aa5004c", - "utxoId": "0xff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5004c", - "utxoId": "0xff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa605232124e37f051ebd6d892ab98b9ddc1805415842484d7f36aaf6ee775e25", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0xfe61632b4344fd2900df642043d81731bbef20ee1e7099c8a583c2e95d37bbf9", - "txPointer": "03bd1aa5004c", - "utxoId": "0xff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "162417", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf9d1071c68f73d43097766cd8f9e81b863512e8cac814771068491b3988a9663", - "inputIndex": "1", - "stateRoot": "0xf10b04f2ce1791842a7103eae2827fad7a22a68b486d9c58ab3e68f15fc694f0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4c4e3d88148de6cd4075aaeacb8f507328fdf10a590da5c92b2fe44536db94bf", - "inputIndex": "3", - "stateRoot": "0x8119d6a7808f546c89d55b86ec82e4a33c338e4ac19345721bf898f1a2c7df0d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805a671693e13e837a16f3b029a0213a657b4d0ca5a741fd65172e3f8b6cbcca7700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006c2b5671cf5cc2bbc9d70f84fa71fc9e6119b5c183e327c77bf5c0d0d5011d387a9182737f56f5a928d40516eef440b897242a50d0895ee2a1bf0bf2e4a7554b00000000000000000000006a91c5a9000000000000000000000000000249f4370000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000209e9c59000ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174a2c6800000209e9c59000000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000009a94d88dfeb0f7145f33733b817dea3608ee3cad8931c99cbbfd5c4646297b6d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027b5cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006700000000000000000000000000000000000000000000000000000000000000000000000000000001ff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a00000000000000027d2c43ee942eb0f9224d75685dae885b553ed891ac04375096cdf54ed39471bb46a9a57a1ccd1b919d612622a12d39a7e862fad822a36434562ec9e62d5112ce0000000003bd1aa5000000000000004c9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001ff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a00000000000000033c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ff5ff588cd72aa902a743cfe3c0085e9516a733f86518a11e21dec981f07fb3a0000000000000001a605232124e37f051ebd6d892ab98b9ddc1805415842484d7f36aaf6ee775e25fe61632b4344fd2900df642043d81731bbef20ee1e7099c8a583c2e95d37bbf90000000003bd1aa5000000000000004c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027a71f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001f9d1071c68f73d43097766cd8f9e81b863512e8cac814771068491b3988a9663f10b04f2ce1791842a7103eae2827fad7a22a68b486d9c58ab3e68f15fc694f00000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000034c4e3d88148de6cd4075aaeacb8f507328fdf10a590da5c92b2fe44536db94bf8119d6a7808f546c89d55b86ec82e4a33c338e4ac19345721bf898f1a2c7df0d0000000000000040096da70e8c3b1c2acba4878d49b53e93471798cdd01bd6a543e9552a03cdfd4014b5960ca4557e1f24de8925f81395471ed61fbaa8ae0abc521b0e23473a5104", - "receiptsRoot": "0x5a671693e13e837a16f3b029a0213a657b4d0ca5a741fd65172e3f8b6cbcca77", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006c2b5671cf5cc2bbc9d70f84fa71fc9e6119b5c183e327c77bf5c0d0d5011d387a9182737f56f5a928d40516eef440b897242a50d0895ee2a1bf0bf2e4a7554b00000000000000000000006a91c5a9000000000000000000000000000249f4370000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000209e9c59000ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174a2c6800000209e9c590000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000249f437", - "digest": "0xe7e44ca64e928a44cdbc7e3fc785b14909a4235af50695756359c3791ac1dc36", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f437", - "digest": "0x1023b41bbd62cc4aa98c74d69b4ba1a645b9d6bd90cd287df0c444e0b4c4cff5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a9000000000000000000000000000249f437", - "digest": "0x1023b41bbd62cc4aa98c74d69b4ba1a645b9d6bd90cd287df0c444e0b4c4cff5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2241600000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004500000000174a2c680000000000000001000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001000000000000000100000209e9c5900000000000174a2c68000000006a91c531", - "digest": "0x095276aa134f6eb32b93339ec95a1af168be047515232d55c428d39436a46cea", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004500000000174a2c6800000000000000010000000000000001", - "digest": "0xeb760f83b57558d8ffa7c8eca420332c8746ff3db4a49c8f82e1e6ab189d1c54", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100054", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125215", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "235", - "totalGas": "134836", - "transactionId": "0x8b8a76a5a53b1fbcd9022416d5e16001f8ffc71897cbe04f2d02643a39127713" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x096da70e8c3b1c2acba4878d49b53e93471798cdd01bd6a543e9552a03cdfd4014b5960ca4557e1f24de8925f81395471ed61fbaa8ae0abc521b0e23473a5104" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2012169", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f006a", - "utxoId": "0xfdf129f05b62dd1cfc5f01b8b1a7e40c328d239c80f9b4dc322279ebe0a978680000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0ecf80631c4637179f65dbe9275dbf896f200527033dc0077eff3883d8643837", - "contractId": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "stateRoot": "0x619d814f83b7829b855526ba169ec720102a6c95c6fd28b6ff96b75ee0a6cd36", - "txPointer": "03bd1aa3001d", - "utxoId": "0x25079a309745b5d318b7d0592b39911b10a2988c564fddf4ab79cfe32a4024cf0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9cc53f4335e124db57ec6624a43e1f4c623d92bb5d7ba23b1ed09f57a962b4c0", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x6b41e9fc57ddcdc3bf9d83825bd0048212d054ab0108495ddb89882bb359c254", - "txPointer": "03bd1aa5004d", - "utxoId": "0x8b8a76a5a53b1fbcd9022416d5e16001f8ffc71897cbe04f2d02643a391277130003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x068951c6f249d9dce0961446d40b2b08d2ba75df3586b85de5dfbb2414ddab2e", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5004d", - "utxoId": "0x8b8a76a5a53b1fbcd9022416d5e16001f8ffc71897cbe04f2d02643a391277130002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2011990", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848017c7ddc25d351df83ae0bf7187b2c8ae7ec53dcaa3581b4e495ec6d9cc47972200000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f800000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a3d63b854349a202f707477a8b6653a0928edc8b052db2c7aa4daea155cfd11d8c433a1e1bf2fe655df3f1fe7edb90c584bd73674fb4f28865ba6f6bfc0af52700000000000000000000006a91c5a900000000000000000000000000000f55680000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000000483f6a2c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000174e434800000000b8c63f00000000000000000300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000fdf129f05b62dd1cfc5f01b8b1a7e40c328d239c80f9b4dc322279ebe0a978680000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001eb409f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006a0000000000000000000000000000000000000000000000000000000000000000000000000000000125079a309745b5d318b7d0592b39911b10a2988c564fddf4ab79cfe32a4024cf00000000000000010ecf80631c4637179f65dbe9275dbf896f200527033dc0077eff3883d8643837619d814f83b7829b855526ba169ec720102a6c95c6fd28b6ff96b75ee0a6cd360000000003bd1aa3000000000000001daef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f800000000000000018b8a76a5a53b1fbcd9022416d5e16001f8ffc71897cbe04f2d02643a3912771300000000000000039cc53f4335e124db57ec6624a43e1f4c623d92bb5d7ba23b1ed09f57a962b4c06b41e9fc57ddcdc3bf9d83825bd0048212d054ab0108495ddb89882bb359c2540000000003bd1aa5000000000000004d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000018b8a76a5a53b1fbcd9022416d5e16001f8ffc71897cbe04f2d02643a391277130000000000000002068951c6f249d9dce0961446d40b2b08d2ba75df3586b85de5dfbb2414ddab2e00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001eb356f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406bb190a28025965ad24537b2e634466c6a3134c5252c8af016fdb70be05a576b9e7bcb8edbcf05b027a8586a4ff5e3708a84b6d1a2122063cc073503c6447057", - "receiptsRoot": "0x17c7ddc25d351df83ae0bf7187b2c8ae7ec53dcaa3581b4e495ec6d9cc479722", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f800000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a3d63b854349a202f707477a8b6653a0928edc8b052db2c7aa4daea155cfd11d8c433a1e1bf2fe655df3f1fe7edb90c584bd73674fb4f28865ba6f6bfc0af52700000000000000000000006a91c5a900000000000000000000000000000f55680000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000000483f6a2c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000174e434800000000b8c63f000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "FailureStatus", - "programState": { - "data": "0xffffffffffff0006", - "returnType": "REVERT" - }, - "reason": "Revert(18446744073709486086)", - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000000f5568", - "digest": "0xcc7bbe28c85d515754d1085fd88281819c547330071bf7993d22434de9b4bd39", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000059fcdccd31d2fa35ec6ee9d3b08e41a7ff37fa2618f23c27658e299c4921eae5295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a900000000000000000000000000000f5568", - "digest": "0x073daddbbf2eafc337a5a0ff7901055a8a1d2f79c56278bd77458c5f7cb85a20", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "1210580830", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f80000000000000000000000004827ff5e", - "digest": "0xf2c08f9b1f04b584aca3b2de7eb8db421cadc014d68fb2aa028c3ec05b4e226a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000059fcdccd31d2fa35ec6ee9d3b08e41a7ff37fa2618f23c27658e299c4921eae5295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a900000000000000000000000000000f5568", - "digest": "0x073daddbbf2eafc337a5a0ff7901055a8a1d2f79c56278bd77458c5f7cb85a20", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1212115500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002900000000174e4348000000000000000000000000000000030000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f80000000000000000000000000000000300000000b8c63f0000000000174e4348000000006a91c531", - "digest": "0xf4f53f1407433b8aca02b2ba8c79e28914f631bac4a44ef39eda7536e745f4e0", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000059000000001748924000000000000000010000000000000001000000000000002900000000174e43480000000000000000000000000000000300000000b8c63f000000000017489240000000006a91c531", - "digest": "0x141a78b839056fd1a4a9ebd60932875d1e8ec8ff6b8a2176e1404c4c2c588d00", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000004baf00000000000000000", - "digest": "0x690cc5de7c585f1691b74578432c28cd776a7b9801c7295f18bcaffbba8caa6b", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67102606", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1156300", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000008", - "digest": "0x4c0e071832d527694adea57b50dd7b2164c2a47c02940dcf26fa07c44d6d222a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "8", - "nonce": null, - "param1": null, - "param2": null, - "pc": "429468", - "ptr": "67101358", - "ra": "0", - "rb": "12033795032676640771", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "447860", - "ptr": null, - "ra": "18446744073709486086", - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "REVERT", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "92749", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "1", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "179", - "totalGas": "102370", - "transactionId": "0x1dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6bb190a28025965ad24537b2e634466c6a3134c5252c8af016fdb70be05a576b9e7bcb8edbcf05b027a8586a4ff5e3708a84b6d1a2122063cc073503c6447057" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xeee4ef8c5bcb0451f59f2df73f0c34e3038e9204e531901448dd5bb139194ed0", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "284472", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f006b", - "utxoId": "0xb61dbd5d9e67f2c41f93214ce3a1a6da96c3a467d17baa0d53d123fc6b6e70210000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x647374bbe5178bded2f0069eaed61a84a43142a421aabd2541e06801178bd4cc", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x928623dd02379e7affd649178ba8a764958bf9b101c63a02a4bd06ab4930092b", - "txPointer": "03bd1aa5004e", - "utxoId": "0x1dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f50002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x068951c6f249d9dce0961446d40b2b08d2ba75df3586b85de5dfbb2414ddab2e", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5004e", - "utxoId": "0x1dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb7f3d39f626aae20e2fbab1fbdaf16f9b1368541d495abe4f777a2632198ac6d", - "contractId": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "stateRoot": "0x619d814f83b7829b855526ba169ec720102a6c95c6fd28b6ff96b75ee0a6cd36", - "txPointer": "03bd1aa5004e", - "utxoId": "0x1dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f50001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "284229", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xaf90eebd8b7dd8827783b8dd600fff9330f43e8525647ed10ce1d080956e2f36", - "inputIndex": "1", - "stateRoot": "0xb8761b4de1b7e7cb24262865d1269731b5cf3fbdfed056055786e3062642589f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2a13481026219bddb17b8d5a01a808455be42cb4e01a8c67d5ea9eaec554700c", - "inputIndex": "3", - "stateRoot": "0xc0c20452a5bf725bee8214a1519ec1607ecd251dffde59980ce715dfab0ca14b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848053234bddcfd0dc78bb5c3c74ab9a8d2db5e21b0a100d0fe31451ff1f697a695a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f800000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000520ee11be37ea4f65684072e84b6afc2cd1dcba48bea6233c24dac499ff453b35b97007bdf27f61a64d47d8aeb21f21ba8db92cb503659167439dbc2d688087500000000000000000000006a91c5a900000000000000000000000000000f55690000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000000b8c63f00ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff000000000000000100000000000000180000000017474a2000000000b8c63f00000000000000000300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000b61dbd5d9e67f2c41f93214ce3a1a6da96c3a467d17baa0d53d123fc6b6e70210000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000045738f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006b000000000000000000000000000000000000000000000000000000000000000000000000000000011dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f50000000000000002647374bbe5178bded2f0069eaed61a84a43142a421aabd2541e06801178bd4cc928623dd02379e7affd649178ba8a764958bf9b101c63a02a4bd06ab4930092b0000000003bd1aa5000000000000004e295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000011dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f50000000000000003068951c6f249d9dce0961446d40b2b08d2ba75df3586b85de5dfbb2414ddab2e00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000011dc871b0ab886248901d44101eb580dacef344c581bd995ca956a35d4bd743f50000000000000001b7f3d39f626aae20e2fbab1fbdaf16f9b1368541d495abe4f777a2632198ac6d619d814f83b7829b855526ba169ec720102a6c95c6fd28b6ff96b75ee0a6cd360000000003bd1aa5000000000000004eaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f80000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000045645f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001af90eebd8b7dd8827783b8dd600fff9330f43e8525647ed10ce1d080956e2f36b8761b4de1b7e7cb24262865d1269731b5cf3fbdfed056055786e3062642589f0000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000032a13481026219bddb17b8d5a01a808455be42cb4e01a8c67d5ea9eaec554700cc0c20452a5bf725bee8214a1519ec1607ecd251dffde59980ce715dfab0ca14b0000000000000040b967319a2da39f290b58af4f0e412f3bc80379728f7de8866a9a92422f69a79aaf0c5b0109cea7f97f51d8f79c0f0c88626f97e7e09c5819448815723e399136", - "receiptsRoot": "0x53234bddcfd0dc78bb5c3c74ab9a8d2db5e21b0a100d0fe31451ff1f697a695a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f800000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000520ee11be37ea4f65684072e84b6afc2cd1dcba48bea6233c24dac499ff453b35b97007bdf27f61a64d47d8aeb21f21ba8db92cb503659167439dbc2d688087500000000000000000000006a91c5a900000000000000000000000000000f55690000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000000b8c63f00ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff000000000000000100000000000000180000000017474a2000000000b8c63f000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000000f5569", - "digest": "0xf0ba6006c4af61ff6bfaee11c644424b047a4cf6a64091bb5ddee0d46f72ac50", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000059fcdccd31d2fa35ec6ee9d3b08e41a7ff37fa2618f23c27658e299c4921eae5295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a900000000000000000000000000000f5569", - "digest": "0x53733aa43ea0c3df606dc6b3161c67169fb0ea807ca0231b5db0d12183dea7cf", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "1210580830", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f80000000000000000000000004827ff5e", - "digest": "0xf2c08f9b1f04b584aca3b2de7eb8db421cadc014d68fb2aa028c3ec05b4e226a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000059fcdccd31d2fa35ec6ee9d3b08e41a7ff37fa2618f23c27658e299c4921eae5295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a900000000000000000000000000000f5569", - "digest": "0x53733aa43ea0c3df606dc6b3161c67169fb0ea807ca0231b5db0d12183dea7cf", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3100000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000460000000017474a20000000000000000100000000000000030000000000000001aef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f80000000000000001000000000000000300000000b8c63f000000000017474a20000000006a91c531", - "digest": "0x2b6f9293b50afc1c8efaeefacbb75d55587c65ffc285506b475cc9ae7720553e", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000460000000017474a2000000000000000010000000000000003", - "digest": "0x83adfe921b6cc24983e1447edd267ddf02634850535e2e9de5342b49f161e9b3", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xaef8d06b4e0e2229cab236a8638b80e51552ecd6ac40176e9e6771b641dae5f8", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129791", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "243", - "totalGas": "139412", - "transactionId": "0xeee4ef8c5bcb0451f59f2df73f0c34e3038e9204e531901448dd5bb139194ed0" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb967319a2da39f290b58af4f0e412f3bc80379728f7de8866a9a92422f69a79aaf0c5b0109cea7f97f51d8f79c0f0c88626f97e7e09c5819448815723e399136" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x49e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153014", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f006c", - "utxoId": "0xff43af4b10afa0d3d7ffe8bbcabf50ab7d9e8b355da7984e87c38976d551b9d30000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5f76950beb40e8b9203cd4f3dffaee887088ca4eeb374c192204487606b9f50a", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x93e6875f9fd0045a6989013b13b4af83941f9af8e2270696680aee0ef3c1f1c5", - "txPointer": "03bd1aa50036", - "utxoId": "0xc71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f106940002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8cedc73e575cb170e5569a19fc57a19489a30ac7db7323489db73d08cbef7220", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x33b05e2b465bc2bd929412ec3dfad5dcd98e366825b87572c37c6328e4bc335d", - "txPointer": "03bd1aa50048", - "utxoId": "0x28e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5004f", - "utxoId": "0xeee4ef8c5bcb0451f59f2df73f0c34e3038e9204e531901448dd5bb139194ed00002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "152673", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfe6e217f2fe10c4d3ea1066e350ed4d68c96936d33f98a5694a06fa083110f99", - "inputIndex": "1", - "stateRoot": "0x6d6afe12103e2adaf7ebea0ad58d19fccb285daaed2ecf3e7ddf51fe25281eab" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x89b893c5f0c56a9b01fc5c08783b767826a6662e6e3f08b7bf5bf64d237a6ea2", - "inputIndex": "2", - "stateRoot": "0xb769c376a42fa2a3ecaa55ae8684c80df5865daba2d0c9555dfe1cf91e8d2bd4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40eeef4b2c3b05888e41925d3e78320844fe820c0e450755f8a933bea3cce51760000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d9fdfb251410f0d6c578717e8b0c859356d0ccee43c9710d9064b601677dd7fc8479e40785fb13a1e4ae042c78d0734390395fd4ed40404bb19146009880ef6700000000000000000000006a91c5a9000000000000000000000000000a759f030000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000009d00000000000cf69d00000000000000000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000000a62f3a8c96c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cf69d00002fc1b44ae2000000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000ff43af4b10afa0d3d7ffe8bbcabf50ab7d9e8b355da7984e87c38976d551b9d30000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000255b6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006c00000000000000000000000000000000000000000000000000000000000000000000000000000001c71fb8dc211e0ec540afe345723794a4ccd007de9dec01f621c084f0f0f1069400000000000000025f76950beb40e8b9203cd4f3dffaee887088ca4eeb374c192204487606b9f50a93e6875f9fd0045a6989013b13b4af83941f9af8e2270696680aee0ef3c1f1c50000000003bd1aa50000000000000036df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665000000000000000128e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef400000000000000018cedc73e575cb170e5569a19fc57a19489a30ac7db7323489db73d08cbef722033b05e2b465bc2bd929412ec3dfad5dcd98e366825b87572c37c6328e4bc335d0000000003bd1aa500000000000000489423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001eee4ef8c5bcb0451f59f2df73f0c34e3038e9204e531901448dd5bb139194ed000000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000004f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025461f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001fe6e217f2fe10c4d3ea1066e350ed4d68c96936d33f98a5694a06fa083110f996d6afe12103e2adaf7ebea0ad58d19fccb285daaed2ecf3e7ddf51fe25281eab0000000000000001000000000000000289b893c5f0c56a9b01fc5c08783b767826a6662e6e3f08b7bf5bf64d237a6ea2b769c376a42fa2a3ecaa55ae8684c80df5865daba2d0c9555dfe1cf91e8d2bd4000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000404b5801d4d6f95d9f211338c07af4ffc41f487c6297c0ef0da9874a5ad782ce61bf9c9feedfa127607d68a5dcffba19e5e109bdaf9c4bdf51416d1e384014d694", - "receiptsRoot": "0xeeef4b2c3b05888e41925d3e78320844fe820c0e450755f8a933bea3cce51760", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d9fdfb251410f0d6c578717e8b0c859356d0ccee43c9710d9064b601677dd7fc8479e40785fb13a1e4ae042c78d0734390395fd4ed40404bb19146009880ef6700000000000000000000006a91c5a9000000000000000000000000000a759f030000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000009d00000000000cf69d00000000000000000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000000a62f3a8c96c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cf69d00002fc1b44ae2000000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000a759f03", - "digest": "0x4fb468f778b0a7c1bcea1018377a8ea0609b2e31afff0d9661646c47f36e6ce3", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a9000000000000000000000000000a759f03", - "digest": "0x6774c0da3b6f7e44f34af12b497ec7b85dc1d7f06f318b6e79d5420526f12e7b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962951", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "21642668375", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409832", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009d00000000000cf69d00000000000000000000000000000003000000006a91c531", - "digest": "0x1839e703f46ae8e7cc8429b9bb6a4a502c8e8862e5adcc1ffbeee94c8cd7cf28", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404180", - "ptr": "67101114", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381348", - "ptr": "67100489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a9000000000000000000000000000a759f03", - "digest": "0x6774c0da3b6f7e44f34af12b497ec7b85dc1d7f06f318b6e79d5420526f12e7b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67100261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4891070", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464080", - "ptr": "67099341", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377076", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a9000000000000000000000000000a759f03", - "digest": "0x6774c0da3b6f7e44f34af12b497ec7b85dc1d7f06f318b6e79d5420526f12e7b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67099113", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "44609808585", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4878795", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009e00000000000cf69d0000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000000000000000300002fc1b44ae20000000000000cf69d000000006a91c531", - "digest": "0x4fbe64e736f67ca3a6bc0117e02cddd051804981ad667cf4f7dd0a3f4f191a19", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434812", - "ptr": "67097273", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009e00000000000cf69d00000000000000000000000000000003", - "digest": "0xd99091342304d9e8691a28803c1216991c0939183ff49743e6a6efe21984ce4c", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381044", - "ptr": "67093769", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "185814", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "341", - "totalGas": "195642", - "transactionId": "0x49e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x4b5801d4d6f95d9f211338c07af4ffc41f487c6297c0ef0da9874a5ad782ce61bf9c9feedfa127607d68a5dcffba19e5e109bdaf9c4bdf51416d1e384014d694" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x497b9619a93201634303959c0af1d3cba1052e3013ce42183d195c49c02151fb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2138346", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f006d", - "utxoId": "0x2352e08a79a4991a531b965251b642191c39a79913e0e20acf312ca4c02b9c4f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5c5cb4602f6f21f63dfc181a0c20a66d96bd7785956ead1b34f158bb67709dde", - "contractId": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "stateRoot": "0x8c4682d969ccc0e9015a17d0ee881d9bcbdbdc40069782bb6aa16189a12c7c52", - "txPointer": "03bd1aa50003", - "utxoId": "0xc7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe88647d0b718f1085023754c73282374dfa67407929e7db34b2bc75a03e79d3c", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0xbf35936fd448b9f4fb42edd7336e28573f097c3b920ff227b626ea8fd50349b8", - "txPointer": "03bd1aa50003", - "utxoId": "0xc7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x55b8fae932d0de9c03bc489f11efaddcc7a4a2ec3d57e4d77c2a10e8c8eba285", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50050", - "utxoId": "0x49e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2138109", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3f0c5d6f6fccd94749bda12ca1234ffadef29f083374eb172acedfc40cb7e06e", - "inputIndex": "1", - "stateRoot": "0xe39c82bd617de9ce18697d0724e9ecd4d728da76cbc6326e58c20e3151a2d78a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfc50f4d23e1892068c22ae17b9c859614a28bc4509b65db92b8b921260ef2898", - "inputIndex": "2", - "stateRoot": "0x9789de96f2e896c084e4ee36adfe75f1cbb0d63e6b264387accee8f1303094c6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84807110460a3b94f79b563ceb42a5dfc1749e4cc03de7e2bf403366ff0dfca83fad00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001bdbf4afef591d1433f95e48ea24fb88e83b65d8683cf34487afd2c9595514f947bbaeac697851560068bd25f7e575d6fcac0b8f1b3210c6a5231d874fe2041d00000000000000000000006a91c5a90000000000000000000000000000389b4e0000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f72646572000000185469def06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d072945000000006f4fc9e00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000002352e08a79a4991a531b965251b642191c39a79913e0e20acf312ca4c02b9c4f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000020a0eaf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006d00000000000000000000000000000000000000000000000000000000000000000000000000000001c7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c00000000000000035c5cb4602f6f21f63dfc181a0c20a66d96bd7785956ead1b34f158bb67709dde8c4682d969ccc0e9015a17d0ee881d9bcbdbdc40069782bb6aa16189a12c7c520000000003bd1aa500000000000000039be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead00000000000000001c7628af84f651342f3d4882509aae0a8984aeddabaf29645af2997ea60819c8c0000000000000001e88647d0b718f1085023754c73282374dfa67407929e7db34b2bc75a03e79d3cbf35936fd448b9f4fb42edd7336e28573f097c3b920ff227b626ea8fd50349b80000000003bd1aa50000000000000003973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61000000000000000149e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b000000000000000355b8fae932d0de9c03bc489f11efaddcc7a4a2ec3d57e4d77c2a10e8c8eba28500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000209ffdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000013f0c5d6f6fccd94749bda12ca1234ffadef29f083374eb172acedfc40cb7e06ee39c82bd617de9ce18697d0724e9ecd4d728da76cbc6326e58c20e3151a2d78a00000000000000010000000000000002fc50f4d23e1892068c22ae17b9c859614a28bc4509b65db92b8b921260ef28989789de96f2e896c084e4ee36adfe75f1cbb0d63e6b264387accee8f1303094c600000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c22ed91240a98c3e3e74a59345a5d3eb5fb1d70eed52e23e94b4d7dbb12a6c8808771433058bffee28edea526296cd11b9e131369c77a8af70269addcf2fe745", - "receiptsRoot": "0x7110460a3b94f79b563ceb42a5dfc1749e4cc03de7e2bf403366ff0dfca83fad", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001bdbf4afef591d1433f95e48ea24fb88e83b65d8683cf34487afd2c9595514f947bbaeac697851560068bd25f7e575d6fcac0b8f1b3210c6a5231d874fe2041d00000000000000000000006a91c5a90000000000000000000000000000389b4e0000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f72646572000000185469def06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d072945000000006f4fc9e000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000000389b4e", - "digest": "0xb437bb9895f51f53d1eaad35ce369a43c264ec32e1813981d0b69a7eed73090e", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a90000000000000000000000000000389b4e", - "digest": "0xf9eea6b9c45246ca054c082fcd79f9e437c8dc188fc10ff5cae54a605c49bea0", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000000000000000000000000", - "digest": "0x5fdac36b8fdfe3c681493be0ab4efb13c0cc55ef6aaf1bd62eaa1294f3c7159b", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a90000000000000000000000000000389b4e", - "digest": "0xf9eea6b9c45246ca054c082fcd79f9e437c8dc188fc10ff5cae54a605c49bea0", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "104495439600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000800000000d07294500000000000000000000000000000000100000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead00000000000000000000000000000000100000006f4fc9e0000000000d0729450000000006a91c531", - "digest": "0x36627a596ae20ce32a25d5fbc022cf916f24a07de1185335ee5257f0b8a46c74", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000800000000d072945000000000000000000000000000000001", - "digest": "0xaf0d3756c410b40dba03a39fb32efafc986b95633641c75347da697007450052", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099862", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126510", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136131", - "transactionId": "0x497b9619a93201634303959c0af1d3cba1052e3013ce42183d195c49c02151fb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc22ed91240a98c3e3e74a59345a5d3eb5fb1d70eed52e23e94b4d7dbb12a6c8808771433058bffee28edea526296cd11b9e131369c77a8af70269addcf2fe745" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x26c88cf9324949b888ca5e90dfcfdd8da345c1a1780b845fff5e4ebd1357760d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153400", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1a9f006e", - "utxoId": "0x052c97efe5579d5c7944b1fe60f85fbb2753e81a67d4db71d29aadc0bd67e2ef0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x217e417b6f974cb71758d8b9b49a3be3f1ca2b86bc9ad4dfa09c3c603237c339", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50051", - "utxoId": "0x497b9619a93201634303959c0af1d3cba1052e3013ce42183d195c49c02151fb0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe7375dd9d67a33698818fd5683b830f85555cd71b05fe714dab26342ad6054d0", - "contractId": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "stateRoot": "0x110e18f1f151ea81ba7e29667a49ec29c178484206e0d00db1d652111593abf3", - "txPointer": "03bd1aa3001b", - "utxoId": "0xb21c33e6c6bb07582ff8fbe4babe6dc59cf171bd9ae4a334fa3e748042eae3550001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaf90eebd8b7dd8827783b8dd600fff9330f43e8525647ed10ce1d080956e2f36", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x6ba205eb6c47b52fc812e4bb1992f0f6e37a54d3edf7d0d7ba1058d0c7304a55", - "txPointer": "03bd1aa5004f", - "utxoId": "0xeee4ef8c5bcb0451f59f2df73f0c34e3038e9204e531901448dd5bb139194ed00001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153119", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x254708c9cd463d10ef7c14d6666387e85d664c25ce626fb2ba8fbc550f2e4e86", - "inputIndex": "2", - "stateRoot": "0x25b3a4b69078033f3f3c4ac3f9e7c7df7554472572d0f2f37c06f39630d43463" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3cc9cefa2339af31fa684c0744c6e2bc3712c6a1077b909e878d19b93e5306ba", - "inputIndex": "3", - "stateRoot": "0xae17580e01f05e7cfd6c5505bcff74ce100a48501d57fa9006715648f6cb46c5" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806ca2b9a0ffd694eff8e83a797f43050de6fb658b7e940177c665b73750520f8700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad071212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f74700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000070ff03e0a946bc500e9bdcf93d377a87eb2e0aaa536caba2924df89ab7c5c9fef5d6d482f19bab8a617c575bf881532cc2d5eb05c611bca3485264da2e02df5500000000000000000000006a91c5a900000000000000000000000000000f56130000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000011212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000000004829cc306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000017474a2000000000b8c63f00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000052c97efe5579d5c7944b1fe60f85fbb2753e81a67d4db71d29aadc0bd67e2ef0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025738f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1a9f000000000000006e00000000000000000000000000000000000000000000000000000000000000000000000000000001497b9619a93201634303959c0af1d3cba1052e3013ce42183d195c49c02151fb0000000000000003217e417b6f974cb71758d8b9b49a3be3f1ca2b86bc9ad4dfa09c3c603237c33900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001b21c33e6c6bb07582ff8fbe4babe6dc59cf171bd9ae4a334fa3e748042eae3550000000000000001e7375dd9d67a33698818fd5683b830f85555cd71b05fe714dab26342ad6054d0110e18f1f151ea81ba7e29667a49ec29c178484206e0d00db1d652111593abf30000000003bd1aa3000000000000001b1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f7470000000000000001eee4ef8c5bcb0451f59f2df73f0c34e3038e9204e531901448dd5bb139194ed00000000000000001af90eebd8b7dd8827783b8dd600fff9330f43e8525647ed10ce1d080956e2f366ba205eb6c47b52fc812e4bb1992f0f6e37a54d3edf7d0d7ba1058d0c7304a550000000003bd1aa5000000000000004f295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002561ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002254708c9cd463d10ef7c14d6666387e85d664c25ce626fb2ba8fbc550f2e4e8625b3a4b69078033f3f3c4ac3f9e7c7df7554472572d0f2f37c06f39630d43463000000000000000100000000000000033cc9cefa2339af31fa684c0744c6e2bc3712c6a1077b909e878d19b93e5306baae17580e01f05e7cfd6c5505bcff74ce100a48501d57fa9006715648f6cb46c500000000000000406fded57bd7daad364c1865632af5fbf8e35966f0c73a54b96dc80ecb47127d3892d4e8844af50a65c0d33303ebced1ca3b8d4e0f1afa8a30a4bd3ed46ba15fc0", - "receiptsRoot": "0x6ca2b9a0ffd694eff8e83a797f43050de6fb658b7e940177c665b73750520f87", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad071212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f74700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000070ff03e0a946bc500e9bdcf93d377a87eb2e0aaa536caba2924df89ab7c5c9fef5d6d482f19bab8a617c575bf881532cc2d5eb05c611bca3485264da2e02df5500000000000000000000006a91c5a900000000000000000000000000000f56130000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000011212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000000004829cc306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000017474a2000000000b8c63f000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000000f5613", - "digest": "0x8a1e0e8fdd166eb37a2b470983d042606bfbbf810d32022478a4ff52efed8c66", - "gas": null, - "gasUsed": null, - "id": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000069758cd1b42d7b5b86770e0ec0a820faa61209e02ee6eaea9a8eccc2031e5162295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a900000000000000000000000000000f5613", - "digest": "0xaadd8430bdc53505a29f8f11e051ebeb714b3ba30ce0b0071f109a584c8de5e2", - "gas": null, - "gasUsed": null, - "id": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "3100000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000011212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f74700000000b8c63f000000000000000000", - "digest": "0x3ea97921b99504dfe17e3f4528c23329e6e908d3d1f31d889cab83f0fed944a7", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000069758cd1b42d7b5b86770e0ec0a820faa61209e02ee6eaea9a8eccc2031e5162295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5a900000000000000000000000000000f5613", - "digest": "0xaadd8430bdc53505a29f8f11e051ebeb714b3ba30ce0b0071f109a584c8de5e2", - "gas": null, - "gasUsed": null, - "id": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1210698800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000000017474a200000000000000000000000000000000100000000000000011212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f7470000000000000000000000000000000100000000b8c63f000000000017474a20000000006a91c531", - "digest": "0x2a28992bd3b4a8a9d1663fb224e5093583013daaea09d405ccb0733edd9873bb", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000460000000017474a2000000000000000010000000000000003000000000000001d0000000017474a200000000000000000000000000000000100000000b8c63f000000000017474a20000000006a91c531", - "digest": "0xf05bd087e3c4f5a0b3e3c5747a870a4dabf65901cef20b38c3347c3fe03096d5", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000004baf00000000000000000", - "digest": "0x690cc5de7c585f1691b74578432c28cd776a7b9801c7295f18bcaffbba8caa6b", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67098350", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000000017474a2000000000000000000000000000000001", - "digest": "0xe5b528e553978f3dd8c677f6fc47d5ce2fac8dbab01528543fa3fc36a0ca53f3", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67097390", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x1212e8e52b9b2edfa27dd16baeb5f63e35d66fd0bb89b9ce31f84d3de344f747", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "151779", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "281", - "totalGas": "161400", - "transactionId": "0x26c88cf9324949b888ca5e90dfcfdd8da345c1a1780b845fff5e4ebd1357760d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6fded57bd7daad364c1865632af5fbf8e35966f0c73a54b96dc80ecb47127d3892d4e8844af50a65c0d33303ebced1ca3b8d4e0f1afa8a30a4bd3ed46ba15fc0" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d1", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1720791", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00001", - "utxoId": "0x11c703d76a7eff0d711f2c75efc8d3ad81877111f31387384d406cf79c8cba2c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcbecd88f859f94eb58cd33c6762f5ef96631b819f390f81f7b0fab337fa091c4", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x72a9ba95793ad6ff61ebb8516b616faab5ea0b1706b555efdbd88d5fe4ee73de", - "txPointer": "03bd1aa50015", - "utxoId": "0xc37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2ddf604c9ce4bda3c941153dbb7d27f5e1a45f65f3462cf38d9caa2931882870", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x62ba884ab18b57379d5fc6593df201150a549b871a58fb457f63db59bc864243", - "txPointer": "03bd1aa50015", - "utxoId": "0xc37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50052", - "utxoId": "0x26c88cf9324949b888ca5e90dfcfdd8da345c1a1780b845fff5e4ebd1357760d0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1720421", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x540097a0aece41c5cf2e14ea99e41df0b336cd25cb53f21e4b502c3e9e298baa", - "inputIndex": "1", - "stateRoot": "0x9f7c476a0fc173e6818b1e59eefc108d890e1b6077e817aa0aac6de384039283" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa8402a0e893dcf26d18863be07453c73da9d71ec9ffb0bc103c21ff6a633b9c3", - "inputIndex": "2", - "stateRoot": "0xe3de70801f79f800f84ae87fffc492c2efa3cf98843f4af1d037a4db34c4a06a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b7cafc443554d30118e78327693ae843ad19707da5a0e1c96d6651884980e5ec000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000012a8fbaf86c04a6f57cbf284b29978b2363cbc9af4c5129464fc810a1d67dd925652195332658c1e5430d4dbe576db9546f16061fae39522acb86581bafae10d00000000000000000000006a91c5a9000000000000000000000000000251cf3d00000000000000034added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001b0000000108e23610000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f7264657200000003c29d7180cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108d2f3d000000003c29d71800000000000000001000000000000006400000000000210ac0000000003bd1aa9000000000000000011c703d76a7eff0d711f2c75efc8d3ad81877111f31387384d406cf79c8cba2c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a41d7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000001c37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b0000000000000003cbecd88f859f94eb58cd33c6762f5ef96631b819f390f81f7b0fab337fa091c472a9ba95793ad6ff61ebb8516b616faab5ea0b1706b555efdbd88d5fe4ee73de0000000003bd1aa500000000000000154added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001c37a068d2014d0b96c398b629c51fc4ed10205fea7673cd18d2f70b072da594b00000000000000022ddf604c9ce4bda3c941153dbb7d27f5e1a45f65f3462cf38d9caa293188287062ba884ab18b57379d5fc6593df201150a549b871a58fb457f63db59bc8642430000000003bd1aa50000000000000015b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571000000000000000126c88cf9324949b888ca5e90dfcfdd8da345c1a1780b845fff5e4ebd1357760d0000000000000001ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4065f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001540097a0aece41c5cf2e14ea99e41df0b336cd25cb53f21e4b502c3e9e298baa9f7c476a0fc173e6818b1e59eefc108d890e1b6077e817aa0aac6de38403928300000000000000010000000000000002a8402a0e893dcf26d18863be07453c73da9d71ec9ffb0bc103c21ff6a633b9c3e3de70801f79f800f84ae87fffc492c2efa3cf98843f4af1d037a4db34c4a06a000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000405098518399f7bd988f96aa5cf8b0a1f0bee0dfee16edee7e3301633bd9accee6bd1753094a4ef08280371564938de7f00b11425ba4b575e998d1a9090beb973b", - "receiptsRoot": "0xb7cafc443554d30118e78327693ae843ad19707da5a0e1c96d6651884980e5ec", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000012a8fbaf86c04a6f57cbf284b29978b2363cbc9af4c5129464fc810a1d67dd925652195332658c1e5430d4dbe576db9546f16061fae39522acb86581bafae10d00000000000000000000006a91c5a9000000000000000000000000000251cf3d00000000000000034added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001b0000000108e23610000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f7264657200000003c29d7180cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108d2f3d000000003c29d71800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000251cf3d", - "digest": "0x8839a29dfba6a7bac24de6ed3aecc2289bf8dc563fffd606d5da13809f3424e4", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3d", - "digest": "0x19c15caabcf020795765d8dd9171b04b335abed3069c7f7fb20cf1a86b4c68d1", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "28870000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001b0000000108e2361000000000000000010000000000000001000000006a91c531", - "digest": "0x3a30f625bcfa6d2a2739ee83a90dee58ff4e49317135d2e82e75fc802e8ca5c6", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100754", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100129", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3d", - "digest": "0x19c15caabcf020795765d8dd9171b04b335abed3069c7f7fb20cf1a86b4c68d1", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099901", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1880807", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099429", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3d", - "digest": "0x19c15caabcf020795765d8dd9171b04b335abed3069c7f7fb20cf1a86b4c68d1", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099201", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "16150000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869402", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000160000000108d2f3d0000000000000000100000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001000000000000000100000003c29d71800000000108d2f3d0000000006a91c531", - "digest": "0x27de0fe7df0128e31c7dbd4e533d1d046395706218684c7368281b77d9bfcde8", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097809", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000160000000108d2f3d000000000000000010000000000000001", - "digest": "0x51c6e24d0288e27423acabc395c80b950ab06cab262008ceddd2f7dacfd49f4a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67093457", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "202902", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "370", - "totalGas": "212730", - "transactionId": "0xc6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d1" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5098518399f7bd988f96aa5cf8b0a1f0bee0dfee16edee7e3301633bd9accee6bd1753094a4ef08280371564938de7f00b11425ba4b575e998d1a9090beb973b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153943", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00000", - "utxoId": "0xbbd7314cef0ea7db712b2458ce0cc011e503020dd316134cd5ccfe9d07f30c1f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa4eb98aa21bf82b738d55acd04969e65d061a8bf9e39db477c2490a44ab63729", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0xae436310e872a42f8f00bba2e498b450a6013d967e71070bec0ca23e384c7ba4", - "txPointer": "03bd1aa50053", - "utxoId": "0xc6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d10002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50053", - "utxoId": "0xc6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d10003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8281b4cde4c8db10d9c84b425b9f4786d321ae907dd430cefa3fd3d96202c53d", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x27110b8ad8f839805c66f22d70347a5f88a6f1c38822038f9b214d9fb4ec3307", - "txPointer": "03bd1aa50053", - "utxoId": "0xc6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d10001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153703", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x44b09d5556fdc2be52521d9df1495895c01b1800a39fb354bdb5fd41bd55ebca", - "inputIndex": "1", - "stateRoot": "0x08de2370a8e6b2870eee688b3d6acbaaec3a9af1b95d47d926d01c26a230c107" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe9ed36a1e962073d661c3fdd3da45018e1052508d67f7d19d0221152a2a07e3c", - "inputIndex": "3", - "stateRoot": "0x90748c6fc87fd6304d3367b05066bae007d3809ddf093532b97c9855fd48d4b2" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480599fedc463620fd0242ed071200e72d698e6c0867d5c4a2a1a5daa5892a496e700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000044cf60474f577673b3dba353762b2bf5472c2600cfe1fbe89b64cc172df15dd97ed5b5a0ce81a1f1b04102b92bc07929331f157af1a3ef6294b9eafe5fc3b88f00000000000000000000006a91c5a9000000000000000000000000000251cf3c00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000001e9c63ebc86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000108906c9000000006e57d5500000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000bbd7314cef0ea7db712b2458ce0cc011e503020dd316134cd5ccfe9d07f30c1f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025957f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d10000000000000002a4eb98aa21bf82b738d55acd04969e65d061a8bf9e39db477c2490a44ab63729ae436310e872a42f8f00bba2e498b450a6013d967e71070bec0ca23e384c7ba40000000003bd1aa50000000000000053b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001c6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d10000000000000003ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001c6fb81e43ff3a95d317c96336bff37661e867a4d31bdfcba9b71ba56b38824d100000000000000018281b4cde4c8db10d9c84b425b9f4786d321ae907dd430cefa3fd3d96202c53d27110b8ad8f839805c66f22d70347a5f88a6f1c38822038f9b214d9fb4ec33070000000003bd1aa500000000000000534added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025867f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000144b09d5556fdc2be52521d9df1495895c01b1800a39fb354bdb5fd41bd55ebca08de2370a8e6b2870eee688b3d6acbaaec3a9af1b95d47d926d01c26a230c107000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003e9ed36a1e962073d661c3fdd3da45018e1052508d67f7d19d0221152a2a07e3c90748c6fc87fd6304d3367b05066bae007d3809ddf093532b97c9855fd48d4b20000000000000040bc53d4f88a3f978bb1b879052b38ccfb7283b4b5c454e19e7a9c0a1fd4fed535e14cd5812e99f61468a3bac40b119c8f9cd467bc5cbcb9f8853947d161756d4a", - "receiptsRoot": "0x599fedc463620fd0242ed071200e72d698e6c0867d5c4a2a1a5daa5892a496e7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000044cf60474f577673b3dba353762b2bf5472c2600cfe1fbe89b64cc172df15dd97ed5b5a0ce81a1f1b04102b92bc07929331f157af1a3ef6294b9eafe5fc3b88f00000000000000000000006a91c5a9000000000000000000000000000251cf3c00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000001e9c63ebc86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000108906c9000000006e57d55000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000251cf3c", - "digest": "0x2f02d3d6656d906e64699dda2b3e2cb881f7ccd75c927d5d6ed3d23c013d5271", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3c", - "digest": "0xc567e392689aee303e59fb2e05a01ac7b76bf893cdeaba6a63bf65d8c144c465", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3c", - "digest": "0xc567e392689aee303e59fb2e05a01ac7b76bf893cdeaba6a63bf65d8c144c465", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "131472813000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000170000000108906c90000000000000000000000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000000000000000000000100000006e57d55000000000108906c90000000006a91c531", - "digest": "0x12e49f3772f5d6e84507b26bd5dcf8018a7fb7bf9033a66e71b4a9924bfcd434", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000170000000108906c9000000000000000000000000000000001", - "digest": "0xcd27085d944b5a3bc56f8dc93292621eaf6cb21315965f6e2ff70b6fecd2df53", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099734", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128211", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "240", - "totalGas": "137832", - "transactionId": "0x5610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xbc53d4f88a3f978bb1b879052b38ccfb7283b4b5c454e19e7a9c0a1fd4fed535e14cd5812e99f61468a3bac40b119c8f9cd467bc5cbcb9f8853947d161756d4a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x9b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "284227", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00006", - "utxoId": "0x95fd0cc3906aa42db22a82e18f1c5ddd55e11a8b8e9512dbf939f0b8185006e00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50054", - "utxoId": "0x5610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x99b29288d795b72844b215582e4d1c37eb3032cad58444a67abdbe7cdde4feb7", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xb602e332073ae50e5c1388d37760807526b282c526feae25fbb25711917b73d0", - "txPointer": "03bd1aa50032", - "utxoId": "0xe2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e130003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfba4d3fff32983f9a4085fcf0dad6356fca560690e5fedf75b704b7a20d7f75f", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x03e0f05267a6159092dc6a9cd62e1f2a3d3447f39bb397372d78a40b767fad25", - "txPointer": "03bd1aa50032", - "utxoId": "0xe2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e130001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "283988", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x73a5c5b1bb3ca9dc80bacd550157b1c0c657aab6718fc396135b6b5c79a7af03", - "inputIndex": "2", - "stateRoot": "0x8c551fe315e2be0174d476702096d6e4e8b357c8fee3e796c7cb5ae675c69432" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3743bc3ecaec14ac2c0d84f6af964746489f68c4346efbc979d6568fbd3437a9", - "inputIndex": "3", - "stateRoot": "0xc219a9c82084df9158d0d41eb8a3298af42c6064a45dba7641617cc7ff724f4c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848083d50c5d78ecbf16321a2a6bbc637f0151b768c460d53e9cfe3ce8e25343730c00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e0a7b97bbe3c5f33e404d674988bbaabac436775cd5bc667b5b52283cbde5a793a45062fca9dff8b83cd685157472f5f03cca098f7cf83e3fc5ad3999b00328e00000000000000000000006a91c5a900000000000000000000000000024e03580000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000042a53c336c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac5d99f000000005cdf19c80000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000095fd0cc3906aa42db22a82e18f1c5ddd55e11a8b8e9512dbf939f0b8185006e00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000045643f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000015610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e13000000000000000399b29288d795b72844b215582e4d1c37eb3032cad58444a67abdbe7cdde4feb7b602e332073ae50e5c1388d37760807526b282c526feae25fbb25711917b73d00000000003bd1aa50000000000000032f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001e2f1d8f8066597e0effeae87f75cb72365beff136bf57b538beb5bb635521e130000000000000001fba4d3fff32983f9a4085fcf0dad6356fca560690e5fedf75b704b7a20d7f75f03e0f05267a6159092dc6a9cd62e1f2a3d3447f39bb397372d78a40b767fad250000000003bd1aa50000000000000032c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000045554f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000273a5c5b1bb3ca9dc80bacd550157b1c0c657aab6718fc396135b6b5c79a7af038c551fe315e2be0174d476702096d6e4e8b357c8fee3e796c7cb5ae675c69432000000000000000100000000000000033743bc3ecaec14ac2c0d84f6af964746489f68c4346efbc979d6568fbd3437a9c219a9c82084df9158d0d41eb8a3298af42c6064a45dba7641617cc7ff724f4c0000000000000040810e96a3685fd4a54ab333d1614e732f9cbb5b49f437301bbf9e5aec9953da9d6854e720bd2a8e1aca0fc2e249dc808f65b6895c8eaa3f73ad6abd8bf6d445cb", - "receiptsRoot": "0x83d50c5d78ecbf16321a2a6bbc637f0151b768c460d53e9cfe3ce8e25343730c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e0a7b97bbe3c5f33e404d674988bbaabac436775cd5bc667b5b52283cbde5a793a45062fca9dff8b83cd685157472f5f03cca098f7cf83e3fc5ad3999b00328e00000000000000000000006a91c5a900000000000000000000000000024e03580000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000042a53c336c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac5d99f000000005cdf19c800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0358", - "digest": "0xf6f1e2151c95157063ecb373a117aedd3890ff535bf4e415f3a1f269eb19155d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0358", - "digest": "0xeeac533caaf5d0d9883268baccd23dd4230b8e534558d13466a450126387c48c", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0358", - "digest": "0xeeac533caaf5d0d9883268baccd23dd4230b8e534558d13466a450126387c48c", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "286240027500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000008a00000002ac5d99f0000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000000000000000000000100000005cdf19c8000000002ac5d99f0000000006a91c531", - "digest": "0xcff30fd6f62d431604ff8589c9b4cf81aae5d2dc87340e45b35b110688a461a0", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000008a00000002ac5d99f000000000000000000000000000000001", - "digest": "0xfae08c2766921e982cfc569588d787a7ab8c4fb85d855b60d8a294af8e316f5f", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127283", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "239", - "totalGas": "136904", - "transactionId": "0x9b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x810e96a3685fd4a54ab333d1614e732f9cbb5b49f437301bbf9e5aec9953da9d6854e720bd2a8e1aca0fc2e249dc808f65b6895c8eaa3f73ad6abd8bf6d445cb" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x08af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "292215", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00003", - "utxoId": "0xe74578ebb002b6edde2909cf0d67721baf67236b0c1c592e7464df91b38e4c520000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x38ebb2703f670a385c4e57a781ad77f57bc37afe461a1a4083672a11b58df2d0", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xccdeae997a64f844cca7ec0373f7342ca9f0fb77d5def8aa92381f24bf74ee4b", - "txPointer": "03bd1aa50055", - "utxoId": "0x9b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50055", - "utxoId": "0x9b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdb8053b0519b5224a07ed9851d8f9f69050551c75c7b3bf0b90c866d8eedb2dc", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x621cdd9a958f4b25ba214d37f99b07fe2dfd539785c38cb444bea691b89c8e3f", - "txPointer": "03bd1aa50055", - "utxoId": "0x9b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "291974", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x87633896998ed8800affa62efb88986428e50a9e3d0ba9f7d33a80359b9c8e62", - "inputIndex": "1", - "stateRoot": "0x2b3ac0fac839b4ce341373f03e0d28cabfed20dc0a8bf38e5465db56156bf6c8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x717a08683016cc007df2c60821c7bc35fad82596fb117d46a112ccedc20213e1", - "inputIndex": "3", - "stateRoot": "0x12b1452a953bcce7bd9622e860bc2bcc3c0a18379cad4c056c5ada486311da43" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480731541ac4283278df87a49a16a95e3d9f81a451498e4c84bc321d6bb2f81e71500000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c404e5057b7cbe17fe6e67f39261a93fb912571c892d4a832aab9fe1cb7dcd7ee45d2f37d4f0c44544f3801d8da64da53feebc35e8470fe38a356efbd22e67b900000000000000000000006a91c5a900000000000000000000000000024e03550000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000021e66fb007ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad17c230000000021e66fb00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e74578ebb002b6edde2909cf0d67721baf67236b0c1c592e7464df91b38e4c520000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047577f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000019b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab000000000000000338ebb2703f670a385c4e57a781ad77f57bc37afe461a1a4083672a11b58df2d0ccdeae997a64f844cca7ec0373f7342ca9f0fb77d5def8aa92381f24bf74ee4b0000000003bd1aa50000000000000055c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000019b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab000000000000000102cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000019b63be50394f8db378eaccf2ea340b1368020f9d83af50a69784e83245a72cab0000000000000002db8053b0519b5224a07ed9851d8f9f69050551c75c7b3bf0b90c866d8eedb2dc621cdd9a958f4b25ba214d37f99b07fe2dfd539785c38cb444bea691b89c8e3f0000000003bd1aa50000000000000055f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047486f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000187633896998ed8800affa62efb88986428e50a9e3d0ba9f7d33a80359b9c8e622b3ac0fac839b4ce341373f03e0d28cabfed20dc0a8bf38e5465db56156bf6c8000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003717a08683016cc007df2c60821c7bc35fad82596fb117d46a112ccedc20213e112b1452a953bcce7bd9622e860bc2bcc3c0a18379cad4c056c5ada486311da430000000000000040465216816b47bfdb4cfed3432f92293ac9e76810d67f0f9fdf98168e3871ef13cd431de525405005de98200f2ee9a27173ec0d237fe18b911c4e93d93a78c177", - "receiptsRoot": "0x731541ac4283278df87a49a16a95e3d9f81a451498e4c84bc321d6bb2f81e715", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c404e5057b7cbe17fe6e67f39261a93fb912571c892d4a832aab9fe1cb7dcd7ee45d2f37d4f0c44544f3801d8da64da53feebc35e8470fe38a356efbd22e67b900000000000000000000006a91c5a900000000000000000000000000024e03550000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000021e66fb007ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad17c230000000021e66fb000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0355", - "digest": "0xbfbfc9fdbed3299f5d2a90f69372e6ff6ac5c21ed19723e1aeb3e3cbb8cdfa68", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0355", - "digest": "0x27ef73eab3760559193574be1958530e836c3dc808186e01f6222f4833764803", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0355", - "digest": "0x27ef73eab3760559193574be1958530e836c3dc808186e01f6222f4833764803", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "9100000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000d300000002ad17c230000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000010000000000000001000000021e66fb0000000002ad17c230000000006a91c531", - "digest": "0x64b880542ffdf678c69c671bf9b4808ef7a26d63f312caf536eddc785e314fd9", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000d300000002ad17c23000000000000000010000000000000001", - "digest": "0x4e7e98863b75efa06ba2bae852adaca520f6eaadde0dd6651d82d0d489167876", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099606", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128523", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138144", - "transactionId": "0x08af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x465216816b47bfdb4cfed3432f92293ac9e76810d67f0f9fdf98168e3871ef13cd431de525405005de98200f2ee9a27173ec0d237fe18b911c4e93d93a78c177" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b71162", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154050", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00004", - "utxoId": "0x0ed53d3d4c08bbcf14ce7174aa9ddb22e6dcae29368afa4a962566c94616dc7f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x87633896998ed8800affa62efb88986428e50a9e3d0ba9f7d33a80359b9c8e62", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x8bb632d00c42971042df544ffdd8c66ad11468cfc431c6c5e9e871e6774b30cb", - "txPointer": "03bd1aa50056", - "utxoId": "0x08af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e50001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x717a08683016cc007df2c60821c7bc35fad82596fb117d46a112ccedc20213e1", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x568fbab9a66ee9de873a594f65254ca3df2b4daab4e6be187e438fdf61a696ab", - "txPointer": "03bd1aa50056", - "utxoId": "0x08af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50056", - "utxoId": "0x08af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e50002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153831", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x05dcd6172155efd670011b77bdee97533b75e7b7ab3af29039c9037120698f51", - "inputIndex": "1", - "stateRoot": "0x1ce2999df5614a67cd1f7b6b33120b4e2a956ce8ad4714fa010b46d85b0979a4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xdd25280c2055c4450f5cfb1d9b8704431be6929f03b623cd42bf6ff271bfb290", - "inputIndex": "2", - "stateRoot": "0xbf8391f00a8ad7b41446532fa4db66f8d83d033a5e26b69fe550c4f6c2572e29" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b965d6486a2841eaa64ee099d78990d3b20241e5dbb8f957fbc4f6ab96088f7a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007d70995963b9b9a13e8bd84e8b3ddf653557a5746edcaffac60fd34affb834771dfe7f3e7620131926e2c6830d6dee6ae4d34c60a5e1aab3921bec030ff82bb000000000000000000000006a91c5a900000000000000000000000000024e03560000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000004828abe807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad313da000000004828abe80000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000000ed53d3d4c08bbcf14ce7174aa9ddb22e6dcae29368afa4a962566c94616dc7f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000259c2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000108af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e5000000000000000187633896998ed8800affa62efb88986428e50a9e3d0ba9f7d33a80359b9c8e628bb632d00c42971042df544ffdd8c66ad11468cfc431c6c5e9e871e6774b30cb0000000003bd1aa50000000000000056c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000108af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e50000000000000003717a08683016cc007df2c60821c7bc35fad82596fb117d46a112ccedc20213e1568fbab9a66ee9de873a594f65254ca3df2b4daab4e6be187e438fdf61a696ab0000000003bd1aa50000000000000056f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f000000000000000108af15deca10090c75ab7b93019d42ce8e80baa184cc3cbd9d1273116d2f23e5000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000258e7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000105dcd6172155efd670011b77bdee97533b75e7b7ab3af29039c9037120698f511ce2999df5614a67cd1f7b6b33120b4e2a956ce8ad4714fa010b46d85b0979a400000000000000010000000000000002dd25280c2055c4450f5cfb1d9b8704431be6929f03b623cd42bf6ff271bfb290bf8391f00a8ad7b41446532fa4db66f8d83d033a5e26b69fe550c4f6c2572e2900000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040eb991d116129337c91d06609fcbd61ec10188065ab714d0d86b0ffe6391038a78f5f11ec9c6f50be3a8570e17a5db64e6e6902a0890a97a77c1a5d955ea9539e", - "receiptsRoot": "0xb965d6486a2841eaa64ee099d78990d3b20241e5dbb8f957fbc4f6ab96088f7a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007d70995963b9b9a13e8bd84e8b3ddf653557a5746edcaffac60fd34affb834771dfe7f3e7620131926e2c6830d6dee6ae4d34c60a5e1aab3921bec030ff82bb000000000000000000000006a91c5a900000000000000000000000000024e03560000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000004828abe807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad313da000000004828abe800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0356", - "digest": "0xbe1984e9b4be6a3682edc6f8b69806638a975b153b06be4fed33b2a510b4ccd9", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0356", - "digest": "0x4860009cf3f5b7c3995e1a2b803ba4b5548df3be959c60e0d652cff3fa63bed1", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0356", - "digest": "0x4860009cf3f5b7c3995e1a2b803ba4b5548df3be959c60e0d652cff3fa63bed1", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "19370000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f00000002ad313da0000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001000000000000000100000004828abe8000000002ad313da0000000006a91c531", - "digest": "0x07df105aaa02a7604b6d1e536969b0fc73667a6c4eba25f39c87e556619a5846", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f00000002ad313da000000000000000010000000000000001", - "digest": "0x106b4b34e12fda188ebf75dc2ad8e6ba976d296d619e2d1d6e015f42a27d5c5f", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101014", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "116192", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "219", - "totalGas": "125813", - "transactionId": "0x390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b71162" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xeb991d116129337c91d06609fcbd61ec10188065ab714d0d86b0ffe6391038a78f5f11ec9c6f50be3a8570e17a5db64e6e6902a0890a97a77c1a5d955ea9539e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xcbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f386", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1881449", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00002", - "utxoId": "0x2f638a3d2dacd0439e818e57682b535596c129b66ba48dedfb32a2629fa15a430000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50057", - "utxoId": "0x390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b711620003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x73a5c5b1bb3ca9dc80bacd550157b1c0c657aab6718fc396135b6b5c79a7af03", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x666ed948e7b82c95124dbf26a8eb90b2c8251eac19acc18c4f583c0ee8c28f55", - "txPointer": "03bd1aa50057", - "utxoId": "0x390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b711620002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3743bc3ecaec14ac2c0d84f6af964746489f68c4346efbc979d6568fbd3437a9", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x82252ba54a4dd9dc025a0653a05b2273cd67a74ebd2d623cf651dddaab1cde38", - "txPointer": "03bd1aa50057", - "utxoId": "0x390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b711620001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1881208", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x685681a4a6c0971fa900cdde459af7908dd1bc18e370150113b2b15f2fe6f21a", - "inputIndex": "2", - "stateRoot": "0x8809b8ea99156b2440ef2c7e4e6944678bd99ed8245febc87882b37a19f1583a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x326066b68f8e411b5bdeb4bb81539ed81a3d4008c30f78595e81e99ff227d737", - "inputIndex": "3", - "stateRoot": "0x1e6c40486d1db151183ffbb5580296c0f1e5fcb842dd4e9a5b71588d90e232e2" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806f2fd75685f194c8e6c614b661a4a35e1f51ca3f326eda7c0b4e8f4d19f36ec400000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006dd5e2946f69ee0ff6a1c2f5c9aa06916f3920f2460bd9c35ac28330d4c7ac9fa54c8434d1d191f50610337cd70eee1ea79996930dc893e674703e2bdc9ce3c800000000000000000000006a91c5a900000000000000000000000000024e03540000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000037db7f98206c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac83988000000004dd241a80000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000002f638a3d2dacd0439e818e57682b535596c129b66ba48dedfb32a2629fa15a430000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001cb569f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000001390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b71162000000000000000302cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b71162000000000000000273a5c5b1bb3ca9dc80bacd550157b1c0c657aab6718fc396135b6b5c79a7af03666ed948e7b82c95124dbf26a8eb90b2c8251eac19acc18c4f583c0ee8c28f550000000003bd1aa50000000000000057f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001390651fdb3f2b22515465984e8d246e39fb6dc0aa5388edb123e882df9b7116200000000000000013743bc3ecaec14ac2c0d84f6af964746489f68c4346efbc979d6568fbd3437a982252ba54a4dd9dc025a0653a05b2273cd67a74ebd2d623cf651dddaab1cde380000000003bd1aa50000000000000057c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001cb478f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002685681a4a6c0971fa900cdde459af7908dd1bc18e370150113b2b15f2fe6f21a8809b8ea99156b2440ef2c7e4e6944678bd99ed8245febc87882b37a19f1583a00000000000000010000000000000003326066b68f8e411b5bdeb4bb81539ed81a3d4008c30f78595e81e99ff227d7371e6c40486d1db151183ffbb5580296c0f1e5fcb842dd4e9a5b71588d90e232e200000000000000405c04908547b37d012d5ce6338bab4016041c4245a1f5909cb25877bdb7e16eed1925cc2c570a391450b60123ef938220eca857b992075ce80c90f651b6457f54", - "receiptsRoot": "0x6f2fd75685f194c8e6c614b661a4a35e1f51ca3f326eda7c0b4e8f4d19f36ec4", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006dd5e2946f69ee0ff6a1c2f5c9aa06916f3920f2460bd9c35ac28330d4c7ac9fa54c8434d1d191f50610337cd70eee1ea79996930dc893e674703e2bdc9ce3c800000000000000000000006a91c5a900000000000000000000000000024e03540000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000037db7f98206c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac83988000000004dd241a800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0354", - "digest": "0xd26a2bcb2a7d12e817c5ab8d00a7dbf4fd7c09a032d55c7581629228015cf2da", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0354", - "digest": "0x4c1b259d10bef52ff6b02c597e1f8ee9c11ff908f35e4ce8c9aeb50cc9a37e77", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0354", - "digest": "0x4c1b259d10bef52ff6b02c597e1f8ee9c11ff908f35e4ce8c9aeb50cc9a37e77", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "239905773600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006b00000002ac839880000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000000000000000000000100000004dd241a8000000002ac839880000000006a91c531", - "digest": "0xea3689eed5ff4ffc1a5b11dae538bcd996a2396cd7c98d0aa9bdba6acc58c293", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006b00000002ac83988000000000000000000000000000000001", - "digest": "0x5f12c7d2e6297ad0e4ef5498ac2efdf38543c86a5962a486d4d0e5e830fa28eb", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128419", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138040", - "transactionId": "0xcbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f386" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5c04908547b37d012d5ce6338bab4016041c4245a1f5909cb25877bdb7e16eed1925cc2c570a391450b60123ef938220eca857b992075ce80c90f651b6457f54" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x80220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "158045", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00005", - "utxoId": "0x2beb5f0a0ed42c5a71f353bf260dac1320937a7b72b503e540b1c4dfc90fd1360000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x685681a4a6c0971fa900cdde459af7908dd1bc18e370150113b2b15f2fe6f21a", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x381be246c6d9abf692dbf27609704d18f2296ee8a18ca00d0561d31c01027971", - "txPointer": "03bd1aa50058", - "utxoId": "0xcbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f3860002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50058", - "utxoId": "0xcbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f3860001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x326066b68f8e411b5bdeb4bb81539ed81a3d4008c30f78595e81e99ff227d737", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x26ec551ff49b12d1a1ba2b2524afaa4666449db93484d9d547920aba95eac63d", - "txPointer": "03bd1aa50058", - "utxoId": "0xcbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f3860003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157807", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2dc39cc1f733f481c56585e230f0165edc48128931735343fcd11d88b64e9c82", - "inputIndex": "1", - "stateRoot": "0x0adea6527a85547d6c6972af55c5083d3a6e67e4d5ca4bdcf0213b58d6f8a894" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1c378fa17f12db07cfc6a7b847080472ff57ec9169f1dddd7483995f75dec700", - "inputIndex": "3", - "stateRoot": "0xd52f9875d86d2cd1ff149e69948165d54f77dd885e5b3fe8ed131e8530331204" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848075e8e79556b4cb3809b7946b9f45240c11090e7f18c703f6b77d6a8a2c03d98000000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b01b5e886cc6627d829e0d3daacd0816076df08c0ef5064a0b535c83389e01994291f1c25538bf342830166adc6072874dd80bbaae3d5dbe34aa6795c98e2c3e00000000000000000000006a91c5a900000000000000000000000000024e03570000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000011f40e37b406c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac7233600000001903ec4c00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000002beb5f0a0ed42c5a71f353bf260dac1320937a7b72b503e540b1c4dfc90fd1360000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002695df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000001cbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f3860000000000000002685681a4a6c0971fa900cdde459af7908dd1bc18e370150113b2b15f2fe6f21a381be246c6d9abf692dbf27609704d18f2296ee8a18ca00d0561d31c010279710000000003bd1aa50000000000000058f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001cbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f386000000000000000102cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001cbf2408827b94cc353262c409aa635d5b3e3bbe1bda56c2b75cecfa43b66f3860000000000000003326066b68f8e411b5bdeb4bb81539ed81a3d4008c30f78595e81e99ff227d73726ec551ff49b12d1a1ba2b2524afaa4666449db93484d9d547920aba95eac63d0000000003bd1aa50000000000000058c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002686ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000012dc39cc1f733f481c56585e230f0165edc48128931735343fcd11d88b64e9c820adea6527a85547d6c6972af55c5083d3a6e67e4d5ca4bdcf0213b58d6f8a8940000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000031c378fa17f12db07cfc6a7b847080472ff57ec9169f1dddd7483995f75dec700d52f9875d86d2cd1ff149e69948165d54f77dd885e5b3fe8ed131e853033120400000000000000404dbbb77fe3ee7faf2de9ed8e2e1f2f4f7e4bcaf7f36bec0fe4f18daed7d1efedb87c56ce0754146b7049ef21e77d8bef5c46db4dc745aa055306f0beb8826c8d", - "receiptsRoot": "0x75e8e79556b4cb3809b7946b9f45240c11090e7f18c703f6b77d6a8a2c03d980", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b01b5e886cc6627d829e0d3daacd0816076df08c0ef5064a0b535c83389e01994291f1c25538bf342830166adc6072874dd80bbaae3d5dbe34aa6795c98e2c3e00000000000000000000006a91c5a900000000000000000000000000024e03570000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000011f40e37b406c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac7233600000001903ec4c000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0357", - "digest": "0xd17d1ac4af96a467ca7680872d60dc51fef3e48b92875e423f48913bc679ff8f", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0357", - "digest": "0x0ca66b1db48eac0ac46967289c1c6ba705a181e827dc4be4f0adc9ac0a455d5d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0357", - "digest": "0x0ca66b1db48eac0ac46967289c1c6ba705a181e827dc4be4f0adc9ac0a455d5d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1233744264000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006300000002ac723360000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000000000000000000010000001903ec4c0000000002ac723360000000006a91c531", - "digest": "0xb5c171c62b0b126a224182c4e6fe1b1d759167938c77d6a80cde81cf3d5bfaa1", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006300000002ac72336000000000000000000000000000000001", - "digest": "0xe62a141a1e5178093d15e4cc8ec7febac5474587f0fc7b1017606f6bcc4936d3", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099926", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127007", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136628", - "transactionId": "0x80220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x4dbbb77fe3ee7faf2de9ed8e2e1f2f4f7e4bcaf7f36bec0fe4f18daed7d1efedb87c56ce0754146b7049ef21e77d8bef5c46db4dc745aa055306f0beb8826c8d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c8", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1870833", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00007", - "utxoId": "0xa6861e55c93b835542124a9ea752d3564e0e465c060df4ecb9deea1ba0aa47d50000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef4", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50059", - "utxoId": "0x80220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcddab6738c64c77c86daa20aef18ea3cc966e36c4c848eba026a1b49804362f4", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x30a0928c7359543738cd3aed60240ac655e7dac08feab89cc7e954e15c87f452", - "txPointer": "03bd1aa50033", - "utxoId": "0xbb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc170001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe15490564e04a2326f681c92fe03204537b9d20dbc9ab5c1540f67744682f65f", - "contractId": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "stateRoot": "0xfa68fe1ab78cfb4cf294fcd04982300757f01644a4747c218aab110089766369", - "txPointer": "03bd1aa50033", - "utxoId": "0xbb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc170002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1870516", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x95e3e51084d24a26ddcd05c5635b19d4fff745fa2d4bcc1bf5cdfa462819119c", - "inputIndex": "2", - "stateRoot": "0x6c49a250eb0fc5e8f9ebacca61ab40b37b53ee90a7f83b06d199acb7d4327768" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x609e6a255714fb4ee4b2c381dcfeab6011dc0ad6099da6b5b5eacd7cd7653849", - "inputIndex": "3", - "stateRoot": "0xc42cc0799b3637d7b3b5481f81be661e140c78bcc605aa7866451a71adf24d0d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ffbb3e47ffe5bf85892e0f97be4e3941bf876386d646bf0b2903157b1b6f27c9000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008b8197e64976a1f659b6062bc11acff838cb28a8d9cec3271d35424cbd086508002da7d34153a45e831e7bfa568b8b6a9e0efe7090e3f1a469f2973c4dc050f000000000000000000000006a91c5a9000000000000000000000000000224361f0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003a000004102c58b98000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f726465720000011d9d1c25306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000004109114140000000000105c37980000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000a6861e55c93b835542124a9ea752d3564e0e465c060df4ecb9deea1ba0aa47d50000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8bf1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000180220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc00000000000000022644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef400000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001bb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc170000000000000001cddab6738c64c77c86daa20aef18ea3cc966e36c4c848eba026a1b49804362f430a0928c7359543738cd3aed60240ac655e7dac08feab89cc7e954e15c87f4520000000003bd1aa50000000000000033f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000001bb2c2f45b72f839acf06465bd458aed9c0baf7f0ff94f780baaeaedc4930fc170000000000000002e15490564e04a2326f681c92fe03204537b9d20dbc9ab5c1540f67744682f65ffa68fe1ab78cfb4cf294fcd04982300757f01644a4747c218aab1100897663690000000003bd1aa500000000000000339e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8ab4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000295e3e51084d24a26ddcd05c5635b19d4fff745fa2d4bcc1bf5cdfa462819119c6c49a250eb0fc5e8f9ebacca61ab40b37b53ee90a7f83b06d199acb7d432776800000000000000010000000000000003609e6a255714fb4ee4b2c381dcfeab6011dc0ad6099da6b5b5eacd7cd7653849c42cc0799b3637d7b3b5481f81be661e140c78bcc605aa7866451a71adf24d0d00000000000000405b3487af3cc3c454ce9c6985b87015dc53a179b2bd316d489131455e6ecee3bd16bfe2f8c94b80ab8bacc92a52e410f44881155e84fcdca0944346444d6a9508", - "receiptsRoot": "0xffbb3e47ffe5bf85892e0f97be4e3941bf876386d646bf0b2903157b1b6f27c9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008b8197e64976a1f659b6062bc11acff838cb28a8d9cec3271d35424cbd086508002da7d34153a45e831e7bfa568b8b6a9e0efe7090e3f1a469f2973c4dc050f000000000000000000000006a91c5a9000000000000000000000000000224361f0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003a000004102c58b98000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f726465720000011d9d1c25306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000004109114140000000000105c37980000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000224361f", - "digest": "0xfcc19bf6447be16737063d953a164271f703efa5caff1bab9f9b6fba1d3838a4", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a9000000000000000000000000000224361f", - "digest": "0x85479e0364f3f080f83753ce26a8c20efd1bcc5986284bb59f71ad4ac50b61f3", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963079", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "905175603630", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "401592", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003a000004102c58b98000000000000000000000000000000003000000006a91c531", - "digest": "0xa79935aba10b89fa59563ef0330b8aa9ec8d99520298219def1e7baf4121b7b6", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "395940", - "ptr": "67101810", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "373108", - "ptr": "67101185", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a9000000000000000000000000000224361f", - "digest": "0x85479e0364f3f080f83753ce26a8c20efd1bcc5986284bb59f71ad4ac50b61f3", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100957", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1893198", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000000", - "digest": "0x71c2674e8d8b35ad161cfd1915bb382fb6b8209e2ef9dd0e5883ab0dbbce7a4b", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "455840", - "ptr": "67100485", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "368836", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a9000000000000000000000000000224361f", - "digest": "0x85479e0364f3f080f83753ce26a8c20efd1bcc5986284bb59f71ad4ac50b61f3", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100257", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1226701546800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881793", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002700000410911414000000000000000000000000000000000300000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b0000000000000000000000000000000300000000105c37980000041091141400000000006a91c531", - "digest": "0x8beaa06daf1947a8e7ac46edfa3779f99771a32b9c28f58fde8919e38df986a1", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "426572", - "ptr": "67098865", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000027000004109114140000000000000000000000000000000003", - "digest": "0xbdf8b4b3b0aa298650952c583bfc6caa47787c3cbee63b91b16c496d4abc3f93", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "372804", - "ptr": "67096705", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "172405", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "317", - "totalGas": "182233", - "transactionId": "0x2a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c8" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5b3487af3cc3c454ce9c6985b87015dc53a179b2bd316d489131455e6ecee3bd16bfe2f8c94b80ab8bacc92a52e410f44881155e84fcdca0944346444d6a9508" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x3666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b54", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1737464", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00008", - "utxoId": "0x26aab446c00ea6255fd703abef7fb61e65afdab583c05a6ded086dd835210bae0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa4ed6942fddb9df540b65b60ff79fcf0a7309b58dc2f78817d78a3833b7bd4c2", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xcc3a7dc552102eb8a3152fdb1725319df07405b4740b8b03ca23fe3acbb1df8a", - "txPointer": "03bd1aa5003a", - "utxoId": "0x51b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f290003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5005a", - "utxoId": "0x2a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c80001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb2faccc4b824d31c680c538f2ac1a09cbbbc51fb8cb1fe73c8e8eccf0f1f6e19", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x9a2c5013185a0f2f149df7278b1d08794b4cbbca51c7e4c74a0fc0c97b44c143", - "txPointer": "03bd1aa50030", - "utxoId": "0x5ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1737219", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4d586742fba03c7f73f8f3ab974abd818b5cfb6f312edc1f057db3f7a90c65fb", - "inputIndex": "1", - "stateRoot": "0x2fbbd93b29af9e7b50b087f72c7997f6b1b7dec2c9d31bf54c9a49f0eca8e7c7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1f5b09a74e558a9820b3113201452229ac1629dc35c973dfc8eb78685ad69a39", - "inputIndex": "3", - "stateRoot": "0x19f88445d92074274202065be5f4b97b2399725967997e1db3d8760676c53588" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848092da7543e26ec6bb7c5853ccbce743873a3f1d893795d0103d32ac48fffb88400000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000058d0fa36992f68c34a8751d8c5fd4bb2719bc4dce323b52195d0d59f9036db8663f5317537999dbe71f36b4ba334e8ab5f3e0c6aab31f571be3237bd5c09ee6700000000000000000000006a91c5a900000000000000000000000000023dd5310000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000054000000001544b7a800000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa9000000000000000026aab446c00ea6255fd703abef7fb61e65afdab583c05a6ded086dd835210bae0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a82f8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000151b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f290000000000000003a4ed6942fddb9df540b65b60ff79fcf0a7309b58dc2f78817d78a3833b7bd4c2cc3a7dc552102eb8a3152fdb1725319df07405b4740b8b03ca23fe3acbb1df8a0000000003bd1aa5000000000000003aba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000012a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c80000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015ae37df702436bd169617ac7aa86b6b104392dcfe68cbea6ac8042077dfcae1e0000000000000001b2faccc4b824d31c680c538f2ac1a09cbbbc51fb8cb1fe73c8e8eccf0f1f6e199a2c5013185a0f2f149df7278b1d08794b4cbbca51c7e4c74a0fc0c97b44c1430000000003bd1aa50000000000000030e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a8203f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000014d586742fba03c7f73f8f3ab974abd818b5cfb6f312edc1f057db3f7a90c65fb2fbbd93b29af9e7b50b087f72c7997f6b1b7dec2c9d31bf54c9a49f0eca8e7c70000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000031f5b09a74e558a9820b3113201452229ac1629dc35c973dfc8eb78685ad69a3919f88445d92074274202065be5f4b97b2399725967997e1db3d8760676c535880000000000000040331c3c84b62e60731213e1b299e48ba308a4763630a703128961320f835ee979b4b6bd727dce4e9669a4c2366ecaffa7f592a1b51bd1d87b8afa3b72eea1916e", - "receiptsRoot": "0x92da7543e26ec6bb7c5853ccbce743873a3f1d893795d0103d32ac48fffb8840", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000058d0fa36992f68c34a8751d8c5fd4bb2719bc4dce323b52195d0d59f9036db8663f5317537999dbe71f36b4ba334e8ab5f3e0c6aab31f571be3237bd5c09ee6700000000000000000000006a91c5a900000000000000000000000000023dd5310000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000054000000001544b7a800000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd531", - "digest": "0x0dd105f7012e038900d803e422fc67a77475d2da69aa6835c1ba549055ec7004", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd531", - "digest": "0x9c170b340dd98214e27094f4d993aaf3d1b13fcc68cbaf8d5100e14dc58b64ae", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "145700000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000054000000001544b7a800000000000000010000000000000001000000006a91c531", - "digest": "0xa5f7e40d5e8f1c7248b205c689e3da37df246d05ce6b95786fa6cf467876ded4", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100466", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099841", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd531", - "digest": "0x9c170b340dd98214e27094f4d993aaf3d1b13fcc68cbaf8d5100e14dc58b64ae", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099613", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1878520", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "1213205000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000048500a08", - "digest": "0x69f2a2d129967725c5990a18c3d25d2e9a23ee0e8dd09226e5f5667573437f56", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099141", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130905", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "245", - "totalGas": "140537", - "transactionId": "0x3666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b54" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x331c3c84b62e60731213e1b299e48ba308a4763630a703128961320f835ee979b4b6bd727dce4e9669a4c2366ecaffa7f592a1b51bd1d87b8afa3b72eea1916e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "148514", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0000a", - "utxoId": "0x77efee236d89b74aee5e71a00a0f1eace4541cf333a81cb489c17d6ed9e2d5880000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5005b", - "utxoId": "0x3666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b540002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x75a3e2f615d15a97c13e7b96d886ce39b4209521edf21421cd133dbe670b961b", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x7ba90602a99dc50b3614b4ff4e527fd5cc3cd0df48fa341bb6d4b87eb6a82b31", - "txPointer": "03bd1aa5005b", - "utxoId": "0x3666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b540001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7c1d65895d193d7944fbd0a49c95c07b271126a54c8c8dbf91c71d04d05037ad", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x68e2c5731b4202ccbe371b07bc0c8137c8833b0eb1f5619d60c4a64767eb54dd", - "txPointer": "03bd1aa5005b", - "utxoId": "0x3666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b540003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "148295", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x99f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a", - "inputIndex": "2", - "stateRoot": "0x65af7fcd66b869f8dd59dbb159b4ffa160731ddb7bc9e681d1b153db78ee8710" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8d30de0568b781452ef3b87c8ce1647b9a98e0535c5712d33c6cf7fc350e5407", - "inputIndex": "3", - "stateRoot": "0x217d22d981b105055b5c6dd0bcd7c3b37b8ca0cef3b1302eecd27f1bd00b28c6" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480e80f1707b68148ef93f9bee02a876be6bb30c80023dcd906949e93787f7547870000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000945f9d0c945dd39ce5475c16b649afeee0b38d19303526cca01e0743ae1e107e60e2ab80c10a777c10018e4cc0de2eb33239451c019bed17693ef5385189bec200000000000000000000006a91c5a900000000000000000000000000023dd5330000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003f00000000154870c800000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa9000000000000000077efee236d89b74aee5e71a00a0f1eace4541cf333a81cb489c17d6ed9e2d5880000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024422f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000013666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b540000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000013666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b54000000000000000175a3e2f615d15a97c13e7b96d886ce39b4209521edf21421cd133dbe670b961b7ba90602a99dc50b3614b4ff4e527fd5cc3cd0df48fa341bb6d4b87eb6a82b310000000003bd1aa5000000000000005bba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000013666a85e1dbf087a82397e6524b820898c79398663187ec59096de93523e7b5400000000000000037c1d65895d193d7944fbd0a49c95c07b271126a54c8c8dbf91c71d04d05037ad68e2c5731b4202ccbe371b07bc0c8137c8833b0eb1f5619d60c4a64767eb54dd0000000003bd1aa5000000000000005be2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024347f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000299f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a65af7fcd66b869f8dd59dbb159b4ffa160731ddb7bc9e681d1b153db78ee8710000000000000000100000000000000038d30de0568b781452ef3b87c8ce1647b9a98e0535c5712d33c6cf7fc350e5407217d22d981b105055b5c6dd0bcd7c3b37b8ca0cef3b1302eecd27f1bd00b28c60000000000000040ad9497baa75e37f18205cfaf6b597635cc09e1d5d97d1a63755a63e4f728b5717245235060524f77ec08c1a4e3d3bfca92e0748eb50adc546fe5ae89a26d8c12", - "receiptsRoot": "0xe80f1707b68148ef93f9bee02a876be6bb30c80023dcd906949e93787f754787", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000945f9d0c945dd39ce5475c16b649afeee0b38d19303526cca01e0743ae1e107e60e2ab80c10a777c10018e4cc0de2eb33239451c019bed17693ef5385189bec200000000000000000000006a91c5a900000000000000000000000000023dd5330000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003f00000000154870c800000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd533", - "digest": "0x6b3aee1489ff1bca42d6d6b9829b217114ff4cbd32135fb98b317b1fab91d710", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd533", - "digest": "0x8fc1455c34616fedbe6ade2d600c83c5c9de4f6a0b6a389c88a970451f7046b5", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "1292200000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003f00000000154870c800000000000000010000000000000001000000006a91c531", - "digest": "0xdc4e7ba519bed0b99826a2673a3f73b4a60c1212e0bbffffd89c5125d6868f6d", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67102034", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67101409", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd533", - "digest": "0x8fc1455c34616fedbe6ade2d600c83c5c9de4f6a0b6a389c88a970451f7046b5", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67101181", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1892544", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100709", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "115892", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "219", - "totalGas": "125524", - "transactionId": "0x8bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xad9497baa75e37f18205cfaf6b597635cc09e1d5d97d1a63755a63e4f728b5717245235060524f77ec08c1a4e3d3bfca92e0748eb50adc546fe5ae89a26d8c12" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x28ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1735343", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00009", - "utxoId": "0x4c5a831eff3a58a499007ecf5cde235eb5862f552242e1a4271a6ee24a092df70000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5005c", - "utxoId": "0x8bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8d30de0568b781452ef3b87c8ce1647b9a98e0535c5712d33c6cf7fc350e5407", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x6bfb3f3dc407b7d4c16298c49ccf29d96a670f464a25977d41b7dd942457fcc5", - "txPointer": "03bd1aa5005c", - "utxoId": "0x8bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x99f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x113d03838a94b3d353f6b559c84efa0069fb11442b3a0b85591020702326c75e", - "txPointer": "03bd1aa5005c", - "utxoId": "0x8bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1735116", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7eb8b523a3ebc25a52f301ce316827037abce44214d571cda410c11b7d1cb493", - "inputIndex": "2", - "stateRoot": "0xc7a3d6ddc19b7d458d4886352898657bc37d1d71e152b6bd1686277a9f93b7a1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e9", - "inputIndex": "3", - "stateRoot": "0x06c1dceecb12fe2ffe9e9b89b7c0fc1842b417cf1f7bf2cacfb64c90268c075d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ab1392428752fc75fe9496d174834d7544e1b8be39da339dfc70b724307d75500000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000503451cdcfd4e1c08f17a686691418847da64212a63814f7531ca4165ede2e86c176bbe7f909cd1c5cfc733b0a20d3dda3e11a3eea590819edabd06a52b09f4200000000000000000000006a91c5a900000000000000000000000000023dd5320000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002e000000001544c36000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa900000000000000004c5a831eff3a58a499007ecf5cde235eb5862f552242e1a4271a6ee24a092df70000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a7aaff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000018bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f00000000000000038d30de0568b781452ef3b87c8ce1647b9a98e0535c5712d33c6cf7fc350e54076bfb3f3dc407b7d4c16298c49ccf29d96a670f464a25977d41b7dd942457fcc50000000003bd1aa5000000000000005ce2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000018bbcb49016fc80d67d2c11cc5a55dd0ecfab4dcb06afb121a542dc35484f477f000000000000000299f122ff4a469d5e45b164b2b093e2097f322d0225d2912da74d4a77311c919a113d03838a94b3d353f6b559c84efa0069fb11442b3a0b85591020702326c75e0000000003bd1aa5000000000000005cba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a79ccf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000027eb8b523a3ebc25a52f301ce316827037abce44214d571cda410c11b7d1cb493c7a3d6ddc19b7d458d4886352898657bc37d1d71e152b6bd1686277a9f93b7a1000000000000000100000000000000034b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e906c1dceecb12fe2ffe9e9b89b7c0fc1842b417cf1f7bf2cacfb64c90268c075d0000000000000040f4e056aeed5595d891224cbeea2887717d0f504bd3a7dc4d206ece2a4840c01fc8498cda3cb0b9e8b6e187f1aea0c1250efd3cf4cc33275e49bd4e4af2dda178", - "receiptsRoot": "0xab1392428752fc75fe9496d174834d7544e1b8be39da339dfc70b724307d7550", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000503451cdcfd4e1c08f17a686691418847da64212a63814f7531ca4165ede2e86c176bbe7f909cd1c5cfc733b0a20d3dda3e11a3eea590819edabd06a52b09f4200000000000000000000006a91c5a900000000000000000000000000023dd5320000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002e000000001544c36000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd532", - "digest": "0xeb1ea9c0a334e62f66008e746b06fbc38f66f51479cd82fafc78273eeec20d94", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd532", - "digest": "0xfd973fc52f6de1b7f00a88fd9718bb26f77409d77732cc833eb3e94e95c394db", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "318400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002e000000001544c36000000000000000010000000000000001000000006a91c531", - "digest": "0x00a7a8ff42810442c6f1a8c44de02dc1e1cfb27801e077017efcb3ca6f834969", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101362", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100737", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd532", - "digest": "0xfd973fc52f6de1b7f00a88fd9718bb26f77409d77732cc833eb3e94e95c394db", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100509", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1888039", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120397", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "227", - "totalGas": "130029", - "transactionId": "0x28ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf4e056aeed5595d891224cbeea2887717d0f504bd3a7dc4d206ece2a4840c01fc8498cda3cb0b9e8b6e187f1aea0c1250efd3cf4cc33275e49bd4e4af2dda178" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1732149", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0000b", - "utxoId": "0x5305b5dde8c11ecc31a2d6ea292d38c2e07627d1e5900a9e0ff37815bed7fa750000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdb0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5005d", - "utxoId": "0x28ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x65226484423379509d7576cf05e8b5b46850c56d93678cab361979d5eb07cb20", - "contractId": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "stateRoot": "0xcf3c4eb6d8ea28e53d3ccbdda5e173cb9822356d743378c6eb23183889002919", - "txPointer": "03bd1aa50039", - "utxoId": "0x2be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c0920002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcc0b58ebfa07694d39c4533db0fee194663f804277cd4e2462e00ba9a9ed51b3", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x324437f08a40dcb0488373d60df0fdb6884e8618970a4f759f0ab8e22efd9894", - "txPointer": "03bd1aa50048", - "utxoId": "0x28e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef40002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1731770", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x71c8b4387e42cf96ddd59276b02999709962a2bae6b4746aff176849283c7cdf", - "inputIndex": "2", - "stateRoot": "0x7d83abc0d632c2a3acc2952bdb2de7cb20a6723b8291c661621cabf242aedb83" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x75285bee7e3bbcee12577c5b30191e470aa5c5c68bc2e9b680f26024dbf5c786", - "inputIndex": "3", - "stateRoot": "0x6b937dbbde0548285c1f4e1ae76d8c8b55f378c71b09749e4761e44e60616274" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801442d0cb9188a84e59715654b2c043d6d86cbf4b69a7f4f31e89bbe794672675000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000712172d27cb22eb6c7e55b99a34aaddf8961073d9f82160c21c0053306e27965f39dfac90a9c5dd6657ebd174c6e0148bffd93b7eb1a691b59da6aa67b22e11c00000000000000000000006a91c5a900000000000000000000000000029da72d0000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003d000046ddd083910000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000136289fccfc6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046dc0e7fb580000000000104e5100000000000000003000000000000006400000000000210ac0000000003bd1aa900000000000000005305b5dde8c11ecc31a2d6ea292d38c2e07627d1e5900a9e0ff37815bed7fa750000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6e35f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000b0000000000000000000000000000000000000000000000000000000000000000000000000000000128ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d40000000000000001db0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000012be4d95c716d2f138322aa9f7e1db0dae4715114c69e4afc3f932cb48504c092000000000000000265226484423379509d7576cf05e8b5b46850c56d93678cab361979d5eb07cb20cf3c4eb6d8ea28e53d3ccbdda5e173cb9822356d743378c6eb231838890029190000000003bd1aa50000000000000039e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a000000000000000128e859b1f6d6f2842999ccd6096ed5d887b03cd6f254f9693ada59d035705ef40000000000000002cc0b58ebfa07694d39c4533db0fee194663f804277cd4e2462e00ba9a9ed51b3324437f08a40dcb0488373d60df0fdb6884e8618970a4f759f0ab8e22efd98940000000003bd1aa50000000000000048132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a6cbaf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000271c8b4387e42cf96ddd59276b02999709962a2bae6b4746aff176849283c7cdf7d83abc0d632c2a3acc2952bdb2de7cb20a6723b8291c661621cabf242aedb830000000000000001000000000000000375285bee7e3bbcee12577c5b30191e470aa5c5c68bc2e9b680f26024dbf5c7866b937dbbde0548285c1f4e1ae76d8c8b55f378c71b09749e4761e44e606162740000000000000040b6bdbbdcfbc330b62ceb6e15f118282ff7ba402ad84667f836939af0774c73f318daa53e00d174fb46ad491015260c4a9c1851f2bd1bdc8aad65da2219704be5", - "receiptsRoot": "0x1442d0cb9188a84e59715654b2c043d6d86cbf4b69a7f4f31e89bbe794672675", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000712172d27cb22eb6c7e55b99a34aaddf8961073d9f82160c21c0053306e27965f39dfac90a9c5dd6657ebd174c6e0148bffd93b7eb1a691b59da6aa67b22e11c00000000000000000000006a91c5a900000000000000000000000000029da72d0000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003d000046ddd083910000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000136289fccfc6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046dc0e7fb580000000000104e5100000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000029da72d", - "digest": "0xfa6294c487eb3c7a0efa3c9cb57dcbb759d40821bc9d9cbe540562b9ff02e06e", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72d", - "digest": "0x5a53da2880a5bd91b62a8a49cbceb9a444720eb9d2736a7ada0116b3d6c3277e", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "1732673684500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003d000046ddd083910000000000000000000000000000000003000000006a91c531", - "digest": "0xba70e6a162f4592edfd405ad026876752d0e63dc8f5620f2ab086bcb0653a3d6", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099554", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67098929", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72d", - "digest": "0x5a53da2880a5bd91b62a8a49cbceb9a444720eb9d2736a7ada0116b3d6c3277e", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098701", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873866", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000000", - "digest": "0x60ac9d69fe81ca4d4e5a181ff68c21eb015cb5f23c223d4ce6423a6dee90aab2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67097781", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72d", - "digest": "0x5a53da2880a5bd91b62a8a49cbceb9a444720eb9d2736a7ada0116b3d6c3277e", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097553", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1332121423100", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1861592", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000012000046dc0e7fb580000000000000000000000000000000030000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000003000000000104e510000046dc0e7fb580000000006a91c531", - "digest": "0x9a8aec0fb44f55f8d30bf57107fd70cd4b81a79481f00870cd96bc4ac9151f36", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67095713", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000012000046dc0e7fb58000000000000000000000000000000003", - "digest": "0x9eb89bef98c4a33d793032d71a324e6fb7efd2eca5ec42ae4c1c628d1e7d41b2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67091713", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "207878", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "379", - "totalGas": "217706", - "transactionId": "0xc6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb6bdbbdcfbc330b62ceb6e15f118282ff7ba402ad84667f836939af0774c73f318daa53e00d174fb46ad491015260c4a9c1851f2bd1bdc8aad65da2219704be5" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xaf65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b7612", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1721339", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0000d", - "utxoId": "0x769afc883a9ad6b0c25b68a55d8226816ab611a3831f17602f0f13ce1d3a3f390000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7eb8b523a3ebc25a52f301ce316827037abce44214d571cda410c11b7d1cb493", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x81e9322afcc12a36cf52e37129c2ea1754010320c1906fb9b20710f6450ea796", - "txPointer": "03bd1aa5005d", - "utxoId": "0x28ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d40002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5005e", - "utxoId": "0xc6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e9", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x54a5ab60d70e50732dec8f151267e1cae511b557822ea207127035bb36e9e125", - "txPointer": "03bd1aa5005d", - "utxoId": "0x28ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d40003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1721113", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe3ad91b20615f33ea71d10f7a0dca8c8e7212aa50cab10d8bcccbe886a78ffca", - "inputIndex": "1", - "stateRoot": "0x1b97165887663ef6a56361822d049a9b4e73017fe6b67b2d2c29c7b68c26e4e0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa410d0275265a9f535218d901b6da2259e9faf3b46265e26d681bff515eb0d42", - "inputIndex": "3", - "stateRoot": "0x371e7eee4eec75670e03cce767459b3f977d8f00ef81e56246a5f6f23b21be05" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b4e30c837c7d09561a6873d9e30fa56a9becfbfb0f9bfa387089396e736c3bed00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000df747f80e802006072c95ed6983f93a9f54e9aedfc4318e3d53f2bd8b89bef5981826a961776b136579cd5e813f65c8cc227c2e946b3e76a6165eb97361095700000000000000000000006a91c5a900000000000000000000000000023dd5350000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000002ef8dd53700f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154c2dd0000002ef8dd53700000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000769afc883a9ad6b0c25b68a55d8226816ab611a3831f17602f0f13ce1d3a3f390000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a43fbf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000128ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d400000000000000027eb8b523a3ebc25a52f301ce316827037abce44214d571cda410c11b7d1cb49381e9322afcc12a36cf52e37129c2ea1754010320c1906fb9b20710f6450ea7960000000003bd1aa5000000000000005de2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001c6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f0000000000000001b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000128ee8f9b690551728c5fff6b7c27ebcc301acb0cc90d9fb6b938e16e546381d400000000000000034b8bff5380222398f3af2a3e5ea3ae5c0fcb02fa06b287f0c4874c12030110e954a5ab60d70e50732dec8f151267e1cae511b557822ea207127035bb36e9e1250000000003bd1aa5000000000000005dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a4319f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001e3ad91b20615f33ea71d10f7a0dca8c8e7212aa50cab10d8bcccbe886a78ffca1b97165887663ef6a56361822d049a9b4e73017fe6b67b2d2c29c7b68c26e4e0000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003a410d0275265a9f535218d901b6da2259e9faf3b46265e26d681bff515eb0d42371e7eee4eec75670e03cce767459b3f977d8f00ef81e56246a5f6f23b21be0500000000000000407b39f54676baf18f0283b5409029b145a57ff8bd28865d1597441c1225518b5d0d6562edf9202747f4c0bfce1e11d4cdd1c8ee87bd19bcfdba739341e193d693", - "receiptsRoot": "0xb4e30c837c7d09561a6873d9e30fa56a9becfbfb0f9bfa387089396e736c3bed", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000df747f80e802006072c95ed6983f93a9f54e9aedfc4318e3d53f2bd8b89bef5981826a961776b136579cd5e813f65c8cc227c2e946b3e76a6165eb97361095700000000000000000000006a91c5a900000000000000000000000000023dd5350000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000002ef8dd53700f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154c2dd0000002ef8dd537000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd535", - "digest": "0x125f238f60c2eadbc3dbd70fb6f49812d8f0606e882ffa2a93011e6052fa56ad", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd535", - "digest": "0x610ea3097619ca68329582561bb7cae7c44edb6c25d866404578c55352be0a4e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd535", - "digest": "0x610ea3097619ca68329582561bb7cae7c44edb6c25d866404578c55352be0a4e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3227900000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004a00000000154c2dd0000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000010000000000000001000002ef8dd5370000000000154c2dd0000000006a91c531", - "digest": "0xfb2b8d8df957917c1362707dde10637db4dd7a6f932bb692182a393312eefad1", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004a00000000154c2dd000000000000000010000000000000001", - "digest": "0xa248d7b2969bdab8bf50ff64afd2cd726d9bb1a28dc27a7f7dfd9aeab3df2a45", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100614", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120108", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "226", - "totalGas": "129729", - "transactionId": "0xaf65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b7612" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7b39f54676baf18f0283b5409029b145a57ff8bd28865d1597441c1225518b5d0d6562edf9202747f4c0bfce1e11d4cdd1c8ee87bd19bcfdba739341e193d693" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba61", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1587223", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0000c", - "utxoId": "0x598eda1fc7ad75bb03c585be75163bf4d0c0432015b46862f8116a5b1eb617860000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3590c25b3cf5348e71f0ff0cd9a5cd03695afb7d110ca983c8e0a71d69e14ff6", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x5934227e50722b7bcb564b3354ea94a2ab62ab8c1e7e2109116bfff109028628", - "txPointer": "03bd1aa5005f", - "utxoId": "0xaf65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b76120001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5005f", - "utxoId": "0xaf65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b76120002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x78386e0530c67a59d0b7541234bc897c2fef23422670d10eb532f4bd50acd08b", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xca5260148d9b82702d088012e401fc5deabd661f17842a1591ffbb3d3a0035e3", - "txPointer": "03bd1aa5005f", - "utxoId": "0xaf65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b76120003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1586982", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xde5fc5493ac4ebd2e7991a6c42f63d35e9155144b7c81719555865106721f242", - "inputIndex": "1", - "stateRoot": "0x5a6c570b58d67eb8ae5630a6c0ea6cb44c4bbe1a121cb5ed8009bf7c7c64d8f5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x80cdf2badc7c6f02fa828616abc771b90c5e6f051d521b8ede81513ba4140a69", - "inputIndex": "3", - "stateRoot": "0x8a4419e1d26e29658ab8a9afdad7bfe1320963b197e28c6e9354fb373ce433b3" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801af0a7aceb62c9e33a2ef8ba60a6132bf2d18093f6888479ef1c189e30cd748500000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a99daf2ae39c32c4779af78ee7eeef46559771874f280d92c4a8e1a20cf969a6e98acef21f9dcdc9b5a6048f2f56ba83b09f15015feeb0b13d3f8bc91511e1b100000000000000000000006a91c5a900000000000000000000000000023dd5340000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000bfe199ce146c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000153d6c780000021a77a97700000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000598eda1fc7ad75bb03c585be75163bf4d0c0432015b46862f8116a5b1eb617860000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183817f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000001af65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b761200000000000000013590c25b3cf5348e71f0ff0cd9a5cd03695afb7d110ca983c8e0a71d69e14ff65934227e50722b7bcb564b3354ea94a2ab62ab8c1e7e2109116bfff1090286280000000003bd1aa5000000000000005fe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001af65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b76120000000000000002b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000005f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001af65ead5928addede946c06e485df05496d35c4a9993cf1b58c135c3a97b7612000000000000000378386e0530c67a59d0b7541234bc897c2fef23422670d10eb532f4bd50acd08bca5260148d9b82702d088012e401fc5deabd661f17842a1591ffbb3d3a0035e30000000003bd1aa5000000000000005fba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183726f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001de5fc5493ac4ebd2e7991a6c42f63d35e9155144b7c81719555865106721f2425a6c570b58d67eb8ae5630a6c0ea6cb44c4bbe1a121cb5ed8009bf7c7c64d8f500000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000380cdf2badc7c6f02fa828616abc771b90c5e6f051d521b8ede81513ba4140a698a4419e1d26e29658ab8a9afdad7bfe1320963b197e28c6e9354fb373ce433b30000000000000040bd1e3228c6c612487e3463197da69fa8301f4ba0c841cc3ebc4c1c5e527523241d390342663353022f94a686de7b4c9fd2a51c6b189a527b7fba6cee4ae7aed8", - "receiptsRoot": "0x1af0a7aceb62c9e33a2ef8ba60a6132bf2d18093f6888479ef1c189e30cd7485", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a99daf2ae39c32c4779af78ee7eeef46559771874f280d92c4a8e1a20cf969a6e98acef21f9dcdc9b5a6048f2f56ba83b09f15015feeb0b13d3f8bc91511e1b100000000000000000000006a91c5a900000000000000000000000000023dd5340000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000bfe199ce146c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000153d6c780000021a77a977000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd534", - "digest": "0xe063f8ddd8825131adc41179ae1c7c8d6258378a2a0452303f5a71ca0c1b9fee", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd534", - "digest": "0x42e0cebf02c46469646732b13b93117332e07c85220ed3bec339c78741a97bf2", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd534", - "digest": "0x42e0cebf02c46469646732b13b93117332e07c85220ed3bec339c78741a97bf2", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "824123706900", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002400000000153d6c78000000000000000000000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000000000000000000010000021a77a9770000000000153d6c78000000006a91c531", - "digest": "0xe928599f8bbb0c48b096015bc614c83f64b19a8e7fb65e53366b80418628c018", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002400000000153d6c7800000000000000000000000000000001", - "digest": "0x35c831c8e87a568ff955ec2737fbda13a7fa3edea6a3ebbdb4c13158490eb8f5", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128434", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138055", - "transactionId": "0xe2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba61" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xbd1e3228c6c612487e3463197da69fa8301f4ba0c841cc3ebc4c1c5e527523241d390342663353022f94a686de7b4c9fd2a51c6b189a527b7fba6cee4ae7aed8" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "158778", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0000e", - "utxoId": "0x6d786e6bc784a3554447cf9eff8d21057f8ead5c3db6f43d1b65c8b80d1fa1e50000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50060", - "utxoId": "0xe2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba610002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdd41f43ef58a3b97473a8b33829927c92f114278dbd5a53978a3c7a2d413465e", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x43614bca52d6cc404031323b5ddb248763122b1aa8eb7df19bc9d38c55e9712a", - "txPointer": "03bd1aa50040", - "utxoId": "0x55d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5e12bc49ca81e335131a26faab6d7ce18389a5385ad6230f0ab0b7b77233fc1d", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x46946f174021acb51bf7389433bbb62bb42d742e76fc16585f2f90e84db0f2ed", - "txPointer": "03bd1aa50040", - "utxoId": "0x55d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "158544", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xad35d658abaac0fd093e18091732e6fa28bee3fe10b7a46009f756c550932f80", - "inputIndex": "2", - "stateRoot": "0x998896bf589c8bd05bded4e7c6a124d9ba4ec2cfa93c4ce33addc0bc5d45209d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x75dc1d1bf8f29fa272edf3d8d170b43760071d8e3bbc28829dc86b1651b78939", - "inputIndex": "3", - "stateRoot": "0x5f0ad63230cecd2ba66cc3ef1b6f5ea95c9123e6fb4b72bf14f70e9be45e87ed" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808d94a67fa4d931443a07e252b13fa7997f1d3cde7c24a17c7b9b738e20930aea0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000352b14248849fa46f227f0972a5400ae133b1fad15ac143dd3036d2ba9b7479bf7e5255f2a7f0c66dbd0827e0f0dae3ac05a3c7d5a810bbb84e12134ac710d0a00000000000000000000006a91c5a9000000000000000000000000000313566a00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000120000001ca13e50e0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa900000000000000006d786e6bc784a3554447cf9eff8d21057f8ead5c3db6f43d1b65c8b80d1fa1e50000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026c3af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000001e2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba610000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000155d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde0000000000000001dd41f43ef58a3b97473a8b33829927c92f114278dbd5a53978a3c7a2d413465e43614bca52d6cc404031323b5ddb248763122b1aa8eb7df19bc9d38c55e9712a0000000003bd1aa50000000000000040c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000155d6da54c4191659095f43b16aaa39a3c8abb58dbf0a8f03c4fa5e1ba4dc8cde00000000000000025e12bc49ca81e335131a26faab6d7ce18389a5385ad6230f0ab0b7b77233fc1d46946f174021acb51bf7389433bbb62bb42d742e76fc16585f2f90e84db0f2ed0000000003bd1aa500000000000000408d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026b50f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002ad35d658abaac0fd093e18091732e6fa28bee3fe10b7a46009f756c550932f80998896bf589c8bd05bded4e7c6a124d9ba4ec2cfa93c4ce33addc0bc5d45209d0000000000000001000000000000000375dc1d1bf8f29fa272edf3d8d170b43760071d8e3bbc28829dc86b1651b789395f0ad63230cecd2ba66cc3ef1b6f5ea95c9123e6fb4b72bf14f70e9be45e87ed00000000000000403d2f4ca8b6d4339b29da50cf9cce15ae3b07934d17317e517795f0883fe211246ecb0d7421b8d503e138cf9a43a09acee3f42c1d66af8133a01a13b2fef170c6", - "receiptsRoot": "0x8d94a67fa4d931443a07e252b13fa7997f1d3cde7c24a17c7b9b738e20930aea", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000352b14248849fa46f227f0972a5400ae133b1fad15ac143dd3036d2ba9b7479bf7e5255f2a7f0c66dbd0827e0f0dae3ac05a3c7d5a810bbb84e12134ac710d0a00000000000000000000006a91c5a9000000000000000000000000000313566a00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000120000001ca13e50e0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000313566a", - "digest": "0x682124299e4d49dbdd166311c12ab882055d903ad308f36e03b32d89fa7c0b56", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566a", - "digest": "0x92058c70216f326921b183de9a5073ad28d712d56a57f6e8f8a86bf2c1a175f0", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1079000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000120000001ca13e50e000000000000000010000000000000001000000006a91c531", - "digest": "0x59e04587c8a00f8be1f3aef41283aae9b9bcafa5f0f6cd1a3d514377a3d7c279", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101154", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100529", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566a", - "digest": "0x92058c70216f326921b183de9a5073ad28d712d56a57f6e8f8a86bf2c1a175f0", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100301", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1883976", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099829", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "124460", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "234", - "totalGas": "134092", - "transactionId": "0xa51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3d2f4ca8b6d4339b29da50cf9cce15ae3b07934d17317e517795f0883fe211246ecb0d7421b8d503e138cf9a43a09acee3f42c1d66af8133a01a13b2fef170c6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xc9ff1bf07dbdb60143a6992b18d8addaeb465f6d665373e6d70394cca0cde389", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1868153", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0000f", - "utxoId": "0xd78e64b3ddceea0161e2ce097582ebcc8e704dab6b26e8051b002c6ebdebb1e20000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a5", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50061", - "utxoId": "0xa51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7d09ca744c5e8a5529106ab4349905bdc3c447a1d9179476f618d387cfe1b597", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0xe92b26ae50c4a2dbf0cc5051767e618a88e0f9d31ff2558a0fee9095ed79dc6b", - "txPointer": "03bd1aa5003d", - "utxoId": "0xe5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc20001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x63f75a807c4b2c724f9e39e219aa4998f216c71ff8e3f00fce00dd75db38cfcd", - "contractId": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "stateRoot": "0xddb9d7f08e9f1c34d77a338124e57be0a07f24b678bd421d6c2158a3a058cd64", - "txPointer": "03bd1aa5003d", - "utxoId": "0xe5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc20002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1867798", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd9d1e87a1d4e70d7cf46f3a6961a8f8d4f44263e1582bfe46b7a0e0d1a8db79c", - "inputIndex": "2", - "stateRoot": "0x41ba92e830b0b3f3a6724cb121cb6b59c6510ec20bf6e9ee99031f134132efd0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcdc316e706743256d19b9a2cab460e16ba97143f4b506d8741a7817cc7c9187e", - "inputIndex": "3", - "stateRoot": "0xc672500f1ce330f72345cc0629efbcd0db2b391754e888972a57d93e497bba66" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848008a856a7dd6ce2f1c96c1453df0be1df51c244014453bcb1eaac1eaf607a13a7000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005b93121bddcb0ea0d1853ac3c9cb46a25854d27276fb4b76a2247c7d278c5bfd6794512b8cd252e02db1cfbe2d650653b6feb4d3d7ec6e4dd52c0c436f916d6f00000000000000000000006a91c5a900000000000000000000000000028d0d0000000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000417000002392492ec80000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000001e6a8f60ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff00000000000000010000000000000018000002392e1c5480000000001e6a8f600000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000d78e64b3ddceea0161e2ce097582ebcc8e704dab6b26e8051b002c6ebdebb1e20000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8179f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001a51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb0000000000000001045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc200000000000000017d09ca744c5e8a5529106ab4349905bdc3c447a1d9179476f618d387cfe1b597e92b26ae50c4a2dbf0cc5051767e618a88e0f9d31ff2558a0fee9095ed79dc6b0000000003bd1aa5000000000000003d5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000001e5e13349965edab3f7584f003dec6f1c56038b0f462f966448b7dde74ee63bc2000000000000000263f75a807c4b2c724f9e39e219aa4998f216c71ff8e3f00fce00dd75db38cfcdddb9d7f08e9f1c34d77a338124e57be0a07f24b678bd421d6c2158a3a058cd640000000003bd1aa5000000000000003d66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8016f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002d9d1e87a1d4e70d7cf46f3a6961a8f8d4f44263e1582bfe46b7a0e0d1a8db79c41ba92e830b0b3f3a6724cb121cb6b59c6510ec20bf6e9ee99031f134132efd000000000000000010000000000000003cdc316e706743256d19b9a2cab460e16ba97143f4b506d8741a7817cc7c9187ec672500f1ce330f72345cc0629efbcd0db2b391754e888972a57d93e497bba660000000000000040f9fce4ebac50a55e1b9fe9d24ee86d44b5e39f3c8459e6a2583819becc302c7008aa1c43268629b3d0409b64c9cc2ab472b12dfe6279f0a98d9734c24fbe16fe", - "receiptsRoot": "0x08a856a7dd6ce2f1c96c1453df0be1df51c244014453bcb1eaac1eaf607a13a7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005b93121bddcb0ea0d1853ac3c9cb46a25854d27276fb4b76a2247c7d278c5bfd6794512b8cd252e02db1cfbe2d650653b6feb4d3d7ec6e4dd52c0c436f916d6f00000000000000000000006a91c5a900000000000000000000000000028d0d0000000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000417000002392492ec80000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000001e6a8f60ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff00000000000000010000000000000018000002392e1c5480000000001e6a8f600000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000028d0d00", - "digest": "0x2d54b83aca6de200471df73468d066d5a9e5afaa0957a4eae5d085c81c0a152e", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a900000000000000000000000000028d0d00", - "digest": "0x5e98479d7df48d9cb16df12d5149eaaa887eac5ecd8aa484f13645fff892ecaf", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963010", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "528100000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000417000002392492ec8000000000000000010000000000000003000000006a91c531", - "digest": "0x219cb94200126b972554f43600d1899ee252d8878128980641a3ab1e6b93432d", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67100530", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099905", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a900000000000000000000000000028d0d00", - "digest": "0x5e98479d7df48d9cb16df12d5149eaaa887eac5ecd8aa484f13645fff892ecaf", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099677", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881967", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000000000000000000000", - "digest": "0x59ecf2f36962ef2a9ec90b6961021042caee97c9fbf3cc61e7799c9eb0d86806", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67098757", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5a900000000000000000000000000028d0d00", - "digest": "0x5e98479d7df48d9cb16df12d5149eaaa887eac5ecd8aa484f13645fff892ecaf", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098529", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "510300000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869693", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000003d1000002392e1c548000000000000000010000000000000003000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000010000000000000003000000001e6a8f60000002392e1c5480000000006a91c531", - "digest": "0x83d69065d3b6669f0eab23f1f9ac7aabd0b9e0c5de448e230dcccd8efbc8c5c1", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67096689", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000003d1000002392e1c548000000000000000010000000000000003", - "digest": "0x7403c35f265e43002ac4b60879dc74a5048e30e91283b16b8e77de011c117f3a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67093441", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "194234", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "355", - "totalGas": "204062", - "transactionId": "0xc9ff1bf07dbdb60143a6992b18d8addaeb465f6d665373e6d70394cca0cde389" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf9fce4ebac50a55e1b9fe9d24ee86d44b5e39f3c8459e6a2583819becc302c7008aa1c43268629b3d0409b64c9cc2ab472b12dfe6279f0a98d9734c24fbe16fe" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "174817", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00010", - "utxoId": "0x28564297cc5da1192315ecec020df31fd4b3068a8ead716ffb2dde02c2c487700000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5194545400fe01ea67d29ddd4f50aa6f5698dce1163c6ed8085a7fc5fd76742e", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x5319997076b9125bfc3087895bb04d2b2fa77c97e9cc9caab89134a5c4e4afaa", - "txPointer": "03bd1aa50061", - "utxoId": "0xa51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbd2c69c3213b8de21c18f950fb6adfd6495067c00fc637d82ad9dc3d5bbcd969", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x1d0e726c81709c24b1eb5aa08b40c45081121b02b7dd9be6a1c7748f594b705e", - "txPointer": "03bd1aa50061", - "utxoId": "0xa51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50062", - "utxoId": "0xc9ff1bf07dbdb60143a6992b18d8addaeb465f6d665373e6d70394cca0cde3890001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "174451", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8818be5af868860bff9a3ed2b15593df5c35ad3928aa43f95a733d8ee663eb50", - "inputIndex": "1", - "stateRoot": "0x805544208aaca40ec2b944cfca86f97205ff36b39befb8a1a6b9366719fb0c77" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x14d65a919a55342ebbd4ba7fcfaae7093f3152bcc902e4e0131b3c358b5b3a7e", - "inputIndex": "2", - "stateRoot": "0x5ebbff3bf4e8dc9cb1b092cb7d8f8f58b22823db3a4915c97e41402a01684057" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84804568b2ab8d5f03b435ade7e53f4435b14ee3e703253a5af208afeb7f9266801a000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000608109eb62dc6c5a273c3b9e42ea7ecbcfc3f7b66383b61afb92ce096b129b387891e875b8204810800c315a3dae6f0610bc29d63a8ca22f42452157edae2f4a00000000000000000000006a91c5a9000000000000000000000000000313566b00000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000360000001c9337ec40000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000081f923a1386c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c959a4640000000010f05b6c00000000000000001000000000000006400000000000210ac0000000003bd1aa9000000000000000028564297cc5da1192315ecec020df31fd4b3068a8ead716ffb2dde02c2c487700000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002aae1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000001a51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb00000000000000025194545400fe01ea67d29ddd4f50aa6f5698dce1163c6ed8085a7fc5fd76742e5319997076b9125bfc3087895bb04d2b2fa77c97e9cc9caab89134a5c4e4afaa0000000003bd1aa50000000000000061c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001a51a18b472d5409482a73730efe1d820d2b4c7bf12c42f69b2371d5482217cfb0000000000000003bd2c69c3213b8de21c18f950fb6adfd6495067c00fc637d82ad9dc3d5bbcd9691d0e726c81709c24b1eb5aa08b40c45081121b02b7dd9be6a1c7748f594b705e0000000003bd1aa500000000000000618d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001c9ff1bf07dbdb60143a6992b18d8addaeb465f6d665373e6d70394cca0cde3890000000000000001a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002a973f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018818be5af868860bff9a3ed2b15593df5c35ad3928aa43f95a733d8ee663eb50805544208aaca40ec2b944cfca86f97205ff36b39befb8a1a6b9366719fb0c770000000000000001000000000000000214d65a919a55342ebbd4ba7fcfaae7093f3152bcc902e4e0131b3c358b5b3a7e5ebbff3bf4e8dc9cb1b092cb7d8f8f58b22823db3a4915c97e41402a0168405700000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f9e8f2d165a507823c6a82587d636be9914e8a3d80d97e8c6bff53d3608bcdeaf958831e6d49293187b6c3083fdb22950b25f792ebef4de75b144bdb4ea505b6", - "receiptsRoot": "0x4568b2ab8d5f03b435ade7e53f4435b14ee3e703253a5af208afeb7f9266801a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000608109eb62dc6c5a273c3b9e42ea7ecbcfc3f7b66383b61afb92ce096b129b387891e875b8204810800c315a3dae6f0610bc29d63a8ca22f42452157edae2f4a00000000000000000000006a91c5a9000000000000000000000000000313566b00000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000360000001c9337ec40000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000081f923a1386c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c959a4640000000010f05b6c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000313566b", - "digest": "0x3444f10ea95e6881efe7efeb1fc71f86710f6d3b94ae01e3ed356d1b9d1f53a8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566b", - "digest": "0xb239fc92495815b6dd91de297cb4fd6ae3440066ed8cac7fe85b7908be411ea8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "948695170000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000360000001c9337ec4000000000000000000000000000000001000000006a91c531", - "digest": "0xe0a006220e9b397f7243cf001b1d4e6452b205b9abccdc89c0c9e9bb159f81a3", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67101042", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100417", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566b", - "digest": "0xb239fc92495815b6dd91de297cb4fd6ae3440066ed8cac7fe85b7908be411ea8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100189", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1883617", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099717", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566b", - "digest": "0xb239fc92495815b6dd91de297cb4fd6ae3440066ed8cac7fe85b7908be411ea8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099489", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "558230643000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1872212", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e0000001c959a4640000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000001000000010f05b6c00000001c959a4640000000006a91c531", - "digest": "0xf4ec21ca92e8810c8addc002673805ad9205412d43e7e3b4565be6952d2a1eb3", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67098097", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e0000001c959a464000000000000000000000000000000001", - "digest": "0xf435ba138582cf4834ecac5e4386a3ad83c7b49e5668c8861f2884a52754c09e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67093857", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "200433", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "366", - "totalGas": "210261", - "transactionId": "0x1c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf9e8f2d165a507823c6a82587d636be9914e8a3d80d97e8c6bff53d3608bcdeaf958831e6d49293187b6c3083fdb22950b25f792ebef4de75b144bdb4ea505b6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e689", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "155473", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00011", - "utxoId": "0x5d2e3942f75dccc0f72e4d74fa855de69ac2f9be2a8d44b9b37229e7f6d856810000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd9b60b37126a783189faffe6eaec5e59df08439b7584c96b1d6f9a7cf1cf38ab", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xab2c5d4730f95dfcf7dae459e5222bd8d0c1ff99abacffa463002cb92470a2ac", - "txPointer": "03bd1aa50050", - "utxoId": "0x49e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x76e3b8e75c2b1c33b8b3aaadf1b993369761ad4f5aa9714d1bea7c1d7b370485", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x5c78b5a2c3ccb28a49bc74be0a0a55eb006ff696972a28894cf2dd6616d770ea", - "txPointer": "03bd1aa5005e", - "utxoId": "0xc6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50063", - "utxoId": "0x1c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "155088", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8358a5e195391ab65b81daa165d412f6fa27bfae93d438248301e72890fa2449", - "inputIndex": "1", - "stateRoot": "0x6d172d8ae5e2442b446b8f58b41371b10de1fd9d61ba0a226be140ea298f4987" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x231c58aff9e4393b21d4a464965afc9dd941d7e2884ab00b58d406c9226cb2c9", - "inputIndex": "2", - "stateRoot": "0x8f46d823bcd4507768ef8c9573c25c99bd4348690a15183974a3f9b2b299e2f0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40a67339b13d7b529eca3ddb92a29945c6b35c8bb39f7f4d68cc34d920f333cb47000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e793747952c0ad58f8808214d0ca0ae25d2b7766abc336947de762d924aeb5d64823d1047fd47d2ba455bcc61d8e3a693f755e9ad3c3d6985fa94c55695d6beb00000000000000000000006a91c5a9000000000000000000000000000a759f040000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000025000046e226f2ce8000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000004919ac1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e1e004d90000000000004919ac0000000000000003000000000000006400000000000210ac0000000003bd1aa900000000000000005d2e3942f75dccc0f72e4d74fa855de69ac2f9be2a8d44b9b37229e7f6d856810000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025f51f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000149e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b0000000000000002d9b60b37126a783189faffe6eaec5e59df08439b7584c96b1d6f9a7cf1cf38abab2c5d4730f95dfcf7dae459e5222bd8d0c1ff99abacffa463002cb92470a2ac0000000003bd1aa500000000000000509423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001c6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f000000000000000376e3b8e75c2b1c33b8b3aaadf1b993369761ad4f5aa9714d1bea7c1d7b3704855c78b5a2c3ccb28a49bc74be0a0a55eb006ff696972a28894cf2dd6616d770ea0000000003bd1aa5000000000000005e132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000011c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d00000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025dd0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018358a5e195391ab65b81daa165d412f6fa27bfae93d438248301e72890fa24496d172d8ae5e2442b446b8f58b41371b10de1fd9d61ba0a226be140ea298f498700000000000000010000000000000002231c58aff9e4393b21d4a464965afc9dd941d7e2884ab00b58d406c9226cb2c98f46d823bcd4507768ef8c9573c25c99bd4348690a15183974a3f9b2b299e2f0000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000405e67da3c4af4328cd12df4585cf3a3e169a91720c04486256939c078302498c9243e9650fd02c15acb6747ad3ea0275bffcbf49d7b17ab9660f0cde01fca8268", - "receiptsRoot": "0xa67339b13d7b529eca3ddb92a29945c6b35c8bb39f7f4d68cc34d920f333cb47", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e793747952c0ad58f8808214d0ca0ae25d2b7766abc336947de762d924aeb5d64823d1047fd47d2ba455bcc61d8e3a693f755e9ad3c3d6985fa94c55695d6beb00000000000000000000006a91c5a9000000000000000000000000000a759f040000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000025000046e226f2ce8000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000004919ac1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e1e004d90000000000004919ac0000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000a759f04", - "digest": "0x504e283cd17136a9f153dd49938e7e458883983dd09dcc5456ecb0ba4c276987", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f04", - "digest": "0xef045f905c97e0b8acb17abe122d0c3bf33932fe5d215217b9860368c2271ad2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962951", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "3746300", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409832", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000025000046e226f2ce8000000000000000010000000000000003000000006a91c531", - "digest": "0x11df42c75d001f35c0e2f38e6949613125e7b16e6960cdb5b0050e107453dddf", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404180", - "ptr": "67099978", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381348", - "ptr": "67099353", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f04", - "digest": "0xef045f905c97e0b8acb17abe122d0c3bf33932fe5d215217b9860368c2271ad2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67099125", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4876476", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464080", - "ptr": "67098205", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377076", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f04", - "digest": "0xef045f905c97e0b8acb17abe122d0c3bf33932fe5d215217b9860368c2271ad2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67097977", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "4790700", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": "4864201", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004e000046e1e004d9000000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000000004919ac000046e1e004d900000000006a91c531", - "digest": "0x19e6ab31935ba003b474a600d199510654076fbbb84f683c4c1b46cc2b5e526e", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434812", - "ptr": "67096137", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004e000046e1e004d90000000000000000010000000000000003", - "digest": "0xf086359e51a4678b3baf0e5eb585c9dc71eb9bd02e9b182f83a57f68b7f93f55", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381044", - "ptr": "67091705", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "211514", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "385", - "totalGas": "221342", - "transactionId": "0x089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e689" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5e67da3c4af4328cd12df4585cf3a3e169a91720c04486256939c078302498c9243e9650fd02c15acb6747ad3ea0275bffcbf49d7b17ab9660f0cde01fca8268" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5351a0a168958861638d04131c87693a5ba0ac2df33f4ffde3784d55361a27fb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "287522", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00013", - "utxoId": "0xeaebbd630d72578e76ff0a9d5ea4ddfbed0a0e0124a964b9553012151d5b46640000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x89b893c5f0c56a9b01fc5c08783b767826a6662e6e3f08b7bf5bf64d237a6ea2", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x5cc546cfec1e162806456819824b887356442d2b9710562b25c786be688f613a", - "txPointer": "03bd1aa50064", - "utxoId": "0x089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e6890001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50064", - "utxoId": "0x089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e6890003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfe6e217f2fe10c4d3ea1066e350ed4d68c96936d33f98a5694a06fa083110f99", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0xc7b48b99eda362707d14aa25f62898f4bd53d9d90dc6f6f326c8e230be3c5508", - "txPointer": "03bd1aa50050", - "utxoId": "0x49e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "287181", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7ebf61714e9b10d9c57fe19bc866272ba8fd2513c90322389a95cbbc9c3869c3", - "inputIndex": "1", - "stateRoot": "0x2e09be7b7a1214a344373b7c5c351235f4e455d2b545e4b5865a6fea1c118ff8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x80457d12c20077686fdd8fdb1e85d089e02007d00e5414ca6328be8e4238fd66", - "inputIndex": "3", - "stateRoot": "0xb34ecb6b165784c9e1d6f227b18221b4cdcec62577e37daa3fb62c3d8904f25d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b400a0077c079ce1c84c94b3048f08e2c0132d43bd9fd4d7c3b91c8512c6d0fa0d9000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003e77361facad28f458041b9ca39a327ef1e341e0b04dd48344199f0e1887a50f1eadb2a5fbb76d85fb95f5de935f6492934d59606aaca0e1829a7d12ef8f8b4600000000000000000000006a91c5a9000000000000000000000000000a759f050000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000009e00000000000cf69d00000000000000000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000000d0134ede66c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cf69d00003bcb7f4aac000000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000eaebbd630d72578e76ff0a9d5ea4ddfbed0a0e0124a964b9553012151d5b46640000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000046322f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001300000000000000000000000000000000000000000000000000000000000000000000000000000001089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e689000000000000000189b893c5f0c56a9b01fc5c08783b767826a6662e6e3f08b7bf5bf64d237a6ea25cc546cfec1e162806456819824b887356442d2b9710562b25c786be688f613a0000000003bd1aa500000000000000649423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e68900000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000149e9136dfe0a9329e41ed21250272fe1eda09dce282c5ea832c69bdd2289363b0000000000000001fe6e217f2fe10c4d3ea1066e350ed4d68c96936d33f98a5694a06fa083110f99c7b48b99eda362707d14aa25f62898f4bd53d9d90dc6f6f326c8e230be3c55080000000003bd1aa50000000000000050df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000461cdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000017ebf61714e9b10d9c57fe19bc866272ba8fd2513c90322389a95cbbc9c3869c32e09be7b7a1214a344373b7c5c351235f4e455d2b545e4b5865a6fea1c118ff800000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000380457d12c20077686fdd8fdb1e85d089e02007d00e5414ca6328be8e4238fd66b34ecb6b165784c9e1d6f227b18221b4cdcec62577e37daa3fb62c3d8904f25d000000000000004098dbe220229e561879f2c3593c71030f8082848285a73b731b342b8146fcc496d1d3e9ee9b1003270b46065a0fb97d4ef5307254c2a5805fa89e387d566b8b58", - "receiptsRoot": "0x0a0077c079ce1c84c94b3048f08e2c0132d43bd9fd4d7c3b91c8512c6d0fa0d9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003e77361facad28f458041b9ca39a327ef1e341e0b04dd48344199f0e1887a50f1eadb2a5fbb76d85fb95f5de935f6492934d59606aaca0e1829a7d12ef8f8b4600000000000000000000006a91c5a9000000000000000000000000000a759f050000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000009e00000000000cf69d00000000000000000000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000000d0134ede66c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cf69d00003bcb7f4aac000000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000a759f05", - "digest": "0xef145089dcf2023860fe631441dfd560a05f44435cecbac0b1a7fff3fb99975a", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a9000000000000000000000000000a759f05", - "digest": "0x25001b1d4cbf84f9ba3a56d2519f416fc43e27bc41b5ee6f1e332b667aa896fb", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962951", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "44609808585", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "409832", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009e00000000000cf69d00000000000000000000000000000003000000006a91c531", - "digest": "0x259e9b027cf3c04db5bca30975dd973c5192d5c72faccb2dc2cda16cc04daf7e", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "404180", - "ptr": "67101114", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381348", - "ptr": "67100489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a9000000000000000000000000000a759f05", - "digest": "0x25001b1d4cbf84f9ba3a56d2519f416fc43e27bc41b5ee6f1e332b667aa896fb", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67100261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4891070", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "464080", - "ptr": "67099341", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "377076", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5a9000000000000000000000000000a759f05", - "digest": "0x25001b1d4cbf84f9ba3a56d2519f416fc43e27bc41b5ee6f1e332b667aa896fb", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67099113", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "55854820838", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4878795", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009f00000000000cf69d0000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000000000000000300003bcb7f4aac0000000000000cf69d000000006a91c531", - "digest": "0xbfbecc98e37816cf111eaa41e026d87e1caeb744ba0b0aedeae7b407d6f55fd7", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "434812", - "ptr": "67097273", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000009f00000000000cf69d00000000000000000000000000000003", - "digest": "0xaced1dd85a2314793c067797436b37ca3ffb3f6b34375df8e1479ae133c3c16c", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381044", - "ptr": "67093769", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "185814", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "341", - "totalGas": "195642", - "transactionId": "0x5351a0a168958861638d04131c87693a5ba0ac2df33f4ffde3784d55361a27fb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x98dbe220229e561879f2c3593c71030f8082848285a73b731b342b8146fcc496d1d3e9ee9b1003270b46065a0fb97d4ef5307254c2a5805fa89e387d566b8b58" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x74c07bd90bc033c00fc5739c04f6ca83be31bcb78d20243f4f89f6cfe97d116c", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1859519", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00012", - "utxoId": "0x010c17c37824072db57982ea684cb2f529da795f5fe109521fddbd65b54661fa0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x45384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a8", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50065", - "utxoId": "0x5351a0a168958861638d04131c87693a5ba0ac2df33f4ffde3784d55361a27fb0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xed1d239ff0ef57e83ef27d54a2c1adec8fb8acceb25a426398a7fb6400c29c0e", - "contractId": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "stateRoot": "0x227b70f242aeea14300b49eadb116fdc2ed08d735a34eb84765939ad6d00d89f", - "txPointer": "03bd1aa5000f", - "utxoId": "0xcba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf05324d1869de677ff31a364bee4d43147d32cac7520e8c534d305d035da521c", - "contractId": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "stateRoot": "0xb4aa4243859c236607bab216bdb9436c8662bd57b929095061d489283275667f", - "txPointer": "03bd1aa5000f", - "utxoId": "0xcba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc40002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1859132", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5425c1296c20b1702dd32e1349fa053bd8fbdb5c3d3301f3bfaf3d94dccbbc3d", - "inputIndex": "2", - "stateRoot": "0x7545c60a67a367b2844e73e883b4900ca875519d9ac1a35e1f141af686871c2c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x99b07f2ee65ae2e68bb58a36dff6148f281d89a81c878fb034b287fcf32da439", - "inputIndex": "3", - "stateRoot": "0xfc641aa84d56253fbe883872c89d4f543573ce3237ef362eff6fe7e4dc2c9e6f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802cc493486dfb990ebb5a0b8731be6b8ff36b6fd08a33b4d9e29f84dd3c1f2f2a000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b428e1f73de06651382cc622d0d3403272c2c472fdfe67830263e8868f2ade5ae3151184566159b388d9037f647ed522a56244bc449674e3602bbbbd7657314d00000000000000000000006a91c5a90000000000000000000000000002f431260000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000001bb680000000003b98801000000000000000000000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f72646572000003be8c4600d96c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000003b988010000003beb11653a00000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000010c17c37824072db57982ea684cb2f529da795f5fe109521fddbd65b54661fa0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c5fbff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000015351a0a168958861638d04131c87693a5ba0ac2df33f4ffde3784d55361a27fb000000000000000245384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a800000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001cba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc40000000000000003ed1d239ff0ef57e83ef27d54a2c1adec8fb8acceb25a426398a7fb6400c29c0e227b70f242aeea14300b49eadb116fdc2ed08d735a34eb84765939ad6d00d89f0000000003bd1aa5000000000000000f2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a613970000000000000001cba77596e992d86dc973e1d5baa66a079b74963e2e6b52f7ab520564e35fadc40000000000000002f05324d1869de677ff31a364bee4d43147d32cac7520e8c534d305d035da521cb4aa4243859c236607bab216bdb9436c8662bd57b929095061d489283275667f0000000003bd1aa5000000000000000fca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c5e3cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000025425c1296c20b1702dd32e1349fa053bd8fbdb5c3d3301f3bfaf3d94dccbbc3d7545c60a67a367b2844e73e883b4900ca875519d9ac1a35e1f141af686871c2c0000000000000001000000000000000399b07f2ee65ae2e68bb58a36dff6148f281d89a81c878fb034b287fcf32da439fc641aa84d56253fbe883872c89d4f543573ce3237ef362eff6fe7e4dc2c9e6f0000000000000040fa35ca32574e88f67deb47b17fe31f1e2e35a324123d60f1744a34e8e177ee4a6ff2773c59151961e3347cc503f769f3825f9bf4a981367759a54245c4357626", - "receiptsRoot": "0x2cc493486dfb990ebb5a0b8731be6b8ff36b6fd08a33b4d9e29f84dd3c1f2f2a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b428e1f73de06651382cc622d0d3403272c2c472fdfe67830263e8868f2ade5ae3151184566159b388d9037f647ed522a56244bc449674e3602bbbbd7657314d00000000000000000000006a91c5a90000000000000000000000000002f431260000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000001bb680000000003b98801000000000000000000000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f72646572000003be8c4600d96c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000003b988010000003beb11653a00000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000002f43126", - "digest": "0x9bfda6bbae3485717cf1c560dcba09e15906acaf3eb580f6c94a5880d8e49698", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5a90000000000000000000000000002f43126", - "digest": "0xdf447f9616a9d840805255b4d38957b552da65c12dd6c874ab2d070183b00f69", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": "4134142885535", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000001bb680000000003b98801000000000000000000000000000000003000000006a91c531", - "digest": "0x0f04c55b3dc4eb3fa4424f79297f8bab2f0836e721111dae8ae9767322048c8b", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099722", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099097", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5a90000000000000000000000000002f43126", - "digest": "0xdf447f9616a9d840805255b4d38957b552da65c12dd6c874ab2d070183b00f69", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098869", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874495", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000000000000000000000000", - "digest": "0xbb12b82290efdd812bc0ad4d29c874d5fd4c7770aba5f41593fe26995d7e2c18", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67097949", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5a90000000000000000000000000002f43126", - "digest": "0xdf447f9616a9d840805255b4d38957b552da65c12dd6c874ab2d070183b00f69", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097721", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "4116932067545", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1862221", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000001bb681000000003b9880100000000000000000000000000000000300000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000000000000000000000003000003beb11653a0000000003b988010000000006a91c531", - "digest": "0x649cfb1c03052bcd83d2da6998fdabd44de553b9f65c31039dbfb9e71688f285", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67095881", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000001bb681000000003b98801000000000000000000000000000000003", - "digest": "0x7634193ffe0af7f485c4aa59c773a2c4fc90924790210597d1d75dfdd1c0ceb9", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67091257", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "212568", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "387", - "totalGas": "222396", - "transactionId": "0x74c07bd90bc033c00fc5739c04f6ca83be31bcb78d20243f4f89f6cfe97d116c" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xfa35ca32574e88f67deb47b17fe31f1e2e35a324123d60f1744a34e8e177ee4a6ff2773c59151961e3347cc503f769f3825f9bf4a981367759a54245c4357626" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa24706e07252bc95af5d26cb711a7a3ffbc9a326ad5d4706ac776db74010fae6", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1586385", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00014", - "utxoId": "0x37d022a1c8c6ff5dcbda58c98245e8497d6c794def8e83b7a4a44e80b621f0950000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0xfd7bd24158f1f1dc3cc6d5604fffabef28431fa7a94cf8c28005d42d4f77fd59", - "txPointer": "03bd1aa50064", - "utxoId": "0x089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e6890002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x72cb9d1e9d6487f04cf4a24fa4077b3213dc7e450cf291b19c7f2ef7af13a89f", - "txPointer": "03bd1aa50065", - "utxoId": "0x5351a0a168958861638d04131c87693a5ba0ac2df33f4ffde3784d55361a27fb0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50066", - "utxoId": "0x74c07bd90bc033c00fc5739c04f6ca83be31bcb78d20243f4f89f6cfe97d116c0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1586262", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0xf3a473f64e5c4c101e17fcbbb579429479cd9072be4cf17e4b7335013bb8c85a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x14db23fb8e88172c3e5fc8e50b8fade3cd86d133d27f0879943386c3eca4ea20" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40597464ba2631b6b477f8e9c5733fba8ab48fc47c981c56b27805bf32d0bb933a0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000583186ce98384e410f892aa8ca683c021a4660fc51e6493f77352a9bfb4a5f7917c2b77eb16761879876569b460ce009bbc2d430f6086bfd04de1e8dfe89161a00000000000000000000006a91c5a9000000000000000000000000000a759f060000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000025000046e226f2ce8000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aa9000000000000000037d022a1c8c6ff5dcbda58c98245e8497d6c794def8e83b7a4a44e80b621f0950000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001834d1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000001089c6629e80a6dec043388e37509291915ee6e19735a6fa250cdefa1c5a1e68900000000000000020000000000000000000000000000000000000000000000000000000000000000fd7bd24158f1f1dc3cc6d5604fffabef28431fa7a94cf8c28005d42d4f77fd590000000003bd1aa50000000000000064132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000015351a0a168958861638d04131c87693a5ba0ac2df33f4ffde3784d55361a27fb0000000000000001000000000000000000000000000000000000000000000000000000000000000072cb9d1e9d6487f04cf4a24fa4077b3213dc7e450cf291b19c7f2ef7af13a89f0000000003bd1aa500000000000000659423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000174c07bd90bc033c00fc5739c04f6ca83be31bcb78d20243f4f89f6cfe97d116c0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000183456f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000f3a473f64e5c4c101e17fcbbb579429479cd9072be4cf17e4b7335013bb8c85a00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000014db23fb8e88172c3e5fc8e50b8fade3cd86d133d27f0879943386c3eca4ea2000000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040ae3945528f8c893bc8a344cb3a5e6dab884f4cd6023d55c58ca5d7f42cef097fcb7208b76efabade357dcedacc9b5bfa9bdd1bda963bfe819fe1b8e258073448", - "receiptsRoot": "0x597464ba2631b6b477f8e9c5733fba8ab48fc47c981c56b27805bf32d0bb933a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000583186ce98384e410f892aa8ca683c021a4660fc51e6493f77352a9bfb4a5f7917c2b77eb16761879876569b460ce009bbc2d430f6086bfd04de1e8dfe89161a00000000000000000000006a91c5a9000000000000000000000000000a759f060000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000025000046e226f2ce8000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000a759f06", - "digest": "0x17c4ef027bf3d16b42388be12e2129ccafbbc01f044ebb6982a718ee5a0e28e4", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f06", - "digest": "0xd64c8a6ff85202a9c6ad8bbe637836515e44e0cd795e5ffa7a202060592771a4", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964602", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "381204", - "ptr": "67105041", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a9000000000000000000000000000a759f06", - "digest": "0xd64c8a6ff85202a9c6ad8bbe637836515e44e0cd795e5ffa7a202060592771a4", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67104813", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4948907", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "463936", - "ptr": "67103893", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "376932", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "61080", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "123", - "totalGas": "70712", - "transactionId": "0xa24706e07252bc95af5d26cb711a7a3ffbc9a326ad5d4706ac776db74010fae6" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xae3945528f8c893bc8a344cb3a5e6dab884f4cd6023d55c58ca5d7f42cef097fcb7208b76efabade357dcedacc9b5bfa9bdd1bda963bfe819fe1b8e258073448" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e64", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "169937", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00015", - "utxoId": "0x165bc6f455b5f70dccfa0029bcb1bcd82dfbd41427fe0efa91a5208f014619260000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd854f1f11d2a882c5e697aaa98080e8b11f58ff065dff88d721a1773bcf79520", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x0d54021275dbf555fb68e4bc4c9358cc0b758357a2dfd59ff997914a8310c307", - "txPointer": "03bd1aa50043", - "utxoId": "0x67b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa6a3b9a9f22402cac81a902948ff1391924d2779c2d58ec7cac0181f36e6ed89", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x6bd75dc605a1e9b59fe44b5e3c7ecb55eb7a7e1b45e505414781d0d7d381c9b9", - "txPointer": "03bd1aa50043", - "utxoId": "0x67b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50067", - "utxoId": "0xa24706e07252bc95af5d26cb711a7a3ffbc9a326ad5d4706ac776db74010fae60003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "169691", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd439655ba9b6ea48377a97829538c37e36654fcdeb9f99ea6e2e440fea4f24c2", - "inputIndex": "1", - "stateRoot": "0x9f49882a6a9cd2906490ef216daf1ad610efda90e752ada43f792a9c29ef2bc1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0484d4ea2e26bd7a5b0dc98dcce85b69c87d594b76ede586b390fa3e64ab4d35", - "inputIndex": "2", - "stateRoot": "0x6a5f1be143440cbd60efad3e991f4b5bb31f25bcc72af71601e4d202b7ad9b62" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848012d10def91207ac2f6f4ce2f064a80e53d546065b979d9e21e94919ff241191f0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000799ef7c72eac9b5db87249e3655c90614ff7c0cba154a9f6f2b3654b2996c4c30d413a62cdbf7560bd878d535ee351812568b0852448ad97873d5aeca042bcfc00000000000000000000006a91c5a900000000000000000000000000023a364f00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000270000000009d749e4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000165bc6f455b5f70dccfa0029bcb1bcd82dfbd41427fe0efa91a5208f014619260000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000297d1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000150000000000000000000000000000000000000000000000000000000000000000000000000000000167b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df0000000000000003d854f1f11d2a882c5e697aaa98080e8b11f58ff065dff88d721a1773bcf795200d54021275dbf555fb68e4bc4c9358cc0b758357a2dfd59ff997914a8310c3070000000003bd1aa500000000000000430a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7000000000000000167b9a66d389fa925d17cc817a91d5794caa098669d8637ca186a1c3afd7526df0000000000000002a6a3b9a9f22402cac81a902948ff1391924d2779c2d58ec7cac0181f36e6ed896bd75dc605a1e9b59fe44b5e3c7ecb55eb7a7e1b45e505414781d0d7d381c9b90000000003bd1aa50000000000000043ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001a24706e07252bc95af5d26cb711a7a3ffbc9a326ad5d4706ac776db74010fae60000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000296dbf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d439655ba9b6ea48377a97829538c37e36654fcdeb9f99ea6e2e440fea4f24c29f49882a6a9cd2906490ef216daf1ad610efda90e752ada43f792a9c29ef2bc1000000000000000100000000000000020484d4ea2e26bd7a5b0dc98dcce85b69c87d594b76ede586b390fa3e64ab4d356a5f1be143440cbd60efad3e991f4b5bb31f25bcc72af71601e4d202b7ad9b62000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000404b6318250b4ce283bc86040abd50ea4cf23a901f1a7dbb76ec51c4dedc0405ba4816de7ab6dd50f3237413f267db9264c1c938490d8b02438c73eb7e1fedb0c6", - "receiptsRoot": "0x12d10def91207ac2f6f4ce2f064a80e53d546065b979d9e21e94919ff241191f", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000799ef7c72eac9b5db87249e3655c90614ff7c0cba154a9f6f2b3654b2996c4c30d413a62cdbf7560bd878d535ee351812568b0852448ad97873d5aeca042bcfc00000000000000000000006a91c5a900000000000000000000000000023a364f00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000270000000009d749e4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a364f", - "digest": "0x182660327a6bb3a604f2e09c29d0135e99a234e7161afd6e59af513b29ba8618", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a364f", - "digest": "0xc2d16aca84f37ec2f85f5686816b7433fda22a3fff939ed121e74fd22b35c781", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "90178208379", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000270000000009d749e400000000000000000000000000000001000000006a91c531", - "digest": "0x7dbacb7fd66f54944346a420b03babd14c3e0dbaed1922b6d7792f0559d281fe", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100338", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099713", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a364f", - "digest": "0xc2d16aca84f37ec2f85f5686816b7433fda22a3fff939ed121e74fd22b35c781", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099485", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1876753", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099013", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131683", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "246", - "totalGas": "141315", - "transactionId": "0x5181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e64" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x4b6318250b4ce283bc86040abd50ea4cf23a901f1a7dbb76ec51c4dedc0405ba4816de7ab6dd50f3237413f267db9264c1c938490d8b02438c73eb7e1fedb0c6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x27ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c9", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "292934", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00016", - "utxoId": "0x042bd023dd891f123c9f60ab961e9b0a247328e5a0a14943c9ff674000d562390000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd439655ba9b6ea48377a97829538c37e36654fcdeb9f99ea6e2e440fea4f24c2", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x5024f75ce4c949b9073f4c1a1b9af7ba1787d718e7a00a55c7c648c529136ca5", - "txPointer": "03bd1aa50068", - "utxoId": "0x5181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e640001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50068", - "utxoId": "0x5181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e640003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0484d4ea2e26bd7a5b0dc98dcce85b69c87d594b76ede586b390fa3e64ab4d35", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x10acf333640955602f3889496e2b8090ddf77b4fde1ce28dbdddc74a16f45796", - "txPointer": "03bd1aa50068", - "utxoId": "0x5181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e640002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "292683", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a8508", - "inputIndex": "1", - "stateRoot": "0xbb7db8b46268c62b468067b7a86d0f4a9449d76d06fa02bc75a731b27803c912" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a88992444", - "inputIndex": "3", - "stateRoot": "0x2e641d4f47c4decd365a9fd92518824f13c5dd2952913e9729136dcba9079163" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480273efcc990809aa3f10b5f180fe9be08f7dd7ca8bf04c31e568498512ad6b92f0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000648e91c7c6c7685b1caa47aa5a5731e306ea64faf41dc74cb2e65dc4de21ddfcebc065fcf1a1408d22515cfb29a2a580e94cf1ff443c1fb95f1515e536afacdd00000000000000000000006a91c5a900000000000000000000000000023a365000000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000d0000000009d639a0000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000042bd023dd891f123c9f60ab961e9b0a247328e5a0a14943c9ff674000d562390000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047846f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000015181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e640000000000000001d439655ba9b6ea48377a97829538c37e36654fcdeb9f99ea6e2e440fea4f24c25024f75ce4c949b9073f4c1a1b9af7ba1787d718e7a00a55c7c648c529136ca50000000003bd1aa500000000000000680a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000015181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e640000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015181a2c9e3f53fe8d31eb512ca53b34460cd46751b12104c4f8fcb1ba8f83e6400000000000000020484d4ea2e26bd7a5b0dc98dcce85b69c87d594b76ede586b390fa3e64ab4d3510acf333640955602f3889496e2b8090ddf77b4fde1ce28dbdddc74a16f457960000000003bd1aa50000000000000068ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004774bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a8508bb7db8b46268c62b468067b7a86d0f4a9449d76d06fa02bc75a731b27803c912000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003ba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a889924442e641d4f47c4decd365a9fd92518824f13c5dd2952913e9729136dcba90791630000000000000040513fcdda126b75995c1588c5765a7bfc82243e80c6ed0619138ef64af6b97a56ef94b11c25890f52efe8025f3bb964fd28044219b5f7385014bcd77823fd2226", - "receiptsRoot": "0x273efcc990809aa3f10b5f180fe9be08f7dd7ca8bf04c31e568498512ad6b92f", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000648e91c7c6c7685b1caa47aa5a5731e306ea64faf41dc74cb2e65dc4de21ddfcebc065fcf1a1408d22515cfb29a2a580e94cf1ff443c1fb95f1515e536afacdd00000000000000000000006a91c5a900000000000000000000000000023a365000000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000d0000000009d639a0000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3650", - "digest": "0x70b3f017b688404af5ed2b520310b73edcd4f8242bd5b83148edd9bf35ec097f", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3650", - "digest": "0x9753b9d7132a1d2758b8eac3cd43a9f9e6e66c2519657c32f0e80ac5992000b3", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "972154937328", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000009d639a000000000000000000000000000000001000000006a91c531", - "digest": "0xdabc13967ac5cda4be71f74085e7f995da7e7345bb0c4e6c69169b3ab9cd5a41", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100066", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099441", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3650", - "digest": "0x9753b9d7132a1d2758b8eac3cd43a9f9e6e66c2519657c32f0e80ac5992000b3", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099213", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873791", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098741", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134645", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "251", - "totalGas": "144277", - "transactionId": "0x27ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c9" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x513fcdda126b75995c1588c5765a7bfc82243e80c6ed0619138ef64af6b97a56ef94b11c25890f52efe8025f3bb964fd28044219b5f7385014bcd77823fd2226" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b1447", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "278891", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00018", - "utxoId": "0x04bd54e661c571195e824ca78bdab659fbfca70bd8503b78c10f602afc9bea7c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a8508", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x5de892f478ac71c431e497b596a2f51ef0a98b84a30fe66bd59812208f225454", - "txPointer": "03bd1aa50069", - "utxoId": "0x27ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c90001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a88992444", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x7ee9b5268a86c0e24c4b23aab6437ccf26db36e09542e907751e69a656270ed6", - "txPointer": "03bd1aa50069", - "utxoId": "0x27ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c90003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50069", - "utxoId": "0x27ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c90002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "278634", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2d4a34fc5d7d3ee74beec966615c1fe422b70a19258c38ea00288439fa231460", - "inputIndex": "1", - "stateRoot": "0xfd1bc30802e15de3278fe7091aaedd57b4ef69d50d53ea470c9cddb0b98054d8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7eaa07b7fa09f2e99580b61b88a44bab986e653cc76c55b58805b0c7e1c0064f", - "inputIndex": "2", - "stateRoot": "0x55e655a43b5e9d2644bbd3314f79e3e57b3a31d1c9ae33616c1429fa158474b3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84803dd23da0acd98ccfcc694e4457d981c332533e7d51f1f7a21b7a583b4d9918a30000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006cba5700b2f592afc85f318bb9517faea86303ca8a4e0035b845f9ed10d83b7dc3fe971eb5f53d50896a91d37392b2ed2ed48e38ec130732f4190ca6c31e70f900000000000000000000006a91c5a900000000000000000000000000023a365200000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000040000000009ce4de4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aa9000000000000000004bd54e661c571195e824ca78bdab659fbfca70bd8503b78c10f602afc9bea7c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004416bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000127ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c900000000000000018e53b777ffe46669f06d30961c00304f7bb965a0350183985cbdb4c61e7a85085de892f478ac71c431e497b596a2f51ef0a98b84a30fe66bd59812208f2254540000000003bd1aa500000000000000690a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7000000000000000127ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c90000000000000003ba1cf8c1ccc5b66f900680843edf8fef697dd9b09fcc53d0b44cc29a889924447ee9b5268a86c0e24c4b23aab6437ccf26db36e09542e907751e69a656270ed60000000003bd1aa50000000000000069ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da000000000000000127ed0ee6489ab7b785c73d9fe523da6891a7f97d1935bfd54d790ec71124b6c90000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004406af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000012d4a34fc5d7d3ee74beec966615c1fe422b70a19258c38ea00288439fa231460fd1bc30802e15de3278fe7091aaedd57b4ef69d50d53ea470c9cddb0b98054d8000000000000000100000000000000027eaa07b7fa09f2e99580b61b88a44bab986e653cc76c55b58805b0c7e1c0064f55e655a43b5e9d2644bbd3314f79e3e57b3a31d1c9ae33616c1429fa158474b3000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000402dace430febd27ed78945dbc7f26f68b833bc45011398d2ed99fe8c166028e82d608358a3b59ff2b733c5afe1aeb948c24becdec626e66274a89d533dd9a3867", - "receiptsRoot": "0x3dd23da0acd98ccfcc694e4457d981c332533e7d51f1f7a21b7a583b4d9918a3", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006cba5700b2f592afc85f318bb9517faea86303ca8a4e0035b845f9ed10d83b7dc3fe971eb5f53d50896a91d37392b2ed2ed48e38ec130732f4190ca6c31e70f900000000000000000000006a91c5a900000000000000000000000000023a365200000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000040000000009ce4de4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3652", - "digest": "0x03e833f37ae9fc74ccdcf74b21983ef6047c063121d9bfed66152081c697bee1", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3652", - "digest": "0x5eb7b5cc7b7c0008bbefd5398fcc73efbf3d838c814a2de52279faca145807da", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "539963891895", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000040000000009ce4de400000000000000000000000000000001000000006a91c531", - "digest": "0x82ccc129e393cac8eb858fcd57ba5300983fd685e7d5be043cc8e4c544c771b6", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100346", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099721", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3652", - "digest": "0x5eb7b5cc7b7c0008bbefd5398fcc73efbf3d838c814a2de52279faca145807da", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099493", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1870326", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099021", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "138110", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "257", - "totalGas": "147742", - "transactionId": "0xe9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b1447" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x2dace430febd27ed78945dbc7f26f68b833bc45011398d2ed99fe8c166028e82d608358a3b59ff2b733c5afe1aeb948c24becdec626e66274a89d533dd9a3867" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153942", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00017", - "utxoId": "0x809d9d289ed35d063ce6a1b795513948855bbf460ea09f693ef62680116ca35d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5006a", - "utxoId": "0xe9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b14470003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2d4a34fc5d7d3ee74beec966615c1fe422b70a19258c38ea00288439fa231460", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x63be7428a623e18dd47d75be18ff3d2e2d262f4ce93e4e345adc4927875a91da", - "txPointer": "03bd1aa5006a", - "utxoId": "0xe9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b14470001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7eaa07b7fa09f2e99580b61b88a44bab986e653cc76c55b58805b0c7e1c0064f", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xa4ef9bc5da4bc4d76193be3b3516cdebdc7f31023ff0760735921212c1097377", - "txPointer": "03bd1aa5006a", - "utxoId": "0xe9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b14470002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153696", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7449c67777abf75509385c8e14440f2774f2d0024bcd14baf8fad8f39c12761e", - "inputIndex": "2", - "stateRoot": "0xebff8f3bc39d831221f95a21891d26e91ecb44f8a062036e9b790856b04d5206" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x089ee0c1738ecbecff05173855e5e55444482c615acba9331c37ec71c6c98789", - "inputIndex": "3", - "stateRoot": "0x552f768df15042822a3d6dc6393a8795425bef077598a24c9a9c3bccf3ac0da7" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809917e388fb617ebdf8ba6bbc4bb9b12a3b0208b6bcf3cfb9d556cacb27552c8d0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008766e4782722f470f5c6c2514c78d89251f685d29f7d00921df06f2e0649bbf4dc8cd286da90a048db6e9a96f73314e3e4d470682e8386428ca42918bf233cc500000000000000000000006a91c5a900000000000000000000000000023a365100000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000d0000000009d32cc4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000809d9d289ed35d063ce6a1b795513948855bbf460ea09f693ef62680116ca35d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025956f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001700000000000000000000000000000000000000000000000000000000000000000000000000000001e9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b14470000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b144700000000000000012d4a34fc5d7d3ee74beec966615c1fe422b70a19258c38ea00288439fa23146063be7428a623e18dd47d75be18ff3d2e2d262f4ce93e4e345adc4927875a91da0000000003bd1aa5000000000000006a0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000001e9f29926a71f95481cd0a24dbfb8ccedac7a91cfc44d23070f269a63289b144700000000000000027eaa07b7fa09f2e99580b61b88a44bab986e653cc76c55b58805b0c7e1c0064fa4ef9bc5da4bc4d76193be3b3516cdebdc7f31023ff0760735921212c10973770000000003bd1aa5000000000000006aed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025860f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000027449c67777abf75509385c8e14440f2774f2d0024bcd14baf8fad8f39c12761eebff8f3bc39d831221f95a21891d26e91ecb44f8a062036e9b790856b04d520600000000000000010000000000000003089ee0c1738ecbecff05173855e5e55444482c615acba9331c37ec71c6c98789552f768df15042822a3d6dc6393a8795425bef077598a24c9a9c3bccf3ac0da70000000000000040b106d7636d884a651eca2c3e4755d0d531b2e092bab292c39b9427837196e8ab5adf1b01fe00e7851d2ad38f008e614b9c64e0a1e3dc1843800bdaa273c41e10", - "receiptsRoot": "0x9917e388fb617ebdf8ba6bbc4bb9b12a3b0208b6bcf3cfb9d556cacb27552c8d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008766e4782722f470f5c6c2514c78d89251f685d29f7d00921df06f2e0649bbf4dc8cd286da90a048db6e9a96f73314e3e4d470682e8386428ca42918bf233cc500000000000000000000006a91c5a900000000000000000000000000023a365100000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000d0000000009d32cc4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3651", - "digest": "0x55632f2b7eac9caf52f29b7c07e62605b35ab44afc3901ba55c25c8487911c7b", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3651", - "digest": "0xab29306961b279c6637b96fba492d33b90fbde3c75d1a550c97dc55cd6ea65ef", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "732990999635", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000009d32cc400000000000000000000000000000001000000006a91c531", - "digest": "0x46547725bdf9280b800d8571bef0a6605a8a70c2a14ce0566a393226448fb28d", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100338", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099713", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3651", - "digest": "0xab29306961b279c6637b96fba492d33b90fbde3c75d1a550c97dc55cd6ea65ef", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099485", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1876752", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099013", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131684", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "246", - "totalGas": "141316", - "transactionId": "0x066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb106d7636d884a651eca2c3e4755d0d531b2e092bab292c39b9427837196e8ab5adf1b01fe00e7851d2ad38f008e614b9c64e0a1e3dc1843800bdaa273c41e10" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154711", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00019", - "utxoId": "0x5b68d75c6a79306e34384824a273e1c36360e10c4f1037129aa91874b41182ad0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2dc39cc1f733f481c56585e230f0165edc48128931735343fcd11d88b64e9c82", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xbd3e9dd790ca148608efd0d684f8e70ab80724c0cf7918e75b096b84a72ec71a", - "txPointer": "03bd1aa50059", - "utxoId": "0x80220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1c378fa17f12db07cfc6a7b847080472ff57ec9169f1dddd7483995f75dec700", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xe3aefabff93e20fe9f11b6fc4cf034581276887a9f3a887a8b65e7302cc2b7e2", - "txPointer": "03bd1aa50059", - "utxoId": "0x80220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5006b", - "utxoId": "0x066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed50001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154475", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xaa863dee112f77811e70cd5c7377a047a5f0fa30812e806b7c711feb6c2db838", - "inputIndex": "1", - "stateRoot": "0x27e305aeb53a49896768b9a2992ae5c8e683f551e3e66af12ffc313d657d689d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1f92a8de692e7d82b03f9227fecd4f9ccde607444f6d6d93fb3924929dbaf80e", - "inputIndex": "2", - "stateRoot": "0x58a8a025b61e2db57d08f70fd68c8b5784132beeaa8ccb8958eead5c7ba99903" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84800dd79d9b6d9bbe5df3a5db4e8b6c1f8073e5b82cd0f16d5ffa513e66f7955f410000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f1a802a317f7a5c3caf1850eae309a3edc0ec8999deb822c5a7de98883f64f9db437ec97eb8441eeb159798bed772b0ded48c9dc2e4059a283e0bc2578ff211200000000000000000000006a91c5a900000000000000000000000000024e03590000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006b00000002ac83988000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa900000000000000005b68d75c6a79306e34384824a273e1c36360e10c4f1037129aa91874b41182ad0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025c57f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000190000000000000000000000000000000000000000000000000000000000000000000000000000000180220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc00000000000000012dc39cc1f733f481c56585e230f0165edc48128931735343fcd11d88b64e9c82bd3e9dd790ca148608efd0d684f8e70ab80724c0cf7918e75b096b84a72ec71a0000000003bd1aa50000000000000059f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f000000000000000180220ba6baafd194271264eda789176d565288fcd64c3fb7c41b65d01fcb90dc00000000000000031c378fa17f12db07cfc6a7b847080472ff57ec9169f1dddd7483995f75dec700e3aefabff93e20fe9f11b6fc4cf034581276887a9f3a887a8b65e7302cc2b7e20000000003bd1aa50000000000000059c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed50000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025b6bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001aa863dee112f77811e70cd5c7377a047a5f0fa30812e806b7c711feb6c2db83827e305aeb53a49896768b9a2992ae5c8e683f551e3e66af12ffc313d657d689d000000000000000100000000000000021f92a8de692e7d82b03f9227fecd4f9ccde607444f6d6d93fb3924929dbaf80e58a8a025b61e2db57d08f70fd68c8b5784132beeaa8ccb8958eead5c7ba9990300000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f38a79e9c90a281cbe5a11de6ab81edd21411277edbf307ffb7b9b1f66ebf545317b57109aac10bfb50ff0e050b41dccac84473df5433b29a14a753c3794900a", - "receiptsRoot": "0x0dd79d9b6d9bbe5df3a5db4e8b6c1f8073e5b82cd0f16d5ffa513e66f7955f41", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f1a802a317f7a5c3caf1850eae309a3edc0ec8999deb822c5a7de98883f64f9db437ec97eb8441eeb159798bed772b0ded48c9dc2e4059a283e0bc2578ff211200000000000000000000006a91c5a900000000000000000000000000024e03590000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006b00000002ac83988000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0359", - "digest": "0xccadb342a5585911d7469c98e8b04889db3922d401ab8ac494e8091a3fb14ac3", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0359", - "digest": "0xbc17ad4e39269e41b2197b61d919459086bf108be50669b191ef6aeabb176678", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "239905773600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006b00000002ac83988000000000000000000000000000000001000000006a91c531", - "digest": "0xadd77f7a66981d16ada86cbd0e7a378db6e9179486bdf3645cecabbc918a5d3b", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100898", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100273", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0359", - "digest": "0xbc17ad4e39269e41b2197b61d919459086bf108be50669b191ef6aeabb176678", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100045", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882552", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099573", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125884", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135516", - "transactionId": "0x6559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf38a79e9c90a281cbe5a11de6ab81edd21411277edbf307ffb7b9b1f66ebf545317b57109aac10bfb50ff0e050b41dccac84473df5433b29a14a753c3794900a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x83c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c28", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168516", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0001c", - "utxoId": "0x4d2ddbc4d0b8addfef473bb4457894655069b07a83dd7aa6d6ed19e46255c3ac0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5006c", - "utxoId": "0x6559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdd25280c2055c4450f5cfb1d9b8704431be6929f03b623cd42bf6ff271bfb290", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x0c3082dcba0da308aae4eef808126add1b27ac5b79683f965f098de1e0ea09d9", - "txPointer": "03bd1aa5006c", - "utxoId": "0x6559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x05dcd6172155efd670011b77bdee97533b75e7b7ab3af29039c9037120698f51", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xa2654ea1247d53a8a968376f057883a46a55995ca4388de4ad090b50ff7c6b57", - "txPointer": "03bd1aa5006c", - "utxoId": "0x6559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "168285", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe5134eee9d43032fe613ae79b8e920f7dceb5969f8707f6cbba934bef8701562", - "inputIndex": "2", - "stateRoot": "0x0f6f677dae5f41ff21bf0c5df5220a31c37c1fe7415943b138fee1825d433224" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe61131e8707a1887ae94965258aa1007add3a25ef27b7fb3a79b4e62e0be7e3b", - "inputIndex": "3", - "stateRoot": "0x1a381beba0881b958c0911e0e0958190e43ee3f898a8a1ee9e3fb2b2b66feaff" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806f5567f4633a85651245fa3a8fccf7d3f233ed95822d560c564e9bdf54814f530000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000088b6538cca97c5e77919472d101c9bce15c6c4a7fc5770924d83f8b780c3c7399228a3a371e084011102c395618d23d223eaba2109202113070deafd0179ff8100000000000000000000006a91c5a900000000000000000000000000024e035c0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000d300000002ad17c23000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa900000000000000004d2ddbc4d0b8addfef473bb4457894655069b07a83dd7aa6d6ed19e46255c3ac0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029244f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000016559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d0000000000000001dd25280c2055c4450f5cfb1d9b8704431be6929f03b623cd42bf6ff271bfb2900c3082dcba0da308aae4eef808126add1b27ac5b79683f965f098de1e0ea09d90000000003bd1aa5000000000000006cf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000016559ecc71d0b64b388bf997427fc530b174e531616f832ae4d7a6f1eebb9d56d000000000000000205dcd6172155efd670011b77bdee97533b75e7b7ab3af29039c9037120698f51a2654ea1247d53a8a968376f057883a46a55995ca4388de4ad090b50ff7c6b570000000003bd1aa5000000000000006cc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002915df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e5134eee9d43032fe613ae79b8e920f7dceb5969f8707f6cbba934bef87015620f6f677dae5f41ff21bf0c5df5220a31c37c1fe7415943b138fee1825d43322400000000000000010000000000000003e61131e8707a1887ae94965258aa1007add3a25ef27b7fb3a79b4e62e0be7e3b1a381beba0881b958c0911e0e0958190e43ee3f898a8a1ee9e3fb2b2b66feaff00000000000000409fd24de5716e48cd1ffab1eecae0fa0bebe550c57ec44840264f9bc93c5efac2a74a805cff912f2b04ddd565a9613232bd24c6fbeb6c8114430fe6190a66ea20", - "receiptsRoot": "0x6f5567f4633a85651245fa3a8fccf7d3f233ed95822d560c564e9bdf54814f53", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000088b6538cca97c5e77919472d101c9bce15c6c4a7fc5770924d83f8b780c3c7399228a3a371e084011102c395618d23d223eaba2109202113070deafd0179ff8100000000000000000000006a91c5a900000000000000000000000000024e035c0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000d300000002ad17c23000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e035c", - "digest": "0x8a57e675512462f486731359394fb75727614e1755e884c785929ed0b7d13232", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035c", - "digest": "0x74f7b248f29ca4dcca5e4242385be6c1ea0fadab83afedb5da711c7d593051a7", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "9100000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000d300000002ad17c23000000000000000010000000000000001000000006a91c531", - "digest": "0x0470113c9434f88c0c1e9d1fd52c3c91a8d27ed874165bd1c85dea21cfedca76", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101074", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100449", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035c", - "digest": "0x74f7b248f29ca4dcca5e4242385be6c1ea0fadab83afedb5da711c7d593051a7", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100221", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1885335", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099749", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123101", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "231", - "totalGas": "132733", - "transactionId": "0x83c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c28" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9fd24de5716e48cd1ffab1eecae0fa0bebe550c57ec44840264f9bc93c5efac2a74a805cff912f2b04ddd565a9613232bd24c6fbeb6c8114430fe6190a66ea20" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d6", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1584841", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0001a", - "utxoId": "0xe4129fe7be74a6eff646066da031876c48977add89c6994d2dbdf2ecc85a68a00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe61131e8707a1887ae94965258aa1007add3a25ef27b7fb3a79b4e62e0be7e3b", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x824d55301a2275060637c7fd502504e398eb6881f5bbc25cf338d9351629792b", - "txPointer": "03bd1aa5006d", - "utxoId": "0x83c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c280003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5006d", - "utxoId": "0x83c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c280001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe5134eee9d43032fe613ae79b8e920f7dceb5969f8707f6cbba934bef8701562", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xcd6745e9acc1a553c783977da997d53371966b94a86d0bde9f366b20e9b09025", - "txPointer": "03bd1aa5006d", - "utxoId": "0x83c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c280002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1584605", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0cdaac1b57ae3f1d06358b82e13f4d739289617b05c878a833792ec8e7b006e1", - "inputIndex": "1", - "stateRoot": "0xa2e85f2fde1b8ca442779cbcaaef1b2468db2747783f6a8152964707e1c76141" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd071b95762a58f2a06230351f6c288786a23f8987e860c50381abed424fe8e44", - "inputIndex": "3", - "stateRoot": "0x04147927f3220633bd3044b08ce4fc78fea37277846fb631856944f6d30f3262" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802da73ed78d29b3af4db72c0d4573ee5a1489e1ff22c2b0430c06e186f012c0740000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006add2d98aa6e55f81b9f720ec9825a3283bcf83418d84651795e900a251f44048bbcf0634cecda6c89c7ee377124bfc11bb20f798594a13bb827a1d5ccbafdbc00000000000000000000006a91c5a900000000000000000000000000024e035a0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003000000002ad1d196000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e4129fe7be74a6eff646066da031876c48977add89c6994d2dbdf2ecc85a68a00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000182ec9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001a0000000000000000000000000000000000000000000000000000000000000000000000000000000183c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c280000000000000003e61131e8707a1887ae94965258aa1007add3a25ef27b7fb3a79b4e62e0be7e3b824d55301a2275060637c7fd502504e398eb6881f5bbc25cf338d9351629792b0000000003bd1aa5000000000000006dc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000183c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c280000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000183c16514f58c6871083eab9f4b9279ea38e5e3223c419b2913d3a2dfa4096c280000000000000002e5134eee9d43032fe613ae79b8e920f7dceb5969f8707f6cbba934bef8701562cd6745e9acc1a553c783977da997d53371966b94a86d0bde9f366b20e9b090250000000003bd1aa5000000000000006df356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000182dddf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010cdaac1b57ae3f1d06358b82e13f4d739289617b05c878a833792ec8e7b006e1a2e85f2fde1b8ca442779cbcaaef1b2468db2747783f6a8152964707e1c76141000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003d071b95762a58f2a06230351f6c288786a23f8987e860c50381abed424fe8e4404147927f3220633bd3044b08ce4fc78fea37277846fb631856944f6d30f32620000000000000040ec142ebf9a4a552e8e18233d8ff08cc2212eb304a81f0312150c11eb58903465720e2cfad5fc015b5fe0617fe11dd37f04108b94712c64bd6d32a5848b87dac8", - "receiptsRoot": "0x2da73ed78d29b3af4db72c0d4573ee5a1489e1ff22c2b0430c06e186f012c074", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006add2d98aa6e55f81b9f720ec9825a3283bcf83418d84651795e900a251f44048bbcf0634cecda6c89c7ee377124bfc11bb20f798594a13bb827a1d5ccbafdbc00000000000000000000006a91c5a900000000000000000000000000024e035a0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003000000002ad1d196000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e035a", - "digest": "0x10b0b12d47779105f75173e11820ced9e1d7c90ecc3173c8f00585f3f29aced1", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035a", - "digest": "0xd7d99ab52b7c27f4418b2ed089c0d9a5275f5d651297f6e262771021d3db1e77", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "5880000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003000000002ad1d196000000000000000010000000000000001000000006a91c531", - "digest": "0xb4affebb5ce17d06d370c917de709a3068d635d60de222968e07b8a35af7f641", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100802", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100177", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035a", - "digest": "0xd7d99ab52b7c27f4418b2ed089c0d9a5275f5d651297f6e262771021d3db1e77", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099949", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882390", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099477", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126046", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135678", - "transactionId": "0xa82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d6" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xec142ebf9a4a552e8e18233d8ff08cc2212eb304a81f0312150c11eb58903465720e2cfad5fc015b5fe0617fe11dd37f04108b94712c64bd6d32a5848b87dac8" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x11f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153043", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0001b", - "utxoId": "0x09dad538c50fa04ee868714fa59b29c28f71bc997525012f65259d1c0bca9d570000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd071b95762a58f2a06230351f6c288786a23f8987e860c50381abed424fe8e44", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xb2c7310bb481b08c4773916f05d1242a429726069b09423a3d245121060d3484", - "txPointer": "03bd1aa5006e", - "utxoId": "0xa82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d60003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0cdaac1b57ae3f1d06358b82e13f4d739289617b05c878a833792ec8e7b006e1", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x071b4fcc24a86dc06e764e486074f582f4f7b7af536a3a5b018fad4cd5fe17a5", - "txPointer": "03bd1aa5006e", - "utxoId": "0xa82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d60001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5006e", - "utxoId": "0xa82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d60002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "152813", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x54f259d79fc6b114592bfcffa4560ad4777ce13b2ed898dd419707700808db66", - "inputIndex": "1", - "stateRoot": "0x8b1fe4f1a2eb05ebbc735a6b47df7b60066dbd433bcd5ff002c3dc62e5625fe0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5693270ee1b3b0761fb4dbfba2efbd6451eba8b886d1942381c82bd4388b7492", - "inputIndex": "2", - "stateRoot": "0x8400b53b9282d2bd67f63f9486bdd48420e41f4d6106610f97cd2e33050b6e36" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848009f579d7db69792d997a58255c0c4eff66f32f1976d1537ee2ffb8eac21d54300000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006d47d749e8c93955274fc725d27abdda28a54bf746ba0c894408eceb738bd3c758a5ccaa25f26e661d82c854c0a407a4a37e72a961d232eb8e29c7ce57429d9800000000000000000000006a91c5a900000000000000000000000000024e035b0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d00000002ad1ddcb000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa9000000000000000009dad538c50fa04ee868714fa59b29c28f71bc997525012f65259d1c0bca9d570000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000255d3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001b00000000000000000000000000000000000000000000000000000000000000000000000000000001a82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d60000000000000003d071b95762a58f2a06230351f6c288786a23f8987e860c50381abed424fe8e44b2c7310bb481b08c4773916f05d1242a429726069b09423a3d245121060d34840000000003bd1aa5000000000000006ef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001a82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d600000000000000010cdaac1b57ae3f1d06358b82e13f4d739289617b05c878a833792ec8e7b006e1071b4fcc24a86dc06e764e486074f582f4f7b7af536a3a5b018fad4cd5fe17a50000000003bd1aa5000000000000006ec46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001a82cd588a1f8833aef3cdb728526c8cb8adcbf919384004c55926f3195ddf2d60000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000254edf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000154f259d79fc6b114592bfcffa4560ad4777ce13b2ed898dd419707700808db668b1fe4f1a2eb05ebbc735a6b47df7b60066dbd433bcd5ff002c3dc62e5625fe0000000000000000100000000000000025693270ee1b3b0761fb4dbfba2efbd6451eba8b886d1942381c82bd4388b74928400b53b9282d2bd67f63f9486bdd48420e41f4d6106610f97cd2e33050b6e36000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406d5326d8d383a90ae29ad813a1367cae881e6eed49feba1a4903451d98ed8d6670bda733a94b96d97b064c82c90f14cc5ed1207854cddf80b53a45b6f3debf9c", - "receiptsRoot": "0x09f579d7db69792d997a58255c0c4eff66f32f1976d1537ee2ffb8eac21d5430", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006d47d749e8c93955274fc725d27abdda28a54bf746ba0c894408eceb738bd3c758a5ccaa25f26e661d82c854c0a407a4a37e72a961d232eb8e29c7ce57429d9800000000000000000000006a91c5a900000000000000000000000000024e035b0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d00000002ad1ddcb000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e035b", - "digest": "0xafe3f49bfd6d12f041ed968f17bd38aaf6c9d79b273b22d13a895bdf7718d7da", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035b", - "digest": "0x5cdc4b0c8cbc181b25bdcea17bd2ffcc507c20cea52d14a7c09eb6a54c5aea78", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "20850000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d00000002ad1ddcb000000000000000010000000000000001000000006a91c531", - "digest": "0x88661153b234c10dc24c84bef6e1ef3d1f8a1db394cf6e4ee6ba7d585cde1f3a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101106", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100481", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035b", - "digest": "0x5cdc4b0c8cbc181b25bdcea17bd2ffcc507c20cea52d14a7c09eb6a54c5aea78", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100253", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886067", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099781", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "122369", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "230", - "totalGas": "132001", - "transactionId": "0x11f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6d5326d8d383a90ae29ad813a1367cae881e6eed49feba1a4903451d98ed8d6670bda733a94b96d97b064c82c90f14cc5ed1207854cddf80b53a45b6f3debf9c" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xf75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab734", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "289244", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0001e", - "utxoId": "0xaf5c05de1e6df978f6ad232c7c855b81677cb14bf08dfe4025de25f02c297a650000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5006f", - "utxoId": "0x11f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x01e0bf14a2bab4fe7405f53d8ec524b2e42b80a0b3361786c3c84bb33bfe4601", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x907dec67ab71db684f14cfadd6b900a56d305f7988e1fec410038263341d0765", - "txPointer": "03bd1aa5006b", - "utxoId": "0x066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc89b69456413ce6921a6db39df3891a5bd3e80ec7a3ccaa6e55c8320ee1ee8b5", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x3bc0d2bc5b9fdf65cc3d7914aee5a7725d72bf6008a893004a50a0df1fb74087", - "txPointer": "03bd1aa5006b", - "utxoId": "0x066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed50002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "289006", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7d0e3f31b16d8d2c05d187d719ab3980fe71d101b130d852a838a6dccbae43fd", - "inputIndex": "2", - "stateRoot": "0x3bf9291bd43c0795f7fb88736883caeaed668b3d0ef32d5e66f37462d1f620e4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7fa2a9f231f3514b7ab037d0c160b107e190e50607a99b9ed76436841b7d412a", - "inputIndex": "3", - "stateRoot": "0xc0faa7a4086705f46b1d772b325aebba8ec0a064eea9b9f1e7bb5a9bc04d8deb" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809d6d9031bf2cd4360b22dea3005fe1a62b838c70bff243c9eaa9994f728e164700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cf210478ca8a1bccf4aacd0fa53288d173b36f97e45fd8417ab251c0b6ca942a232339573d4dacad4cca2237bc1d7292acc93e1799e82e8e05bdd8e1d015a62b00000000000000000000006a91c5a900000000000000000000000000023a365300000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000005bd09b7d380dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009dacc54000005bd09b7d380000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000af5c05de1e6df978f6ad232c7c855b81677cb14bf08dfe4025de25f02c297a650000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000469dcf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001e0000000000000000000000000000000000000000000000000000000000000000000000000000000111f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e40000000000000003b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000006f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed5000000000000000301e0bf14a2bab4fe7405f53d8ec524b2e42b80a0b3361786c3c84bb33bfe4601907dec67ab71db684f14cfadd6b900a56d305f7988e1fec410038263341d07650000000003bd1aa5000000000000006bed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001066d254935b227ad118bc75462511fd3716be1592214aa9c7d2c3393e31b7ed50000000000000002c89b69456413ce6921a6db39df3891a5bd3e80ec7a3ccaa6e55c8320ee1ee8b53bc0d2bc5b9fdf65cc3d7914aee5a7725d72bf6008a893004a50a0df1fb740870000000003bd1aa5000000000000006b0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000468eef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000027d0e3f31b16d8d2c05d187d719ab3980fe71d101b130d852a838a6dccbae43fd3bf9291bd43c0795f7fb88736883caeaed668b3d0ef32d5e66f37462d1f620e4000000000000000100000000000000037fa2a9f231f3514b7ab037d0c160b107e190e50607a99b9ed76436841b7d412ac0faa7a4086705f46b1d772b325aebba8ec0a064eea9b9f1e7bb5a9bc04d8deb0000000000000040bfff3430363cb48233374cd149b804c18ec7ce7da6571c9fe338e7d65e0e6a3ca9ab5341cc1994d75e5111e314c5d8b4de0a40b7c7af263b6e11fa7322892498", - "receiptsRoot": "0x9d6d9031bf2cd4360b22dea3005fe1a62b838c70bff243c9eaa9994f728e1647", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cf210478ca8a1bccf4aacd0fa53288d173b36f97e45fd8417ab251c0b6ca942a232339573d4dacad4cca2237bc1d7292acc93e1799e82e8e05bdd8e1d015a62b00000000000000000000006a91c5a900000000000000000000000000023a365300000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000005bd09b7d380dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009dacc54000005bd09b7d3800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3653", - "digest": "0x7ad4b9511efa593a38ed7b83312fbb758efa3d00129ccb20436fb815f2bf4cdb", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3653", - "digest": "0xf65d0da7bf7abc661bd61487be5e1629c17b15d2aafdf2603b75007ce6c8f7a4", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3653", - "digest": "0xf65d0da7bf7abc661bd61487be5e1629c17b15d2aafdf2603b75007ce6c8f7a4", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "6309470000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000009dacc54000000000000000100000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000010000000000000001000005bd09b7d3800000000009dacc54000000006a91c531", - "digest": "0x20630cf0888064bc6f4954dbd7c6ff818741825df219204a3208dc3a71d05bc0", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d0000000009dacc5400000000000000010000000000000001", - "digest": "0x39739ed1a3a40a257eb7e066b94f95b81b3019e1e6f3264920d171cd89d60fb7", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100022", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126804", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136425", - "transactionId": "0xf75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab734" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xbfff3430363cb48233374cd149b804c18ec7ce7da6571c9fe338e7d65e0e6a3ca9ab5341cc1994d75e5111e314c5d8b4de0a40b7c7af263b6e11fa7322892498" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b013", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "159318", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0001d", - "utxoId": "0x82685fddf62a5657b57b3668fa1fd1cc14f92dd40e4929ab49e0f3e81c3ce8200000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x54f259d79fc6b114592bfcffa4560ad4777ce13b2ed898dd419707700808db66", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x2115c797e1ab2eb24914afde9c243a8664fdf6bdae5f0d6ceecb89647f9dd373", - "txPointer": "03bd1aa5006f", - "utxoId": "0x11f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50070", - "utxoId": "0xf75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab7340001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5693270ee1b3b0761fb4dbfba2efbd6451eba8b886d1942381c82bd4388b7492", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x8ed1ac1bb2f06e9095846b165b6775243fc5f02654cf5f79d86d51f78fa2fdbb", - "txPointer": "03bd1aa5006f", - "utxoId": "0x11f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e40002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "159085", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc88c48369ec0a4e5d58ab924f16bae94d3dc4279ae242d9d7aec5c30b8767546", - "inputIndex": "1", - "stateRoot": "0x6301a7850fae4a55d0fbd75c8fcc934d7aa5e1a8d43d9c80fe9401577a63a276" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x68bce59509cbcf70b75ea475c698afc8eef4e95899c65bc058d7d8577acbf45a", - "inputIndex": "3", - "stateRoot": "0x4b1d4cefea098fa503fc4452a21581d9955599e4b251dd47e4fef20ecbe3b9cf" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848018199949c832e0fe3f6251db8b87e272737e11f5f390a9e390fafd7315cb956c0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007d62181cea2dc34b710f69e2b86d7aee2ca63229156a257478b33ccd236ddec5979e759d0462ed99fde88385926fce4b9e46e076b41ea3a174e32ed1bf04b5db00000000000000000000006a91c5a900000000000000000000000000024e035d0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006300000002ad51bdf000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa9000000000000000082685fddf62a5657b57b3668fa1fd1cc14f92dd40e4929ab49e0f3e81c3ce8200000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026e56f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001d0000000000000000000000000000000000000000000000000000000000000000000000000000000111f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e4000000000000000154f259d79fc6b114592bfcffa4560ad4777ce13b2ed898dd419707700808db662115c797e1ab2eb24914afde9c243a8664fdf6bdae5f0d6ceecb89647f9dd3730000000003bd1aa5000000000000006ff356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001f75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab7340000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000111f7120bb24b207681689e30fe4804677ecea9ba741ddcacf1a7b42c1e57f4e400000000000000025693270ee1b3b0761fb4dbfba2efbd6451eba8b886d1942381c82bd4388b74928ed1ac1bb2f06e9095846b165b6775243fc5f02654cf5f79d86d51f78fa2fdbb0000000003bd1aa5000000000000006fc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026d6df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001c88c48369ec0a4e5d58ab924f16bae94d3dc4279ae242d9d7aec5c30b87675466301a7850fae4a55d0fbd75c8fcc934d7aa5e1a8d43d9c80fe9401577a63a27600000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000368bce59509cbcf70b75ea475c698afc8eef4e95899c65bc058d7d8577acbf45a4b1d4cefea098fa503fc4452a21581d9955599e4b251dd47e4fef20ecbe3b9cf00000000000000405a6a45489a637a974fdb095630f64d63c94424c4bb283638c67252c6097025edbdd7867379a477dfe359413693ec4ab768eafbdff929a536c02a2661f3030038", - "receiptsRoot": "0x18199949c832e0fe3f6251db8b87e272737e11f5f390a9e390fafd7315cb956c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007d62181cea2dc34b710f69e2b86d7aee2ca63229156a257478b33ccd236ddec5979e759d0462ed99fde88385926fce4b9e46e076b41ea3a174e32ed1bf04b5db00000000000000000000006a91c5a900000000000000000000000000024e035d0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006300000002ad51bdf000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e035d", - "digest": "0x583b10dfb001a0f5991a744a50bc4a372c9d71f84178486dc7f1d7300722505d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035d", - "digest": "0xf1b428130fc9a0d8c9b29388c15ebb7a12cb02503b3743345d818e5b7548a5a8", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "18280000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006300000002ad51bdf000000000000000010000000000000001000000006a91c531", - "digest": "0xaf57b0ee13cf8f8dfa98d858a85be47a7ba10cd14ca5fa67343d866fb16c71d0", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101058", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100433", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035d", - "digest": "0xf1b428130fc9a0d8c9b29388c15ebb7a12cb02503b3743345d818e5b7548a5a8", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100205", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884467", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099733", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123969", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "233", - "totalGas": "133601", - "transactionId": "0xd12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b013" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5a6a45489a637a974fdb095630f64d63c94424c4bb283638c67252c6097025edbdd7867379a477dfe359413693ec4ab768eafbdff929a536c02a2661f3030038" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x53b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a182", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "560590", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00021", - "utxoId": "0x837a320168ee44f894e08a51ae18b450e6dfd11805a2ec1373772a5435702a320000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaa863dee112f77811e70cd5c7377a047a5f0fa30812e806b7c711feb6c2db838", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x906615d1dfdf05604393330a6d86a5a097871f1b6950242842153928110f4367", - "txPointer": "03bd1aa50071", - "utxoId": "0xd12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b0130001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1f92a8de692e7d82b03f9227fecd4f9ccde607444f6d6d93fb3924929dbaf80e", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x069cd34989a9c1d20825b24dd76368850172e2365910f1663e8caba444e54ecd", - "txPointer": "03bd1aa50071", - "utxoId": "0xd12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b0130003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50071", - "utxoId": "0xd12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b0130002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "560349", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe5d99286f78661e01ca51045ad7194b3b7e540f59ca1eafec828e84e77a8b87e", - "inputIndex": "1", - "stateRoot": "0xe3ca5afe889e38a5bed6bd686d47396d7a81e7e1973281facdf4c456f6df013a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x12259dff268ffb19b4bab48bd111343101ad48862321ada90d95e6fe21afc6d6", - "inputIndex": "2", - "stateRoot": "0xf28ee6da6d13b9490ea43ca8ac1e7329f98c58c035205feb7aaf0e2928461ba6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b7adfbc1bcf551a3f414aeb8095463f746c62629e0fcc834ef2ac01da6a18c7d00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ee20d2a38dcc1937d8e25a6c6e52e14a354337977616331ddee3f9371af2ccff60cf9fb19ff9d0c94e9d2b46afd78dc20c587a8a81e7598840bd3976d5c817ab00000000000000000000006a91c5a900000000000000000000000000024e035f0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000001f9c3b30d86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac9f36d000000002c086e300000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000837a320168ee44f894e08a51ae18b450e6dfd11805a2ec1373772a5435702a320000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000088dcef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002100000000000000000000000000000000000000000000000000000000000000000000000000000001d12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b0130000000000000001aa863dee112f77811e70cd5c7377a047a5f0fa30812e806b7c711feb6c2db838906615d1dfdf05604393330a6d86a5a097871f1b6950242842153928110f43670000000003bd1aa50000000000000071f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001d12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b01300000000000000031f92a8de692e7d82b03f9227fecd4f9ccde607444f6d6d93fb3924929dbaf80e069cd34989a9c1d20825b24dd76368850172e2365910f1663e8caba444e54ecd0000000003bd1aa50000000000000071c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001d12002b4b4f09e9a34b37c7e2e84db20c227acc2709dac355a38ce161f45b013000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000088cddf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001e5d99286f78661e01ca51045ad7194b3b7e540f59ca1eafec828e84e77a8b87ee3ca5afe889e38a5bed6bd686d47396d7a81e7e1973281facdf4c456f6df013a0000000000000001000000000000000212259dff268ffb19b4bab48bd111343101ad48862321ada90d95e6fe21afc6d6f28ee6da6d13b9490ea43ca8ac1e7329f98c58c035205feb7aaf0e2928461ba60000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004014d95c852e79287770c16348e95f445119fdfaf135bddf7af10394b1184c9c411bb47f840f01e459e9ba1b05ca36249405fda58907ca6147302a04bc5295b6e7", - "receiptsRoot": "0xb7adfbc1bcf551a3f414aeb8095463f746c62629e0fcc834ef2ac01da6a18c7d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ee20d2a38dcc1937d8e25a6c6e52e14a354337977616331ddee3f9371af2ccff60cf9fb19ff9d0c94e9d2b46afd78dc20c587a8a81e7598840bd3976d5c817ab00000000000000000000006a91c5a900000000000000000000000000024e035f0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000001f9c3b30d86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac9f36d000000002c086e3000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e035f", - "digest": "0x6b802630b0fcac64f2ebfc7331254be96b79b4032119656b64c9dd42c6febdef", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035f", - "digest": "0x60986b3bac879eb6770e3b23e8dbb35fe3869c324587f6d2fd6d453a3b5c3464", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035f", - "digest": "0x60986b3bac879eb6770e3b23e8dbb35fe3869c324587f6d2fd6d453a3b5c3464", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "135765111000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000a900000002ac9f36d0000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000000000000000000000100000002c086e30000000002ac9f36d0000000006a91c531", - "digest": "0x709a8085fef18fd5873c56386a864a698292982d98389758b75c3767718de294", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000a900000002ac9f36d000000000000000000000000000000001", - "digest": "0x0ac17d8aa199c704066e612045b2719649df79bc6738608865ef909c8f9053c1", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128427", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138048", - "transactionId": "0x53b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a182" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x14d95c852e79287770c16348e95f445119fdfaf135bddf7af10394b1184c9c411bb47f840f01e459e9ba1b05ca36249405fda58907ca6147302a04bc5295b6e7" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f1", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151879", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0001f", - "utxoId": "0xde5fc0f9bde05cd02078e0f8a6b498f9a83529104b426096aa05b8b962f6ac180000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc3b60dd7bfc484e8744cda4f908331a6472995bdd91ce9b81882d1692ca27560", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50072", - "utxoId": "0x53b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a1820003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2ed3e4b8e59614be40bdfc791038f7e73fb99fb69de9aa02609b2f535b1e6034", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0x31b3d92d8fbbef771bff1ec9ddacf89e2adc7c9ce56b11d5345c5c9c2298c92d", - "txPointer": "03bd1aa50051", - "utxoId": "0x497b9619a93201634303959c0af1d3cba1052e3013ce42183d195c49c02151fb0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x82f5a5d5bf43f1f3c5ca33e715dca50603dc0f9b2246d464c27741557aa0c1e3", - "contractId": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "stateRoot": "0x5c748cfa8b173535b4fce958393435c219f2500ca4faf4ef988507d24fc63067", - "txPointer": "03bd1aa3003f", - "utxoId": "0xa90b6a76100852639d20f07577c0ec424f14d3fee6e70e3aab26a1df39a5238d0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151638", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2ed3e4b8e59614be40bdfc791038f7e73fb99fb69de9aa02609b2f535b1e6034", - "inputIndex": "2", - "stateRoot": "0xec3d37e8ca598b22ef9e2b8b3681bef694e7d741c8b0907b2ab9c45cb2162f34" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x82f5a5d5bf43f1f3c5ca33e715dca50603dc0f9b2246d464c27741557aa0c1e3", - "inputIndex": "3", - "stateRoot": "0x5cd04b7a8fffb70474a8cef6a85fc1c47acceed507828029b95c1caf119c903c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480eb7f5edd4582b0deb5496ff783b06f0f06db2297090b384f878e88ab4a5ec14800000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f200000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e54dd022f520acf9f33fb90b64c8f139fe22975f370e87ffbba7f6fcdaf3a8cfe8c72e08daafa4491c3eb4727fefcfc9beb59005e190dc9d3dba9e9d7f5cb98000000000000000000000006a91c5a90000000000000000000000000000054c500000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000014dc9380fdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0ffffffffffffffff0000000000000001000000000000001800000000d072bb600000000014dc9380000000000000000300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000de5fc0f9bde05cd02078e0f8a6b498f9a83529104b426096aa05b8b962f6ac180000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025147f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000001f0000000000000000000000000000000000000000000000000000000000000000000000000000000153b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a1820000000000000003c3b60dd7bfc484e8744cda4f908331a6472995bdd91ce9b81882d1692ca2756000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001497b9619a93201634303959c0af1d3cba1052e3013ce42183d195c49c02151fb00000000000000022ed3e4b8e59614be40bdfc791038f7e73fb99fb69de9aa02609b2f535b1e603431b3d92d8fbbef771bff1ec9ddacf89e2adc7c9ce56b11d5345c5c9c2298c92d0000000003bd1aa50000000000000051973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000001a90b6a76100852639d20f07577c0ec424f14d3fee6e70e3aab26a1df39a5238d000000000000000182f5a5d5bf43f1f3c5ca33e715dca50603dc0f9b2246d464c27741557aa0c1e35c748cfa8b173535b4fce958393435c219f2500ca4faf4ef988507d24fc630670000000003bd1aa3000000000000003f168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f20000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025056f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000022ed3e4b8e59614be40bdfc791038f7e73fb99fb69de9aa02609b2f535b1e6034ec3d37e8ca598b22ef9e2b8b3681bef694e7d741c8b0907b2ab9c45cb2162f340000000000000001000000000000000382f5a5d5bf43f1f3c5ca33e715dca50603dc0f9b2246d464c27741557aa0c1e35cd04b7a8fffb70474a8cef6a85fc1c47acceed507828029b95c1caf119c903c00000000000000409b384215e89a3137e99f567ef3fcf8710bd898bc7d9b6f45d7240d5ca04959dff64bf73c32786222b8c7c1b1ae927babd3ecda3475ab6ba9de51a973110bc73d", - "receiptsRoot": "0xeb7f5edd4582b0deb5496ff783b06f0f06db2297090b384f878e88ab4a5ec148", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f200000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e54dd022f520acf9f33fb90b64c8f139fe22975f370e87ffbba7f6fcdaf3a8cfe8c72e08daafa4491c3eb4727fefcfc9beb59005e190dc9d3dba9e9d7f5cb98000000000000000000000006a91c5a90000000000000000000000000000054c500000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000014dc9380fdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0ffffffffffffffff0000000000000001000000000000001800000000d072bb600000000014dc93800000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000000054c50", - "digest": "0x249a6505c153ee7dada5885b5c233e0192bf5d01cbfab35df067f21f56b6fbcd", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000daba93b9a95537bea9c33dbba499bc06ff1eab04d474be35d5dc680b5b3d89f5973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a90000000000000000000000000000054c50", - "digest": "0x690dd2bd7d83c0e77149b735650892b97b20430bfccd1a9c8dd53b6b3f6473cd", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": "350000000", - "assetId": "0xfdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f20000000014dc93800000000000000000", - "digest": "0x0c815a8edd0542bad7f0aad08922aceae4c41ddc0a6cefd76637a5b40a99699f", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000daba93b9a95537bea9c33dbba499bc06ff1eab04d474be35d5dc680b5b3d89f5973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a90000000000000000000000000000054c50", - "digest": "0x690dd2bd7d83c0e77149b735650892b97b20430bfccd1a9c8dd53b6b3f6473cd", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "350000000", - "assetId": "0xfdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000200000000d072bb60000000000000000100000000000000030000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2000000000000000100000000000000030000000014dc938000000000d072bb60000000006a91c531", - "digest": "0x9c593e8426fcd89869333b1c59500751d45cc0d66af0841bba5f634710de395a", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000200000000d072bb6000000000000000010000000000000003", - "digest": "0x9cfd8aee68250eb11dcc64007315d81d856df8c2067e7fc32cf3e2d5e9913c67", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099990", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128600", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138221", - "transactionId": "0xea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f1" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9b384215e89a3137e99f567ef3fcf8710bd898bc7d9b6f45d7240d5ca04959dff64bf73c32786222b8c7c1b1ae927babd3ecda3475ab6ba9de51a973110bc73d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b83", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154901", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00020", - "utxoId": "0xa833c841b82b6a2c912676c232892546a3a8360aeb21747bca446bbda30823420000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe5d99286f78661e01ca51045ad7194b3b7e540f59ca1eafec828e84e77a8b87e", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x5ec33f3342c1e69d910e386cb737c0f47a9c38858d3226858b39a20331b77099", - "txPointer": "03bd1aa50072", - "utxoId": "0x53b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a1820001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50073", - "utxoId": "0xea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f10001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x12259dff268ffb19b4bab48bd111343101ad48862321ada90d95e6fe21afc6d6", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x67abd782c99fbfb5021dd81b923f69eb7fdd695680093ab6fcc35038394cb670", - "txPointer": "03bd1aa50072", - "utxoId": "0x53b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a1820002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154663", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6b7a2fc34a535fe892ef519e875b27fac3dfad4653bb40b0891739336153f4f8", - "inputIndex": "1", - "stateRoot": "0xc01d318ccde92ac026597b6610927f8e1d2cef36bad4701e668dbc5704607b7d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x07921da5b8f038ef5edadb37e166502aa618d6a0fa3b9ea8d90eadf135c48288", - "inputIndex": "3", - "stateRoot": "0xbee87adda7d4f26fd530576d900d419e041d3ed71b364c023cdfa6d14afe4bd7" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808d7cfecb478d2b1a7f6408dea476d83b33385d4eedbc459465512d5393d9aacc00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e3371f50df6ed3c6a9eafcf95bc6aef8cd21742732e6121ff54c74c604ef1005cbe15b616486b00206aa845a7deda9d71f4c2d9df5294209aad2f31c0fabfa4b00000000000000000000006a91c5a900000000000000000000000000024e035e0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000020767a64306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac8daaa000000002d399b300000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000a833c841b82b6a2c912676c232892546a3a8360aeb21747bca446bbda30823420000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025d15f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000153b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a1820000000000000001e5d99286f78661e01ca51045ad7194b3b7e540f59ca1eafec828e84e77a8b87e5ec33f3342c1e69d910e386cb737c0f47a9c38858d3226858b39a20331b770990000000003bd1aa50000000000000072f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001ea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f1000000000000000102cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000153b9a091243c14a6d032327e701ab3abdb429500ce462750fe0793bccc17a182000000000000000212259dff268ffb19b4bab48bd111343101ad48862321ada90d95e6fe21afc6d667abd782c99fbfb5021dd81b923f69eb7fdd695680093ab6fcc35038394cb6700000000003bd1aa50000000000000072c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025c27f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016b7a2fc34a535fe892ef519e875b27fac3dfad4653bb40b0891739336153f4f8c01d318ccde92ac026597b6610927f8e1d2cef36bad4701e668dbc5704607b7d00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000307921da5b8f038ef5edadb37e166502aa618d6a0fa3b9ea8d90eadf135c48288bee87adda7d4f26fd530576d900d419e041d3ed71b364c023cdfa6d14afe4bd7000000000000004002f85c55d54387cde46faf09e89d92579005bed38a330e40435fd5da4f9e4cf9aa1e1ff018ba75ea0b133aaf339616a37e980b019610860ff1a152a7496bf721", - "receiptsRoot": "0x8d7cfecb478d2b1a7f6408dea476d83b33385d4eedbc459465512d5393d9aacc", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e3371f50df6ed3c6a9eafcf95bc6aef8cd21742732e6121ff54c74c604ef1005cbe15b616486b00206aa845a7deda9d71f4c2d9df5294209aad2f31c0fabfa4b00000000000000000000006a91c5a900000000000000000000000000024e035e0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f7264657200000020767a64306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac8daaa000000002d399b3000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e035e", - "digest": "0x00c206f2cfad7c2c14f941b1803d22019ae6461aafe9c6d3369a78fc8802f1ad", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035e", - "digest": "0xe425004211290c7d69f291f740a8168b452653c561851b0065e5f6d96c7a2dc4", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e035e", - "digest": "0xe425004211290c7d69f291f740a8168b452653c561851b0065e5f6d96c7a2dc4", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "139426686000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000b700000002ac8daaa0000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000000000000000000000100000002d399b30000000002ac8daaa0000000006a91c531", - "digest": "0x0257ba6c94220317ab5991eeb679d35b33b84874550e9b977bf6cdc1521ebfb0", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000b700000002ac8daaa000000000000000000000000000000001", - "digest": "0x9f7849c387e62f90be34fdace13437b1961f865420fe7635e0e23ccb681dd3b7", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099862", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127071", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136692", - "transactionId": "0xd321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b83" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x02f85c55d54387cde46faf09e89d92579005bed38a330e40435fd5da4f9e4cf9aa1e1ff018ba75ea0b133aaf339616a37e980b019610860ff1a152a7496bf721" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6a06c245f2127203dfc55715b538518214aa56ec107ec39b0bb2d5d57bf8ae5d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "169512", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00022", - "utxoId": "0x5d99f16c5a67cd4c9c03ed77549af62bb60ff28f7e2fac7b3572ebd2f9a2cebf0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc88c48369ec0a4e5d58ab924f16bae94d3dc4279ae242d9d7aec5c30b8767546", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x9e9b8d0b17b294aad5cb3f6f0de15483b28e742e534c68df1d8b6ea95aa0221e", - "txPointer": "03bd1aa50074", - "utxoId": "0xd321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b830001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x68bce59509cbcf70b75ea475c698afc8eef4e95899c65bc058d7d8577acbf45a", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xcf232b1f7bef5f38fc9660d0aebfe64e17136b2a95b546002964da57cfcbdf71", - "txPointer": "03bd1aa50074", - "utxoId": "0xd321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b830003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50074", - "utxoId": "0xd321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b830002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "169282", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd8c2d86d9eccc5fe3f23a778ccc3b8bb73a6c912870804049ac1b0c34c597aa4", - "inputIndex": "1", - "stateRoot": "0x405320551ba79f5650052935ffe22eeb47fa1e3cc53a1cf29be5fd51bf11cdd4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9427ca4ad862bd5430893e12f991e10a3068b28fba501bb54c3bbdd38d6cf141", - "inputIndex": "2", - "stateRoot": "0xedb017043d03ba8ef89537dcb692922fe7b8126b242badef0e0bb1c900476d86" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ae8e63cead884bb14e1cc8642b6e7f5c4269e3a2ddc5eceec842448ca787a6c40000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000063721c3d7ae23f88accd612194377f45d8341c7fa6801d7b3048c4a0234b10a3fd1bf08ae8437a0d2d00e59f8694a1504a5527eda9efe861a50f48863ab932f000000000000000000000006a91c5a900000000000000000000000000024e03600000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005f00000002ad313da000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aa900000000000000005d99f16c5a67cd4c9c03ed77549af62bb60ff28f7e2fac7b3572ebd2f9a2cebf0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029628f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000001d321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b830000000000000001c88c48369ec0a4e5d58ab924f16bae94d3dc4279ae242d9d7aec5c30b87675469e9b8d0b17b294aad5cb3f6f0de15483b28e742e534c68df1d8b6ea95aa0221e0000000003bd1aa50000000000000074f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001d321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b83000000000000000368bce59509cbcf70b75ea475c698afc8eef4e95899c65bc058d7d8577acbf45acf232b1f7bef5f38fc9660d0aebfe64e17136b2a95b546002964da57cfcbdf710000000003bd1aa50000000000000074c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001d321f83e9e11ca17ea5d2d309b5868cf630f43924a4061d6e91b95b9f7e69b830000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029542f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d8c2d86d9eccc5fe3f23a778ccc3b8bb73a6c912870804049ac1b0c34c597aa4405320551ba79f5650052935ffe22eeb47fa1e3cc53a1cf29be5fd51bf11cdd4000000000000000100000000000000029427ca4ad862bd5430893e12f991e10a3068b28fba501bb54c3bbdd38d6cf141edb017043d03ba8ef89537dcb692922fe7b8126b242badef0e0bb1c900476d8600000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040be05faeb47f022160b69ec9ad8cab07e3b54eb50ab91774bb21c41ac09eb336fe62799e4c9721f66c1be8eb7ae0f0b239a25b79880a13f2fc5fb0652bec9f773", - "receiptsRoot": "0xae8e63cead884bb14e1cc8642b6e7f5c4269e3a2ddc5eceec842448ca787a6c4", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000063721c3d7ae23f88accd612194377f45d8341c7fa6801d7b3048c4a0234b10a3fd1bf08ae8437a0d2d00e59f8694a1504a5527eda9efe861a50f48863ab932f000000000000000000000006a91c5a900000000000000000000000000024e03600000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005f00000002ad313da000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000024e0360", - "digest": "0x4a988cb392a03f97c6d0a3374ecfc4a8230d4208bdfc6804279950c9d082d41d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0360", - "digest": "0x7c675ea877478d79c22f4cac39bb2904fe3512b35f18949632d1e3f3a228d71b", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "19370000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f00000002ad313da000000000000000010000000000000001000000006a91c531", - "digest": "0x4e81e4ce81b93b21951b4dde746ef2b7bb3d641341820242742f2c83fb039fc1", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101234", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100609", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5a900000000000000000000000000024e0360", - "digest": "0x7c675ea877478d79c22f4cac39bb2904fe3512b35f18949632d1e3f3a228d71b", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100381", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886349", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099909", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "122087", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "230", - "totalGas": "131719", - "transactionId": "0x6a06c245f2127203dfc55715b538518214aa56ec107ec39b0bb2d5d57bf8ae5d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xbe05faeb47f022160b69ec9ad8cab07e3b54eb50ab91774bb21c41ac09eb336fe62799e4c9721f66c1be8eb7ae0f0b239a25b79880a13f2fc5fb0652bec9f773" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x92c354ca51af12b14597e4d2586d8cb3e71188d8867dbd1d523c27ce54842d6d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1875169", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00023", - "utxoId": "0xab124fb446c67388c06bbf39c951c98b5f2cbae45d08b56c60c2d48fd7abbb520000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe0dcb6d52c0100d5ac8f3609a06e7bdf2431146219df344a3691189fe3a0d9e1", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50075", - "utxoId": "0x6a06c245f2127203dfc55715b538518214aa56ec107ec39b0bb2d5d57bf8ae5d0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfc50f4d23e1892068c22ae17b9c859614a28bc4509b65db92b8b921260ef2898", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0x915c6e8e28fed5b321869c8fdfdaf4e2bfd003935720f695f0bd2d5694e6b171", - "txPointer": "03bd1aa50073", - "utxoId": "0xea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f10002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x64f78f573cbf925aa7f62e1f60533f439ab36d5f61a465c81121440a1f0f9453", - "contractId": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "stateRoot": "0x4f4a6613498ab5db68f43a06bec782c40be63df898dcfc9349adf5d820a87d18", - "txPointer": "03bd1aa30043", - "utxoId": "0xb63089a11fbf293af92be4f69f771429647c6d6262bb7973e132913da63ad5ab0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1874890", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4f2aa65dec2083415f0160481bbdc8c452e19f19064713cf7438d96d4b55f3bc", - "inputIndex": "2", - "stateRoot": "0x01ac70f9cc95ec9db562fb074af299b0a673c5e444bce1ec39af239f707e7da9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcc65e81b2f0b50459d85efb33a86222a3df370b359efc159a56c1256e212f3c5", - "inputIndex": "3", - "stateRoot": "0x9250afe4ada8b6f9ded378f1bad9841f5b6d253c291ae66a6bedb9d427266b3d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ddabc793e461c9644b3545a7bb98bfb55e39eae7f1f5155886524558744a396500000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d5c4cbe7abb1c9c0c4660840963499d60c743742b8f60fe2c84f46a0687e7bb52024c4a4ad64d0cabf93f837836519234436e655bcf96580b650f3d2c94effb500000000000000000000006a91c5a90000000000000000000000000000054b760000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000048f4f4c86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d072bb600000000014dc9380000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000ab124fb446c67388c06bbf39c951c98b5f2cbae45d08b56c60c2d48fd7abbb520000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c9ce1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000023000000000000000000000000000000000000000000000000000000000000000000000000000000016a06c245f2127203dfc55715b538518214aa56ec107ec39b0bb2d5d57bf8ae5d0000000000000003e0dcb6d52c0100d5ac8f3609a06e7bdf2431146219df344a3691189fe3a0d9e100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f10000000000000002fc50f4d23e1892068c22ae17b9c859614a28bc4509b65db92b8b921260ef2898915c6e8e28fed5b321869c8fdfdaf4e2bfd003935720f695f0bd2d5694e6b1710000000003bd1aa50000000000000073973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000001b63089a11fbf293af92be4f69f771429647c6d6262bb7973e132913da63ad5ab000000000000000364f78f573cbf925aa7f62e1f60533f439ab36d5f61a465c81121440a1f0f94534f4a6613498ab5db68f43a06bec782c40be63df898dcfc9349adf5d820a87d180000000003bd1aa30000000000000043d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c9bcaf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000024f2aa65dec2083415f0160481bbdc8c452e19f19064713cf7438d96d4b55f3bc01ac70f9cc95ec9db562fb074af299b0a673c5e444bce1ec39af239f707e7da900000000000000010000000000000003cc65e81b2f0b50459d85efb33a86222a3df370b359efc159a56c1256e212f3c59250afe4ada8b6f9ded378f1bad9841f5b6d253c291ae66a6bedb9d427266b3d0000000000000040781ff573931b726dbc6f810bbd9aa585b03a33a9d40e3e97a2c55e4c3fed96e5eb67405711047fbd0b8b8c38685718c6e2a91f47fc705729147f01efc8e83078", - "receiptsRoot": "0xddabc793e461c9644b3545a7bb98bfb55e39eae7f1f5155886524558744a3965", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d5c4cbe7abb1c9c0c4660840963499d60c743742b8f60fe2c84f46a0687e7bb52024c4a4ad64d0cabf93f837836519234436e655bcf96580b650f3d2c94effb500000000000000000000006a91c5a90000000000000000000000000000054b760000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000048f4f4c86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d072bb600000000014dc93800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000000054b76", - "digest": "0x0ab6c8b508960416b2725f8d967f8d1da8b0a64d718f1722168107417e4a61a8", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000091bf601883c323d1a1f41658ef4ecdbd1becafe2fbd1e75d5a9bc1adf4b12a68973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a90000000000000000000000000000054b76", - "digest": "0xa3e1193785813eb98bfc362cba119edfa2e9f28adba11dfab4cee2b3810c0556", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": "1224842504", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e700000000000000000000000049019d08", - "digest": "0xa519d6c8514499ce907ae11105428e38a084d9d62ad71ff69ab245615ef69023", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000091bf601883c323d1a1f41658ef4ecdbd1becafe2fbd1e75d5a9bc1adf4b12a68973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5a90000000000000000000000000000054b76", - "digest": "0xa3e1193785813eb98bfc362cba119edfa2e9f28adba11dfab4cee2b3810c0556", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1224013000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d00000000d072bb60000000000000000000000000000000010000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7000000000000000000000000000000010000000014dc938000000000d072bb60000000006a91c531", - "digest": "0x81787801af857ac87de2710eaf60091a921532c6e5e6425c120cd226b9d6de69", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000200000000d072bb6000000000000000010000000000000003000000000000000d00000000d072bb60000000000000000000000000000000010000000014dc938000000000d072bb60000000006a91c531", - "digest": "0xeeb77ebd12992362de0e077c85e1c3456ab56c8f95baab32785480d203288457", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000088b80000000000000000", - "digest": "0x2b981c17ef274160ba4b0f75ec043610941f8544499155dca56e76943b68e46a", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67098542", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000d00000000d072bb6000000000000000000000000000000001", - "digest": "0x2af8e00622dd76109ca02c3cdf629092049fbc1135b8ef554c264ac21eaf28e8", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67097582", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "150738", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "279", - "totalGas": "160359", - "transactionId": "0x92c354ca51af12b14597e4d2586d8cb3e71188d8867dbd1d523c27ce54842d6d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x781ff573931b726dbc6f810bbd9aa585b03a33a9d40e3e97a2c55e4c3fed96e5eb67405711047fbd0b8b8c38685718c6e2a91f47fc705729147f01efc8e83078" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe863e44329e3d00926e53c4de2363b758c7b45e01785319c02f17c4119931f23", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154636", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00024", - "utxoId": "0xe29298aad87387ac6117a45e39473fde214dfc6ed942cd20bb2053f15b85d6080000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2ce52a9a46ed8f90d9127729105ff0a56119df5d90b7e025a565edeb22c8194c", - "contractId": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "stateRoot": "0x8be4f5764d5f1eebae5e0de96aca089fc1e3626cfc5ae3836cc3dc6d10950a04", - "txPointer": "03bd1aa5005a", - "utxoId": "0x2a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c80003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef4", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50076", - "utxoId": "0x92c354ca51af12b14597e4d2586d8cb3e71188d8867dbd1d523c27ce54842d6d0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x11ffdfc6ad7eb63302dc3fb4657804abc3b49bafba96bc002e5d93f1c1007dc6", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xc87346d1d6963908eef6c795a522cba95e2e022f6d9649ffe9236693216210fa", - "txPointer": "03bd1aa5005a", - "utxoId": "0x2a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c80002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154318", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x376852ba403bbde6062e5cae217c0835e5949c0e9aaee0478a671e004ca106d6", - "inputIndex": "1", - "stateRoot": "0x8c11f251e3503eb71cc5a538fff31c3616e6ba9148aa68d3a63869c7019f720c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0442bbf362a3cf6d1babb7f008da224ea6ed10082595cd73d60c92c599951731", - "inputIndex": "3", - "stateRoot": "0x054b04798a9df68deb2fb95023a1e9107303444d298d673980dc95fd42bb679c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b07e5dbb5a96d7a90c1266994223be8881ef17eb73392a5403f8d344e7e052c6000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000090f8a121d19ccd8f3ab5efff4796a78b4e1f865fa254a5518d2efe8038f82dd2c67af9ed08c7b90939fb62eff85c572c57fab33b3c8065de65e96efa7c9fba6800000000000000000000006a91c5a900000000000000000000000000022436200000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000029000004126a56dd0000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000000e63c2f8e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000412cfaace00000000000e63c2f80000000000000003000000000000006400000000000210ac0000000003bd1aa90000000000000000e29298aad87387ac6117a45e39473fde214dfc6ed942cd20bb2053f15b85d6080000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025c0cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000012a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c800000000000000032ce52a9a46ed8f90d9127729105ff0a56119df5d90b7e025a565edeb22c8194c8be4f5764d5f1eebae5e0de96aca089fc1e3626cfc5ae3836cc3dc6d10950a040000000003bd1aa5000000000000005a9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b000000000000000192c354ca51af12b14597e4d2586d8cb3e71188d8867dbd1d523c27ce54842d6d00000000000000012644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef400000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000012a361c7852c1678bbbd58c6d6a99c5dd543d2ad7a72777a06aa269cfc45695c8000000000000000211ffdfc6ad7eb63302dc3fb4657804abc3b49bafba96bc002e5d93f1c1007dc6c87346d1d6963908eef6c795a522cba95e2e022f6d9649ffe9236693216210fa0000000003bd1aa5000000000000005af31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025acef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001376852ba403bbde6062e5cae217c0835e5949c0e9aaee0478a671e004ca106d68c11f251e3503eb71cc5a538fff31c3616e6ba9148aa68d3a63869c7019f720c0000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000030442bbf362a3cf6d1babb7f008da224ea6ed10082595cd73d60c92c599951731054b04798a9df68deb2fb95023a1e9107303444d298d673980dc95fd42bb679c00000000000000407a7649bd2122d6ff6d038b27000829f4bdc90ce6b3461330098c36e720fd4d0ff7692dc61a653951bf5677292075540978885c6a22aa43f00eb7128a15a86f2a", - "receiptsRoot": "0xb07e5dbb5a96d7a90c1266994223be8881ef17eb73392a5403f8d344e7e052c6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000090f8a121d19ccd8f3ab5efff4796a78b4e1f865fa254a5518d2efe8038f82dd2c67af9ed08c7b90939fb62eff85c572c57fab33b3c8065de65e96efa7c9fba6800000000000000000000006a91c5a900000000000000000000000000022436200000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000029000004126a56dd0000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000000e63c2f8e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000412cfaace00000000000e63c2f80000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000002243620", - "digest": "0x169dcd0f3eca884f4a9ef24a1915c687fa577bb3cb96df58983106b640a2850e", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a90000000000000000000000000002243620", - "digest": "0x58e8c46477204ed54a894efe00036fbe8a4362e12d2389111bcc897a792b2b60", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963079", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "249118000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "401592", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000029000004126a56dd0000000000000000010000000000000003000000006a91c531", - "digest": "0x1e6c7e728f816c3828bf00bb524b8ff913fc964ae76e2ee2239016940faac767", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "395940", - "ptr": "67101610", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "373108", - "ptr": "67100985", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a90000000000000000000000000002243620", - "digest": "0x58e8c46477204ed54a894efe00036fbe8a4362e12d2389111bcc897a792b2b60", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100757", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1890998", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000000", - "digest": "0x71c2674e8d8b35ad161cfd1915bb382fb6b8209e2ef9dd0e5883ab0dbbce7a4b", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "455840", - "ptr": "67100285", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "368836", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5a90000000000000000000000000002243620", - "digest": "0x58e8c46477204ed54a894efe00036fbe8a4362e12d2389111bcc897a792b2b60", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100057", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "241419000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879593", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003700000412cfaace000000000000000001000000000000000300000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000010000000000000003000000000e63c2f800000412cfaace00000000006a91c531", - "digest": "0xa9c1180019bc36f86fce28a0fa2dd474d9e811adb957e8f611d0c08ff744aaf1", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "426572", - "ptr": "67098665", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003700000412cfaace0000000000000000010000000000000003", - "digest": "0x149ef3a81e1010d0141544ed83531a86e52dce32ad36ad7aae12eaae0d050e21", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "372804", - "ptr": "67096601", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "172996", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "318", - "totalGas": "182824", - "transactionId": "0xe863e44329e3d00926e53c4de2363b758c7b45e01785319c02f17c4119931f23" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7a7649bd2122d6ff6d038b27000829f4bdc90ce6b3461330098c36e720fd4d0ff7692dc61a653951bf5677292075540978885c6a22aa43f00eb7128a15a86f2a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec7", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "2005714", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00025", - "utxoId": "0x5864835f2039dd3dc517a360a9f009624bb46cd818d79d121e2ac205774d79d80000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50077", - "utxoId": "0xe863e44329e3d00926e53c4de2363b758c7b45e01785319c02f17c4119931f230002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe9ed36a1e962073d661c3fdd3da45018e1052508d67f7d19d0221152a2a07e3c", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x568476590cd975073caa9a980bd483513a1cf03a6cff09aa727b94baded15f2e", - "txPointer": "03bd1aa50054", - "utxoId": "0x5610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x44b09d5556fdc2be52521d9df1495895c01b1800a39fb354bdb5fd41bd55ebca", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x3f3b0daea9369953f62ac4416aca667b94e4d360999becfc72bf40e4a99071e3", - "txPointer": "03bd1aa50054", - "utxoId": "0x5610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "2005476", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8555799e32777cab1e5128423a757b07d27d0a94cbe5ee496ca80ccbe8b4d183", - "inputIndex": "2", - "stateRoot": "0x9eb6d7f4d3d63ffbd0f848cae8f7e5852c8831ff66a1fc335d8085782a7d1079" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x916be4e195c9213d4803b87596608a43db1eb5ff49bedb96c9b52b154ea23f0d", - "inputIndex": "3", - "stateRoot": "0x7f86bca8757a45ebfb9c0cfad683fcca587a1ee6c147eced436fe33b92074c7f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848056650a52b8195b158cc3d77602a6afc027711612b9e2ab6018a5a6e71d19fb0a0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001c28031f42a133ee0deb7356740c148d477c0a9dcef1e737a85419b28f4260a4b8558f91d14cb85ae5ae477b4f7a0f11863e7e7c7a7af615d77b0d1497aca53800000000000000000000006a91c5a9000000000000000000000000000251cf3e00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002000000001089e2830000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aa900000000000000005864835f2039dd3dc517a360a9f009624bb46cd818d79d121e2ac205774d79d80000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001e9ad2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002500000000000000000000000000000000000000000000000000000000000000000000000000000001e863e44329e3d00926e53c4de2363b758c7b45e01785319c02f17c4119931f230000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df0000000000000003e9ed36a1e962073d661c3fdd3da45018e1052508d67f7d19d0221152a2a07e3c568476590cd975073caa9a980bd483513a1cf03a6cff09aa727b94baded15f2e0000000003bd1aa500000000000000544added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000015610638766eb89a1448816662ad356bdc73fc1237f58d82445183e7dc914d9df000000000000000144b09d5556fdc2be52521d9df1495895c01b1800a39fb354bdb5fd41bd55ebca3f3b0daea9369953f62ac4416aca667b94e4d360999becfc72bf40e4a99071e30000000003bd1aa50000000000000054b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001e99e4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000028555799e32777cab1e5128423a757b07d27d0a94cbe5ee496ca80ccbe8b4d1839eb6d7f4d3d63ffbd0f848cae8f7e5852c8831ff66a1fc335d8085782a7d107900000000000000010000000000000003916be4e195c9213d4803b87596608a43db1eb5ff49bedb96c9b52b154ea23f0d7f86bca8757a45ebfb9c0cfad683fcca587a1ee6c147eced436fe33b92074c7f0000000000000040987e014066b72c5aa2f2ed135815b084f6abfb20a74c3bae96137ea683309c4c96415af48a59155faf6f51a30365a6036b9f998f44f4cd6b8f9ffd44ba94706f", - "receiptsRoot": "0x56650a52b8195b158cc3d77602a6afc027711612b9e2ab6018a5a6e71d19fb0a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001c28031f42a133ee0deb7356740c148d477c0a9dcef1e737a85419b28f4260a4b8558f91d14cb85ae5ae477b4f7a0f11863e7e7c7a7af615d77b0d1497aca53800000000000000000000006a91c5a9000000000000000000000000000251cf3e00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002000000001089e2830000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000251cf3e", - "digest": "0xfa2a301400102f541555a91cddb30efcb29f6848113d813b208202d228ddb56e", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3e", - "digest": "0xa57545a1c851258f418bcdb4d938293555c1ccc5321694c095c27c4c8966248f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "53718555000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002000000001089e283000000000000000000000000000000001000000006a91c531", - "digest": "0xa79fca1e367d92308103092aaf30067d7c7485e41a137cc07bec225326e24365", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100770", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100145", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3e", - "digest": "0xa57545a1c851258f418bcdb4d938293555c1ccc5321694c095c27c4c8966248f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099917", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881564", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099445", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126872", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136504", - "transactionId": "0xed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec7" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x987e014066b72c5aa2f2ed135815b084f6abfb20a74c3bae96137ea683309c4c96415af48a59155faf6f51a30365a6036b9f998f44f4cd6b8f9ffd44ba94706f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa1a0d8b0d36646fc3f5f89e2f01207b72ea3ca89ceb144410d52433d44f5ffd9", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "156517", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00026", - "utxoId": "0x293e39932422eb08b63c4b96b80630c286d042e47dea9f494385e66cb8c2fa980000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50078", - "utxoId": "0xed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec70001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa8402a0e893dcf26d18863be07453c73da9d71ec9ffb0bc103c21ff6a633b9c3", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x92e1541f52b6036c299639da84be75819cdfab84372e62bc4089568b8cb49606", - "txPointer": "03bd1aa50078", - "utxoId": "0xed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec70003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x540097a0aece41c5cf2e14ea99e41df0b336cd25cb53f21e4b502c3e9e298baa", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x29309e559cc5e63f1a0eba5d9fa8109ad4f69d41e2686bcca8055304cd48ed2c", - "txPointer": "03bd1aa50078", - "utxoId": "0xed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec70002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "156272", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4148351b513c4e69e531b755c6bf06cdc644138ac0459bd10ac0f52a4a69d303", - "inputIndex": "2", - "stateRoot": "0x0400db9c71cab3c97c379361a7bb420f70b767f53e83b7d3a35732f964b04bc4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0d6b008ef3412e5d223757661a9b036fd46f80451568fd01d5be0983fd191f49", - "inputIndex": "3", - "stateRoot": "0x5633456a3d777170d81358820ae84d3da9101ad7b5306773b0e7162752f66c83" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480cf7ef21d335e737659f9eccba8cff7ffd0be947636da6658e48c538396c761b800000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ae004e09c8a22b5d25e92ce11d05225195aaadb6d57f3515135b92dfbd159b7eb24f3dc2aad9cc86355ca02fb967be0675f6a142ce15388098a49fdf56992b0100000000000000000000006a91c5a9000000000000000000000000000251cf3f00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000000290d7db00cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108c9cc100000000290d7db00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000293e39932422eb08b63c4b96b80630c286d042e47dea9f494385e66cb8c2fa980000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026365f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000001ed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec70000000000000001ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec70000000000000003a8402a0e893dcf26d18863be07453c73da9d71ec9ffb0bc103c21ff6a633b9c392e1541f52b6036c299639da84be75819cdfab84372e62bc4089568b8cb496060000000003bd1aa50000000000000078b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001ed82b27d46a2919db38926e7fe56c700998a195d8619827adf6c04ac10895ec70000000000000002540097a0aece41c5cf2e14ea99e41df0b336cd25cb53f21e4b502c3e9e298baa29309e559cc5e63f1a0eba5d9fa8109ad4f69d41e2686bcca8055304cd48ed2c0000000003bd1aa500000000000000784added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026270f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000024148351b513c4e69e531b755c6bf06cdc644138ac0459bd10ac0f52a4a69d3030400db9c71cab3c97c379361a7bb420f70b767f53e83b7d3a35732f964b04bc4000000000000000100000000000000030d6b008ef3412e5d223757661a9b036fd46f80451568fd01d5be0983fd191f495633456a3d777170d81358820ae84d3da9101ad7b5306773b0e7162752f66c8300000000000000405cac798e1d1e597c8edb379f0f97fc68be56e907c2e4ca2919b7a71b87d528d1a25de5ecfd174ddfbddab0e939aae4184ba1c36c18610b24280cd5084bf37fd4", - "receiptsRoot": "0xcf7ef21d335e737659f9eccba8cff7ffd0be947636da6658e48c538396c761b8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ae004e09c8a22b5d25e92ce11d05225195aaadb6d57f3515135b92dfbd159b7eb24f3dc2aad9cc86355ca02fb967be0675f6a142ce15388098a49fdf56992b0100000000000000000000006a91c5a9000000000000000000000000000251cf3f00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000000290d7db00cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108c9cc100000000290d7db000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000251cf3f", - "digest": "0xf7647f38cbdd2b104cdac4a4170c85155a9e2ab6e9dd408f086fcf18008e391f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3f", - "digest": "0x7be18f28b8a3ec8ebcbcbb3b5d93db6fb3930c50629f2ffa866d13c4f2f6f7b3", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5a9000000000000000000000000000251cf3f", - "digest": "0x7be18f28b8a3ec8ebcbcbb3b5d93db6fb3930c50629f2ffa866d13c4f2f6f7b3", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "11020000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000130000000108c9cc10000000000000000100000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571000000000000000100000000000000010000000290d7db000000000108c9cc10000000006a91c531", - "digest": "0x21098355b41a88ae25528a84cd6aa8cad8241721f14f521288b5e9beac115a59", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000130000000108c9cc1000000000000000010000000000000001", - "digest": "0xc859841a3f392d4629b519b4de79e30a151f3a05c5fd27733730f8de577aba17", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099526", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130961", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "245", - "totalGas": "140582", - "transactionId": "0xa1a0d8b0d36646fc3f5f89e2f01207b72ea3ca89ceb144410d52433d44f5ffd9" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5cac798e1d1e597c8edb379f0f97fc68be56e907c2e4ca2919b7a71b87d528d1a25de5ecfd174ddfbddab0e939aae4184ba1c36c18610b24280cd5084bf37fd4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "167734", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00027", - "utxoId": "0x308e73dd49855b1967e19ef35d18e39eb3a694dcc4aa7ae531bb43a2f26683180000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50079", - "utxoId": "0xa1a0d8b0d36646fc3f5f89e2f01207b72ea3ca89ceb144410d52433d44f5ffd90001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xde5fc5493ac4ebd2e7991a6c42f63d35e9155144b7c81719555865106721f242", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0xc71288c17d2a48e91dd77a6eaf7b8c72876f72731cc7250c24088544fde20072", - "txPointer": "03bd1aa50060", - "utxoId": "0xe2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba610001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x80cdf2badc7c6f02fa828616abc771b90c5e6f051d521b8ede81513ba4140a69", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xba4c05e76b2125a3851da3d3130b30082068c4abf26912854be834be9c31b3f8", - "txPointer": "03bd1aa50060", - "utxoId": "0xe2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba610003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167504", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3590c25b3cf5348e71f0ff0cd9a5cd03695afb7d110ca983c8e0a71d69e14ff6", - "inputIndex": "2", - "stateRoot": "0x83f24542699f5359c448f163a325d9236dc4cadfe3d2a3122e0556ad707463f7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x78386e0530c67a59d0b7541234bc897c2fef23422670d10eb532f4bd50acd08b", - "inputIndex": "3", - "stateRoot": "0x18bf7fabd259483e16433a66e184f8f2bcdb6f6824430f300112c40c042adb4f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480e27eca5af02b649431fb54f2a5d110f0c43ee552ee9c64e5e708f2c21d4843bd0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f5969ee2589f8a87714f41b1340ceb3578bc36add5bca641865afe408a3f2a5da9fb96a00e3d24dd42029d6f698b675897a6bd9b5585259f41575e9a9c39d7f100000000000000000000006a91c5a900000000000000000000000000023dd5360000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002400000000153d6c7800000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000308e73dd49855b1967e19ef35d18e39eb3a694dcc4aa7ae531bb43a2f26683180000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028f36f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000001a1a0d8b0d36646fc3f5f89e2f01207b72ea3ca89ceb144410d52433d44f5ffd90000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba610000000000000001de5fc5493ac4ebd2e7991a6c42f63d35e9155144b7c81719555865106721f242c71288c17d2a48e91dd77a6eaf7b8c72876f72731cc7250c24088544fde200720000000003bd1aa50000000000000060e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001e2fe99805c8912369aeb701db56f06c1565de66bb13db2b96fabd35e26cdba61000000000000000380cdf2badc7c6f02fa828616abc771b90c5e6f051d521b8ede81513ba4140a69ba4c05e76b2125a3851da3d3130b30082068c4abf26912854be834be9c31b3f80000000003bd1aa50000000000000060ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028e50f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000023590c25b3cf5348e71f0ff0cd9a5cd03695afb7d110ca983c8e0a71d69e14ff683f24542699f5359c448f163a325d9236dc4cadfe3d2a3122e0556ad707463f70000000000000001000000000000000378386e0530c67a59d0b7541234bc897c2fef23422670d10eb532f4bd50acd08b18bf7fabd259483e16433a66e184f8f2bcdb6f6824430f300112c40c042adb4f0000000000000040e863619b6103cf48ebcd748aa6fa9fa0c2afe41ed5bde2155575da900be64430b3890afa340d01533bc121578aae11fb71925c821534f617bc9f68081d35484a", - "receiptsRoot": "0xe27eca5af02b649431fb54f2a5d110f0c43ee552ee9c64e5e708f2c21d4843bd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f5969ee2589f8a87714f41b1340ceb3578bc36add5bca641865afe408a3f2a5da9fb96a00e3d24dd42029d6f698b675897a6bd9b5585259f41575e9a9c39d7f100000000000000000000006a91c5a900000000000000000000000000023dd5360000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002400000000153d6c7800000000000000000000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd536", - "digest": "0x4984e5e41349f09d4a8dd1e2234766fc1108eb5d518e2b8563a2451952c2eb14", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd536", - "digest": "0x48a73572dc83d7cebf897cbe0304b72548c2d847bec18841a6362f34af06bb2f", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "824123706900", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002400000000153d6c7800000000000000000000000000000001000000006a91c531", - "digest": "0xe6601f5cc28d1d2f49067cc300c9d715db55a0d8bf9d5ff47cc45a208e7b1a41", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101234", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100609", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd536", - "digest": "0x48a73572dc83d7cebf897cbe0304b72548c2d847bec18841a6362f34af06bb2f", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100381", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886267", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099909", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "122169", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "230", - "totalGas": "131801", - "transactionId": "0x671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe863619b6103cf48ebcd748aa6fa9fa0c2afe41ed5bde2155575da900be64430b3890afa340d01533bc121578aae11fb71925c821534f617bc9f68081d35484a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c9967", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "166485", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00028", - "utxoId": "0x85ad50fe7f4759810df8402a61389978ad87d4bcbdc908f521323e9dedc102cf0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5007a", - "utxoId": "0x671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa410d0275265a9f535218d901b6da2259e9faf3b46265e26d681bff515eb0d42", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x9f8dffa9e29bd26c6e0ea901d5541b6644908e26e1c5f99549388593be725cf8", - "txPointer": "03bd1aa5007a", - "utxoId": "0x671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe3ad91b20615f33ea71d10f7a0dca8c8e7212aa50cab10d8bcccbe886a78ffca", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x891287ec9e78d9f34a4a1c53a7f1b97395bd8cdc9ca56d61b9134877fab49e94", - "txPointer": "03bd1aa5007a", - "utxoId": "0x671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "166249", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2378d56d8e7b3dbc6137b9dd7d1e82dc0bf4d61fe0a3b645e62406b72ef98317", - "inputIndex": "2", - "stateRoot": "0x9082b3166c1329b78a7ce76ca1175d8066c92a4e3fc652212c19a13998d64434" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd4f573ed4e783f4cce6118226c70d5cdef8544b7b9e5e5f9c845b473dfd1a83f", - "inputIndex": "3", - "stateRoot": "0xe23cdbdb61009d97d5fb094e3908ee4f42d06ddadb681ca35d1700eb83e74b2a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480bba3c94d7a3675c4bc16b517d6b8417534dba9ec44d366905376cc8d2f652b6d0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000088798902ec6c4325f898e14230198e60db21b1531e4754bd5292851b5bfba7f4b84768e574bb7f276e46bd6dd257c19378a3b2d3edca31e7dbde747c37da39500000000000000000000006a91c5a900000000000000000000000000023dd5370000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005000000000154622f000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa9000000000000000085ad50fe7f4759810df8402a61389978ad87d4bcbdc908f521323e9dedc102cf0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028a55f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002800000000000000000000000000000000000000000000000000000000000000000000000000000001671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a0000000000000003a410d0275265a9f535218d901b6da2259e9faf3b46265e26d681bff515eb0d429f8dffa9e29bd26c6e0ea901d5541b6644908e26e1c5f99549388593be725cf80000000003bd1aa5000000000000007aba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000001671ea8b13f3958f27e1eccc5beb62aed579e602dbe0d977a9e72ff9074e91c8a0000000000000002e3ad91b20615f33ea71d10f7a0dca8c8e7212aa50cab10d8bcccbe886a78ffca891287ec9e78d9f34a4a1c53a7f1b97395bd8cdc9ca56d61b9134877fab49e940000000003bd1aa5000000000000007ae2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028969f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000022378d56d8e7b3dbc6137b9dd7d1e82dc0bf4d61fe0a3b645e62406b72ef983179082b3166c1329b78a7ce76ca1175d8066c92a4e3fc652212c19a13998d6443400000000000000010000000000000003d4f573ed4e783f4cce6118226c70d5cdef8544b7b9e5e5f9c845b473dfd1a83fe23cdbdb61009d97d5fb094e3908ee4f42d06ddadb681ca35d1700eb83e74b2a0000000000000040bb3301289565e6513406cdf6b1849f97e14e3ac96fe00c1d2b4385cf92acded5416be18fb21796ccdd6a5c7bfefc336362dae095c26534dba163a1c7ca67af4f", - "receiptsRoot": "0xbba3c94d7a3675c4bc16b517d6b8417534dba9ec44d366905376cc8d2f652b6d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000088798902ec6c4325f898e14230198e60db21b1531e4754bd5292851b5bfba7f4b84768e574bb7f276e46bd6dd257c19378a3b2d3edca31e7dbde747c37da39500000000000000000000006a91c5a900000000000000000000000000023dd5370000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005000000000154622f000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd537", - "digest": "0x092be81bb3c85c56e43f4493f2da2a6cd7388def161e2a1eec282c1543e0ad80", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd537", - "digest": "0x07e1511fc7be28ae35bc73e13e7e8779b287fd8a9e5a8354936c4c5ee41a109b", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "604500000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005000000000154622f000000000000000010000000000000001000000006a91c531", - "digest": "0xf38dad8171d172a850ce2ff81c7bb5185a83c28e0c7f83932ff39cf5ed0a3df0", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100986", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100361", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd537", - "digest": "0x07e1511fc7be28ae35bc73e13e7e8779b287fd8a9e5a8354936c4c5ee41a109b", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100133", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882922", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099661", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125514", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135146", - "transactionId": "0xad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c9967" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xbb3301289565e6513406cdf6b1849f97e14e3ac96fe00c1d2b4385cf92acded5416be18fb21796ccdd6a5c7bfefc336362dae095c26534dba163a1c7ca67af4f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x02d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "165275", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00029", - "utxoId": "0xe87727c7703169322e8eda27565828b029e4956b5694e66d24b63b56d13e2c520000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5007b", - "utxoId": "0xad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c99670001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd4f573ed4e783f4cce6118226c70d5cdef8544b7b9e5e5f9c845b473dfd1a83f", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x5f1fc763b56ad61ff7fcf6975754e3fd001c6c90efda6b21f07922aae3627c20", - "txPointer": "03bd1aa5007b", - "utxoId": "0xad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c99670003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2378d56d8e7b3dbc6137b9dd7d1e82dc0bf4d61fe0a3b645e62406b72ef98317", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xc36c39ece9371df3a9b2392dca928b706b491b7b4c15aabf50419acc2b5e1879", - "txPointer": "03bd1aa5007b", - "utxoId": "0xad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c99670002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "165033", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe21d0f6e7d7aba440a987296c8dde302ddec74604c5ef2d9312da12daf6e748f", - "inputIndex": "2", - "stateRoot": "0x44fb3091954731c0a94f65bcde1b1a21d11f8ed781c59636b484cb9578016f0a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x70499bb35d19eeef0a23ed9c9290d4fa5e1f9938bd32f20873c7e7df14e56454", - "inputIndex": "3", - "stateRoot": "0xed0b12bde69cdb48b2b7d5e905903c84e10ca4c00b440e5c4c6dcb33b3ddb6bf" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b4d2e4065e2958cf6c670e6e5658b831ff644f920a940d1408145d2995e37f820000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000be5b63d2fe5b6f8c99b1d37af25741c087f8cc63695169fdce28a2eabd6688bf8739b2536824fbdae77295c95fcbc1bd01a1590868eadaf21722bf87acfbf83700000000000000000000006a91c5a900000000000000000000000000023dd5380000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003c000000001545dca000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aa90000000000000000e87727c7703169322e8eda27565828b029e4956b5694e66d24b63b56d13e2c520000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002859bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002900000000000000000000000000000000000000000000000000000000000000000000000000000001ad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c99670000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c99670000000000000003d4f573ed4e783f4cce6118226c70d5cdef8544b7b9e5e5f9c845b473dfd1a83f5f1fc763b56ad61ff7fcf6975754e3fd001c6c90efda6b21f07922aae3627c200000000003bd1aa5000000000000007be2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001ad5f8ec660404c8ed48847b18df9acce2f1539a856ac826c76cf3617c26c996700000000000000022378d56d8e7b3dbc6137b9dd7d1e82dc0bf4d61fe0a3b645e62406b72ef98317c36c39ece9371df3a9b2392dca928b706b491b7b4c15aabf50419acc2b5e18790000000003bd1aa5000000000000007bba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000284a9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e21d0f6e7d7aba440a987296c8dde302ddec74604c5ef2d9312da12daf6e748f44fb3091954731c0a94f65bcde1b1a21d11f8ed781c59636b484cb9578016f0a0000000000000001000000000000000370499bb35d19eeef0a23ed9c9290d4fa5e1f9938bd32f20873c7e7df14e56454ed0b12bde69cdb48b2b7d5e905903c84e10ca4c00b440e5c4c6dcb33b3ddb6bf00000000000000403e3df5c2079e5f8469d1121448fceecc54b9a7288a27c44aceab9c03ff2c4eca2dc4f794d761484dcfb54626bb1c1941b9fb459a54b8acca6b515364c31fa7cf", - "receiptsRoot": "0xb4d2e4065e2958cf6c670e6e5658b831ff644f920a940d1408145d2995e37f82", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000be5b63d2fe5b6f8c99b1d37af25741c087f8cc63695169fdce28a2eabd6688bf8739b2536824fbdae77295c95fcbc1bd01a1590868eadaf21722bf87acfbf83700000000000000000000006a91c5a900000000000000000000000000023dd5380000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003c000000001545dca000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd538", - "digest": "0x8a46d485c2342292c584d4de3a665a3a5437f128da7c681687eb50828958420c", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd538", - "digest": "0xec08c0e7ed7397959e472a6337e150f326766701d1c612e20b05758d6be08f70", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "6715200000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003c000000001545dca000000000000000010000000000000001000000006a91c531", - "digest": "0xa61a1fd37fba7bb4395864185a22cff6be2a10b59ad5b0d7d4d4668d4143f51c", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100754", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100129", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd538", - "digest": "0xec08c0e7ed7397959e472a6337e150f326766701d1c612e20b05758d6be08f70", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099901", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879111", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099429", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129325", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "242", - "totalGas": "138957", - "transactionId": "0x02d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3e3df5c2079e5f8469d1121448fceecc54b9a7288a27c44aceab9c03ff2c4eca2dc4f794d761484dcfb54626bb1c1941b9fb459a54b8acca6b515364c31fa7cf" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a6304", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "289535", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0002a", - "utxoId": "0xfb1139ef74d8368384e6a0d2b0fbe469493139e33787ef060e0e59682d1d96450000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5007c", - "utxoId": "0x02d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x78386e0530c67a59d0b7541234bc897c2fef23422670d10eb532f4bd50acd08b", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x7189fee404e544f167d5055960bcb1c6731dd2520f87a3a0ab9bbfe8a9a3efe8", - "txPointer": "03bd1aa5007c", - "utxoId": "0x02d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3590c25b3cf5348e71f0ff0cd9a5cd03695afb7d110ca983c8e0a71d69e14ff6", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x50fd26e639e62a51e9e4d95a0992d3648969d592116879ee7ab282f3d5a33fe9", - "txPointer": "03bd1aa5007c", - "utxoId": "0x02d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "289294", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xed1f2705680c37d0e334dc8ad4d77da2abd60aadc782d3b46b912668690a0cf6", - "inputIndex": "2", - "stateRoot": "0xea0e86f70da8215271f19910f3f5130a3092dd4593688740f1bbfa40f5705b02" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb31f94041a274076ff926d7aed759e2ef253bf61adfeea1d5fe1348cd873c90d", - "inputIndex": "3", - "stateRoot": "0x6664310c3747db2f23fc01f02c9b88d62805ddcabfb1560a59813bee0fe3a402" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480dcdedddf092381b02873a6bd798d649a90b36f6cdbcdebace786eea679ad03e800000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a2f8fa788d2fdea93e3123d6c886a394e8b47680727597b3bc5f34abcc121423f6aba09ba7b65bbfe55bce462e0c0482f4d1fe2c3dc14d10365d979ed55c562c00000000000000000000006a91c5a900000000000000000000000000023dd5390000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000bfe649a18c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000153df1480000021a77a97700000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000fb1139ef74d8368384e6a0d2b0fbe469493139e33787ef060e0e59682d1d96450000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000046afff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002a0000000000000000000000000000000000000000000000000000000000000000000000000000000102d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd0000000000000001b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000102d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd000000000000000378386e0530c67a59d0b7541234bc897c2fef23422670d10eb532f4bd50acd08b7189fee404e544f167d5055960bcb1c6731dd2520f87a3a0ab9bbfe8a9a3efe80000000003bd1aa5000000000000007cba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241000000000000000102d5cd08f602eb513c994432f5f02f8b27e3b9ba699c563330dfaab760a3b1cd00000000000000023590c25b3cf5348e71f0ff0cd9a5cd03695afb7d110ca983c8e0a71d69e14ff650fd26e639e62a51e9e4d95a0992d3648969d592116879ee7ab282f3d5a33fe90000000003bd1aa5000000000000007ce2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000046a0ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002ed1f2705680c37d0e334dc8ad4d77da2abd60aadc782d3b46b912668690a0cf6ea0e86f70da8215271f19910f3f5130a3092dd4593688740f1bbfa40f5705b0200000000000000010000000000000003b31f94041a274076ff926d7aed759e2ef253bf61adfeea1d5fe1348cd873c90d6664310c3747db2f23fc01f02c9b88d62805ddcabfb1560a59813bee0fe3a40200000000000000400267ca436f15763a63c813d63e49b2ea0fabd196206aab60d8b6b6dd90df662beb794e1b03d636da0140b1e74522f5d6afe399893ad5baa1161d78d57624c423", - "receiptsRoot": "0xdcdedddf092381b02873a6bd798d649a90b36f6cdbcdebace786eea679ad03e8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a2f8fa788d2fdea93e3123d6c886a394e8b47680727597b3bc5f34abcc121423f6aba09ba7b65bbfe55bce462e0c0482f4d1fe2c3dc14d10365d979ed55c562c00000000000000000000006a91c5a900000000000000000000000000023dd5390000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000bfe649a18c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000153df1480000021a77a977000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd539", - "digest": "0x6ab862dd7645ba970463f6f8689489c1b3af741cf9b288672e047b83ccf9f3dd", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd539", - "digest": "0x54ee82c99706f563e577ae086b3486d1ae7132a809c3995af345b60616cad53e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd539", - "digest": "0x54ee82c99706f563e577ae086b3486d1ae7132a809c3995af345b60616cad53e", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "824202338700", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004200000000153df148000000000000000000000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000000000000000000010000021a77a9770000000000153df148000000006a91c531", - "digest": "0x72a019a949217dac74df8252a255ee08bc696523f784e6a61ce7c674d290c337", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004200000000153df14800000000000000000000000000000001", - "digest": "0xa769ccf172b30d936f26916bd6f493bec44ce985177b5888f4cf973ba0c463d1", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128426", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "241", - "totalGas": "138047", - "transactionId": "0xa3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a6304" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x0267ca436f15763a63c813d63e49b2ea0fabd196206aab60d8b6b6dd90df662beb794e1b03d636da0140b1e74522f5d6afe399893ad5baa1161d78d57624c423" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1870718", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0002b", - "utxoId": "0xac8f9a21ab02d8c7b5d05a29025f00dde4461a6fb6162b825a651d38c064f1680000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5007d", - "utxoId": "0xa3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a63040001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x70499bb35d19eeef0a23ed9c9290d4fa5e1f9938bd32f20873c7e7df14e56454", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xbac7846e03fe61dca8770d63e5022481174c797bd6723b92b42060f68826b2f5", - "txPointer": "03bd1aa5007d", - "utxoId": "0xa3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a63040002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe21d0f6e7d7aba440a987296c8dde302ddec74604c5ef2d9312da12daf6e748f", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x68b83f8ebe39ffce7f4c13fc85e52e3f119250ccd593638f61dca4cf218e02a8", - "txPointer": "03bd1aa5007d", - "utxoId": "0xa3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a63040003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1870481", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x644b277931bcbe8bf3ed46234cfb4c4826aaecd6270af6bdbb3d8fc9af347904", - "inputIndex": "2", - "stateRoot": "0xa6a34de84f7855a780e06cf958b77819d3f680e13ab0bc84b3d1c7dc4c960181" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x63a32961d21d3c1dc56da273fbb0adc01dddad0352c582fc5934bc9061545172", - "inputIndex": "3", - "stateRoot": "0x2faf6e9561df0752efd483038320054ebe7075d5c587d2a81ad77ffb0f3ae7e0" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801fbcc9f157c7c4ad22edf740338b9ad73b99b44b0cf76f625d0939dd35a4318a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000089bb138a7ead30f75a72104cb08ef6bf1c60e1e1610f9a97050ca501a633aca63b7966c96b844d3b52f8deaff4d190acdac23c6c40d42a75a409cbec2724f30c00000000000000000000006a91c5a900000000000000000000000000023dd53a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000006cd92be300f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154413980000006cd92be300000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000ac8f9a21ab02d8c7b5d05a29025f00dde4461a6fb6162b825a651d38c064f1680000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8b7ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002b00000000000000000000000000000000000000000000000000000000000000000000000000000001a3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a63040000000000000001b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a6304000000000000000270499bb35d19eeef0a23ed9c9290d4fa5e1f9938bd32f20873c7e7df14e56454bac7846e03fe61dca8770d63e5022481174c797bd6723b92b42060f68826b2f50000000003bd1aa5000000000000007dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000001a3bd9b4ab30839fa1acd68feec9f113180d08bca14b7c7fbf000b619c36a63040000000000000003e21d0f6e7d7aba440a987296c8dde302ddec74604c5ef2d9312da12daf6e748f68b83f8ebe39ffce7f4c13fc85e52e3f119250ccd593638f61dca4cf218e02a80000000003bd1aa5000000000000007de2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001c8a91f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002644b277931bcbe8bf3ed46234cfb4c4826aaecd6270af6bdbb3d8fc9af347904a6a34de84f7855a780e06cf958b77819d3f680e13ab0bc84b3d1c7dc4c9601810000000000000001000000000000000363a32961d21d3c1dc56da273fbb0adc01dddad0352c582fc5934bc90615451722faf6e9561df0752efd483038320054ebe7075d5c587d2a81ad77ffb0f3ae7e000000000000000406274b858d75390004e91617ff2d555425112985df90eef2e1d0b88847d27f8f19cd72525f7a3fe47c5d5b969ca70bbdf0c27a8f38ae8f6a3e06160294a38da66", - "receiptsRoot": "0x1fbcc9f157c7c4ad22edf740338b9ad73b99b44b0cf76f625d0939dd35a4318a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000089bb138a7ead30f75a72104cb08ef6bf1c60e1e1610f9a97050ca501a633aca63b7966c96b844d3b52f8deaff4d190acdac23c6c40d42a75a409cbec2724f30c00000000000000000000006a91c5a900000000000000000000000000023dd53a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000006cd92be300f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154413980000006cd92be3000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd53a", - "digest": "0x5edb4194aa502f57a1ae5e3bf2719beb4073b4762e8aa46dc5eff109d1c6fd07", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd53a", - "digest": "0xe154584147683ac1fece54d88241b8b946946716c07cfacc4648e5c0c2801088", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd53a", - "digest": "0xe154584147683ac1fece54d88241b8b946946716c07cfacc4648e5c0c2801088", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "467500000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000007e0000000015441398000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000100000000000000010000006cd92be3000000000015441398000000006a91c531", - "digest": "0x06dd32e3b5136cc6b0ee9889fd0bf5cedc257b82ade0be0b2d1e3fe990033789", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000007e000000001544139800000000000000010000000000000001", - "digest": "0xfe42e22a588af80b859130e136ce4a06c020a01e65452c72928b89aaf25127b9", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099862", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126575", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "237", - "totalGas": "136196", - "transactionId": "0xa7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6274b858d75390004e91617ff2d555425112985df90eef2e1d0b88847d27f8f19cd72525f7a3fe47c5d5b969ca70bbdf0c27a8f38ae8f6a3e06160294a38da66" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168237", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0002c", - "utxoId": "0x8bbe01a1bb8592d5a3330bfeed0ac791beb0233008fde47d26fcc730fa0c9c050000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xed1f2705680c37d0e334dc8ad4d77da2abd60aadc782d3b46b912668690a0cf6", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x8f6821fbb9b770fcef663109d4ebe7580f98fc7a37bbdfdcd8d134359d42fea9", - "txPointer": "03bd1aa5007e", - "utxoId": "0xa7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a40002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5007e", - "utxoId": "0xa7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb31f94041a274076ff926d7aed759e2ef253bf61adfeea1d5fe1348cd873c90d", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0xd358095f7ea573ae244086773a72a91c3973266395dbaa76c5865e9d4a02ab60", - "txPointer": "03bd1aa5007e", - "utxoId": "0xa7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a40003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167999", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb1a176f01db4556f16b792c582782527606f0ac0357b4b2d3fffa06c89bbc556", - "inputIndex": "1", - "stateRoot": "0x42629fdedc5e3f20d3b825e0909b003709ac327342c8e9d2d7f0111b51c2c845" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcdee3ed3cfff1b80aa4828067281ecca7c8e0459330e7189e68d2b2103a10b5f", - "inputIndex": "3", - "stateRoot": "0xae2d8d937b670b141837c5a7ee6d068dc0df90471761d805f21d67a1c406192d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808bb54b6721ffbef0acc08f4f61e58a2d77a2fde83e857ecad6cccd5394e0a7cb00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ff79460438e1217e9354da71a969ece649566862d6fe6e066b9ad5dd21778b716d4ac8a87eb633e550f9046ce84e86d7e6f1a101a3e85b2bcf66b62064cef52200000000000000000000006a91c5a900000000000000000000000000023dd53b0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000028d8a45eec06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000153be1f00000072a84eac800000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000008bbe01a1bb8592d5a3330bfeed0ac791beb0233008fde47d26fcc730fa0c9c050000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002912df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002c00000000000000000000000000000000000000000000000000000000000000000000000000000001a7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a40000000000000002ed1f2705680c37d0e334dc8ad4d77da2abd60aadc782d3b46b912668690a0cf68f6821fbb9b770fcef663109d4ebe7580f98fc7a37bbdfdcd8d134359d42fea90000000003bd1aa5000000000000007eba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000001a7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a40000000000000001b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a7aee50ad0b26332e6e4d23569d3d1b9bd4aed901a5ff9b499e32137173122a40000000000000003b31f94041a274076ff926d7aed759e2ef253bf61adfeea1d5fe1348cd873c90dd358095f7ea573ae244086773a72a91c3973266395dbaa76c5865e9d4a02ab600000000003bd1aa5000000000000007ee2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002903ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001b1a176f01db4556f16b792c582782527606f0ac0357b4b2d3fffa06c89bbc55642629fdedc5e3f20d3b825e0909b003709ac327342c8e9d2d7f0111b51c2c845000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003cdee3ed3cfff1b80aa4828067281ecca7c8e0459330e7189e68d2b2103a10b5fae2d8d937b670b141837c5a7ee6d068dc0df90471761d805f21d67a1c406192d0000000000000040ad585db9cdda25cc68e04469976bcf8ab1a0a57f47a08500a0db66f72734afc857108f03a137ebcb19825d5239267cdbd3150d202465b21ad40ba57e38a97411", - "receiptsRoot": "0x8bb54b6721ffbef0acc08f4f61e58a2d77a2fde83e857ecad6cccd5394e0a7cb", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ff79460438e1217e9354da71a969ece649566862d6fe6e066b9ad5dd21778b716d4ac8a87eb633e550f9046ce84e86d7e6f1a101a3e85b2bcf66b62064cef52200000000000000000000006a91c5a900000000000000000000000000023dd53b0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000028d8a45eec06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000153be1f00000072a84eac8000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd53b", - "digest": "0xd6f763f1743674040ce8a7b4025df73b85bb9a74b33792293effcc070889c587", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd53b", - "digest": "0xeecff8a4982dd850db988760a53a7ed5ef85037dfd0fafa56d7e947b13c1cabc", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd53b", - "digest": "0xeecff8a4982dd850db988760a53a7ed5ef85037dfd0fafa56d7e947b13c1cabc", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2806933483200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004600000000153be1f0000000000000000000000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000000000000000000010000072a84eac80000000000153be1f0000000006a91c531", - "digest": "0xa86e49024dec4e965bff325c7a47448e3b3c0ffd7e6d88bb89a518717309e0e5", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004600000000153be1f000000000000000000000000000000001", - "digest": "0x6ae2f3f8d49d4ab0ddc391239d214b7754cfc383d93d5490cad2051d13ac03ce", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099926", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127022", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136643", - "transactionId": "0x994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xad585db9cdda25cc68e04469976bcf8ab1a0a57f47a08500a0db66f72734afc857108f03a137ebcb19825d5239267cdbd3150d202465b21ad40ba57e38a97411" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0b0a0962869be7f1483c7c428da50ab70d95704f8def66f4f48a79ca674aea3e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "424785", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0002d", - "utxoId": "0xc1fa483273d6d7c20ebb6fb29adbfda7e28b697b718c8d24cbbe4f2bacc614eb0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5007f", - "utxoId": "0x994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x63a32961d21d3c1dc56da273fbb0adc01dddad0352c582fc5934bc9061545172", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x8566fca17198c2079996ae88dc80d39107fedb3dc93b7d82e7baa2a9c5ee32ee", - "txPointer": "03bd1aa5007f", - "utxoId": "0x994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x644b277931bcbe8bf3ed46234cfb4c4826aaecd6270af6bdbb3d8fc9af347904", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x0c8ae52f79c08c949adb95fc0486c8f039c90419af6f039b4a7789c936482013", - "txPointer": "03bd1aa5007f", - "utxoId": "0x994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "424550", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbb93a435e0a42fa196d7f9a718c5d9fd2e5891df5ca11e057afeb76004980238", - "inputIndex": "2", - "stateRoot": "0x76533c090e61dd7bead77d9c0c19376c2cf3169b679a69f39e3538572a9bacf4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x23bd31c48e2a1ddbf879ee27c5f17d34c1f735a09385be1388c5c0b546d7a038", - "inputIndex": "3", - "stateRoot": "0x976537e06dc18df123c4539fcf31b84a2a91a264241dfe4e24c69cdafd4fda67" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480355bb94cf3a1a0b4be7b438bc961e7bd5edeb3823841bb3824d53d1e652ae53200000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005a22395b341f03a6fcd0698337a0c24108c1cdb0990cf484ba98a26f7743a7feb31bbfeb06fd128373ddac3b324795ef880602cd82bf76da80dba34c7481ab6b00000000000000000000006a91c5a900000000000000000000000000023dd53c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000004b120710400f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154626d8000004b120710400000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000c1fa483273d6d7c20ebb6fb29adbfda7e28b697b718c8d24cbbe4f2bacc614eb0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000067b51f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002d00000000000000000000000000000000000000000000000000000000000000000000000000000001994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e0000000000000002b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000007f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e000000000000000363a32961d21d3c1dc56da273fbb0adc01dddad0352c582fc5934bc90615451728566fca17198c2079996ae88dc80d39107fedb3dc93b7d82e7baa2a9c5ee32ee0000000003bd1aa5000000000000007fe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001994d7c445ef7f54bb87a60b4672050d2de582a63d828385a1050eb386777700e0000000000000001644b277931bcbe8bf3ed46234cfb4c4826aaecd6270af6bdbb3d8fc9af3479040c8ae52f79c08c949adb95fc0486c8f039c90419af6f039b4a7789c9364820130000000003bd1aa5000000000000007fba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000067a66f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002bb93a435e0a42fa196d7f9a718c5d9fd2e5891df5ca11e057afeb7600498023876533c090e61dd7bead77d9c0c19376c2cf3169b679a69f39e3538572a9bacf40000000000000001000000000000000323bd31c48e2a1ddbf879ee27c5f17d34c1f735a09385be1388c5c0b546d7a038976537e06dc18df123c4539fcf31b84a2a91a264241dfe4e24c69cdafd4fda670000000000000040b9f562413203835fa46568154ae76d82a5b11bb0f674cdfcb4f2507c8a9c6d78b2397f3a195348b8b38770a6548a5c980265dfc10c0e5a51cd48b4d28afbacf4", - "receiptsRoot": "0x355bb94cf3a1a0b4be7b438bc961e7bd5edeb3823841bb3824d53d1e652ae532", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005a22395b341f03a6fcd0698337a0c24108c1cdb0990cf484ba98a26f7743a7feb31bbfeb06fd128373ddac3b324795ef880602cd82bf76da80dba34c7481ab6b00000000000000000000006a91c5a900000000000000000000000000023dd53c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000004b120710400f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff0000000000000001000000000000001800000000154626d8000004b1207104000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023dd53c", - "digest": "0x61efbdc6ad7919297723f96866b5500246494c84ad1b4d19895728d6596398b9", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd53c", - "digest": "0xe4b3d88fb28e0b397214b8fd8ce5695017b96ec92d322dc2016769d18bc03d81", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5a900000000000000000000000000023dd53c", - "digest": "0xe4b3d88fb28e0b397214b8fd8ce5695017b96ec92d322dc2016769d18bc03d81", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5158800000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002800000000154626d8000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000010000000000000001000004b12071040000000000154626d8000000006a91c531", - "digest": "0xa336b43d1e81667d4f733d62521e7c5b4c634ee467cb3bce7932eecba5c0ec81", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002800000000154626d800000000000000010000000000000001", - "digest": "0xca77a675dd516f9cea1997b21b1e1a979ff1e5ec8335f3ac263cb298dbddfb0d", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100054", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125218", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "235", - "totalGas": "134839", - "transactionId": "0x0b0a0962869be7f1483c7c428da50ab70d95704f8def66f4f48a79ca674aea3e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb9f562413203835fa46568154ae76d82a5b11bb0f674cdfcb4f2507c8a9c6d78b2397f3a195348b8b38770a6548a5c980265dfc10c0e5a51cd48b4d28afbacf4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x9d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a2", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "165454", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0002f", - "utxoId": "0xde484784e689b9ff7685d2e893a39db40d7748055610268888d3dbc317875a8a0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x089ee0c1738ecbecff05173855e5e55444482c615acba9331c37ec71c6c98789", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xa0b5a9c313d8ab684f31cb09ac67e0e5b4db4f2a8d58faa316dd5fe06e701b41", - "txPointer": "03bd1aa50070", - "utxoId": "0xf75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab7340002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7449c67777abf75509385c8e14440f2774f2d0024bcd14baf8fad8f39c12761e", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xcf52e3bffe1ac36b1fa1798b12e7c561c9a71b37c49845b11bf52846ca4d0ec3", - "txPointer": "03bd1aa50070", - "utxoId": "0xf75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab7340003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50080", - "utxoId": "0x0b0a0962869be7f1483c7c428da50ab70d95704f8def66f4f48a79ca674aea3e0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "165205", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x86a77bcb5f2cf7c960ad6ddcd5741d136e616361097880da1f260684490add3e", - "inputIndex": "1", - "stateRoot": "0x2532920d68d014e34379fec52a8b13077502270169c09a7968ef2570e4f19496" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa3d641b25ae031f358112c9234393e452fc9ff1aa3107bb9ce5509e29be65ef5", - "inputIndex": "2", - "stateRoot": "0x2ce5983d31a0fbb8bc2e60247f7feedb4f6dd1b47fafec07a5d54aea12d62ba7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d27de29abe88bba23715b99e4bc0c33587f0442375a70bbdeb6057f4fc4d3cfa00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cd4c271c6c95adee53444c23b7e3ed1ebf13be9d18c82c3d921daa47fbd91170a4e4a0a8d7215fc29ab2c6535d1db4d1369d426a1072a85b84ef70cd106f529e00000000000000000000006a91c5a900000000000000000000000000023a365500000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f726465720000005f6d99d5b46c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d4da74000002428c016a00000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000de484784e689b9ff7685d2e893a39db40d7748055610268888d3dbc317875a8a0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002864ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002f00000000000000000000000000000000000000000000000000000000000000000000000000000001f75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab7340000000000000002089ee0c1738ecbecff05173855e5e55444482c615acba9331c37ec71c6c98789a0b5a9c313d8ab684f31cb09ac67e0e5b4db4f2a8d58faa316dd5fe06e701b410000000003bd1aa50000000000000070ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001f75ab0d229c6acb28c2374f31795e1cb367f201b894a2f9a81a15c0f4a9ab73400000000000000037449c67777abf75509385c8e14440f2774f2d0024bcd14baf8fad8f39c12761ecf52e3bffe1ac36b1fa1798b12e7c561c9a71b37c49845b11bf52846ca4d0ec30000000003bd1aa500000000000000700a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000010b0a0962869be7f1483c7c428da50ab70d95704f8def66f4f48a79ca674aea3e0000000000000001b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028555f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000186a77bcb5f2cf7c960ad6ddcd5741d136e616361097880da1f260684490add3e2532920d68d014e34379fec52a8b13077502270169c09a7968ef2570e4f1949600000000000000010000000000000002a3d641b25ae031f358112c9234393e452fc9ff1aa3107bb9ce5509e29be65ef52ce5983d31a0fbb8bc2e60247f7feedb4f6dd1b47fafec07a5d54aea12d62ba7000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409658cae5f46e00a7555f92d8ca2199492d71a2325f58b1eb6747449e6d58a98fae09abf358b4aab6125dda2b8ed8e9133aafbd69cc82d934a995bc34eaa70d9c", - "receiptsRoot": "0xd27de29abe88bba23715b99e4bc0c33587f0442375a70bbdeb6057f4fc4d3cfa", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cd4c271c6c95adee53444c23b7e3ed1ebf13be9d18c82c3d921daa47fbd91170a4e4a0a8d7215fc29ab2c6535d1db4d1369d426a1072a85b84ef70cd106f529e00000000000000000000006a91c5a900000000000000000000000000023a365500000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f726465720000005f6d99d5b46c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d4da74000002428c016a000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3655", - "digest": "0xb77be109afd048ad793b8dd63b57943fd8aef4b412736b26ea056e61ff0cc5a5", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3655", - "digest": "0xcd821c948669ef091088e1a34245c8d404a2f2d92d1ee3384661da4aef1a9fb8", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3655", - "digest": "0xcd821c948669ef091088e1a34245c8d404a2f2d92d1ee3384661da4aef1a9fb8", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "409860691380", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e0000000009d4da74000000000000000000000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000001000002428c016a000000000009d4da74000000006a91c531", - "digest": "0x9539683dcb1f5d7efc393e131288997eb6b3e8f6ce759737c2a2076b3a9b986e", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e0000000009d4da7400000000000000000000000000000001", - "digest": "0x8ac37dd21c76a8874b7f552bed96585aceb421a6fb27deba77218e5d44561e92", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099206", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133265", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "142886", - "transactionId": "0x9d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a2" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9658cae5f46e00a7555f92d8ca2199492d71a2325f58b1eb6747449e6d58a98fae09abf358b4aab6125dda2b8ed8e9133aafbd69cc82d934a995bc34eaa70d9c" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x9d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a9556454", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "412650", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00030", - "utxoId": "0x1ccf0955341d3307879011339227aab2a00838d9185225fd9ccfef03400087af0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50081", - "utxoId": "0x9d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a20003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7fa2a9f231f3514b7ab037d0c160b107e190e50607a99b9ed76436841b7d412a", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xdff4437306bea98207b2c5c031dc20ab8c8fd54eead65d91109d5aa75c40461b", - "txPointer": "03bd1aa50081", - "utxoId": "0x9d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a20002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7d0e3f31b16d8d2c05d187d719ab3980fe71d101b130d852a838a6dccbae43fd", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xe3beb3200b3fff7378b6f11ed3cb0106b07263f6cba444fda8f59e32ab25b02e", - "txPointer": "03bd1aa50081", - "utxoId": "0x9d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a20001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "412403", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x47a5942661e98fe5183c1d8fbcc10deb33dd0abbd2dd559459e9a4c3082fdf84", - "inputIndex": "2", - "stateRoot": "0xbab4e45a4fc9db2ab193c17d661f4870ec225e1830542882e924529c0f7fe6d8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x72df05fd064efd53ba7e3a57d67dc2034f593c0b7de2d1dd769d6b32fd2d27d6", - "inputIndex": "3", - "stateRoot": "0x62e29ac2b9f18d1f24e2f071990ed711d458e145add24b6e63edb50eb6378da2" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848023c9b7a8cfe9a2379f016b38e11053eaf7f5b164e566b5d0d58c85bea093c6d000000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f478da70b6c1499d7a39bcfc8b0b08fdb1c64f8916d3f9774f5456ecc4428227d432fc5789fae8d28eb303a1697625f96d4a0b9c5c6da83fde03b5ed74589fc500000000000000000000006a91c5a900000000000000000000000000023a365600000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f726465720000034e3c0fc980dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009da083c0000034e3c0fc980000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000001ccf0955341d3307879011339227aab2a00838d9185225fd9ccfef03400087af0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000064beaf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000019d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a20000000000000003b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000019d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a200000000000000027fa2a9f231f3514b7ab037d0c160b107e190e50607a99b9ed76436841b7d412adff4437306bea98207b2c5c031dc20ab8c8fd54eead65d91109d5aa75c40461b0000000003bd1aa500000000000000810a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000019d7019620b255cbea71116e46bb27c966548275c290ffbae0cd5e890bcaf55a200000000000000017d0e3f31b16d8d2c05d187d719ab3980fe71d101b130d852a838a6dccbae43fde3beb3200b3fff7378b6f11ed3cb0106b07263f6cba444fda8f59e32ab25b02e0000000003bd1aa50000000000000081ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000064af3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000247a5942661e98fe5183c1d8fbcc10deb33dd0abbd2dd559459e9a4c3082fdf84bab4e45a4fc9db2ab193c17d661f4870ec225e1830542882e924529c0f7fe6d80000000000000001000000000000000372df05fd064efd53ba7e3a57d67dc2034f593c0b7de2d1dd769d6b32fd2d27d662e29ac2b9f18d1f24e2f071990ed711d458e145add24b6e63edb50eb6378da20000000000000040ae2909eadf1f49024b0a5683dd6986155384f19c640179476915a22de00e4f0d95f7c10c426e00226c675d17282b12d5f2d14d5cf2e2d5bf43892fc65ed6812d", - "receiptsRoot": "0x23c9b7a8cfe9a2379f016b38e11053eaf7f5b164e566b5d0d58c85bea093c6d0", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f478da70b6c1499d7a39bcfc8b0b08fdb1c64f8916d3f9774f5456ecc4428227d432fc5789fae8d28eb303a1697625f96d4a0b9c5c6da83fde03b5ed74589fc500000000000000000000006a91c5a900000000000000000000000000023a365600000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f726465720000034e3c0fc980dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009da083c0000034e3c0fc9800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3656", - "digest": "0x54a35d22725f8fd50642180d4b858204567dbb992bb888b7f6462c7cce364e5f", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3656", - "digest": "0x8ffb762805106169231be4ad90340a878d14aa78139726f2075aee640387aaad", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3656", - "digest": "0x8ffb762805106169231be4ad90340a878d14aa78139726f2075aee640387aaad", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3634550000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000c0000000009da083c000000000000000100000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da000000000000000100000000000000010000034e3c0fc9800000000009da083c000000006a91c531", - "digest": "0x2b7df7c95d20e0a091e4614315af90e60df5c9d1da10acc6281a5051098c7630", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000c0000000009da083c00000000000000010000000000000001", - "digest": "0xed126268a4432046bf1225768abd35ad3f6cb5ac7fecdd42f7678b02530970d6", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099462", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131920", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141541", - "transactionId": "0x9d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a9556454" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xae2909eadf1f49024b0a5683dd6986155384f19c640179476915a22de00e4f0d95f7c10c426e00226c675d17282b12d5f2d14d5cf2e2d5bf43892fc65ed6812d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x580be37926f8de9f33334b1c2ca7a853f22bf312e1a65580bb61ff6305a48084", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168787", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0002e", - "utxoId": "0x3745ca4ea998fe2b46f0b2b22decb59d6dac92192bdc4bd4fa7fb901fd034f830000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa3d641b25ae031f358112c9234393e452fc9ff1aa3107bb9ce5509e29be65ef5", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x3c877c2271861815bd33077cad3b47fd518760b86cb060ba11ceaabb463e2ff1", - "txPointer": "03bd1aa50082", - "utxoId": "0x9d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a95564540002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50082", - "utxoId": "0x9d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a95564540001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x86a77bcb5f2cf7c960ad6ddcd5741d136e616361097880da1f260684490add3e", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x2d460fcbc7e17403eebc7dc3746e494752a1e5efdbc51bb3b03eede4dcb96dd5", - "txPointer": "03bd1aa50082", - "utxoId": "0x9d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a95564540003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "168540", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6e1ef6ac0017646f5945ee3746e445a2e0d6de47a42697b512d0fd9e0a4944b0", - "inputIndex": "1", - "stateRoot": "0xa1d74e275e44c971d0573b568afebfcab4c3ee3cb64193901fcce89a171e943f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa232d55532d3fc91548fe1cd907ef0e64495aae72d4430584bc0a0624ec8d731", - "inputIndex": "3", - "stateRoot": "0xe78cfc8704e6b722bf130fc9c0f736aa0848e1469ba347265c15611fbc74dbc0" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480981d7a5bf5b211cb5d19bc823c54a7e5ad353da1e8e24a5abf003d77ef14e58a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007ce0a34d42eaa6f7b451e1490a1fd8825297889beda917e9ad3923f0d48d1134c554dbc40bb43ca28df2d76a651b2fac830de8b4b9d3abf61176c58d220a6a1f00000000000000000000006a91c5a900000000000000000000000000023a365400000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f726465720000012dca550d406c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d3ca30000007266be01800000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000003745ca4ea998fe2b46f0b2b22decb59d6dac92192bdc4bd4fa7fb901fd034f830000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029353f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000019d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a95564540000000000000002a3d641b25ae031f358112c9234393e452fc9ff1aa3107bb9ce5509e29be65ef53c877c2271861815bd33077cad3b47fd518760b86cb060ba11ceaabb463e2ff10000000003bd1aa500000000000000820a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000019d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a95564540000000000000001b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000019d61839ba61fd33b63028a7fde27ef1e2b194ed4a70d7b69e28ad660a9556454000000000000000386a77bcb5f2cf7c960ad6ddcd5741d136e616361097880da1f260684490add3e2d460fcbc7e17403eebc7dc3746e494752a1e5efdbc51bb3b03eede4dcb96dd50000000003bd1aa50000000000000082ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002925cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016e1ef6ac0017646f5945ee3746e445a2e0d6de47a42697b512d0fd9e0a4944b0a1d74e275e44c971d0573b568afebfcab4c3ee3cb64193901fcce89a171e943f000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003a232d55532d3fc91548fe1cd907ef0e64495aae72d4430584bc0a0624ec8d731e78cfc8704e6b722bf130fc9c0f736aa0848e1469ba347265c15611fbc74dbc000000000000000403ea0287c4fd2f7a06b13ef77d3f260fc13b404f16a62f22dc95b066f9fc44166b49c6eb66a3c912b182716401106c6aedee0684a1eca2f22c054a4a2d173f1fc", - "receiptsRoot": "0x981d7a5bf5b211cb5d19bc823c54a7e5ad353da1e8e24a5abf003d77ef14e58a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007ce0a34d42eaa6f7b451e1490a1fd8825297889beda917e9ad3923f0d48d1134c554dbc40bb43ca28df2d76a651b2fac830de8b4b9d3abf61176c58d220a6a1f00000000000000000000006a91c5a900000000000000000000000000023a365400000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f726465720000012dca550d406c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d3ca30000007266be018000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000023a3654", - "digest": "0xac2da8b0e19a21771be70b98f3c1637ac1ebbf3d8bdb4c195c596aea14dc7639", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3654", - "digest": "0x50e156888bfb597ad3d0bdf7c1a7ff9760ba4c8f54d3e261de5153acde91c67b", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5a900000000000000000000000000023a3654", - "digest": "0x50e156888bfb597ad3d0bdf7c1a7ff9760ba4c8f54d3e261de5153acde91c67b", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1296179727680", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000080000000009d3ca30000000000000000000000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000001000007266be018000000000009d3ca30000000006a91c531", - "digest": "0x95deca8f744fec3aab43a1f5d5100556e9d73894e015fb29ef83800e4a5d41ff", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000080000000009d3ca3000000000000000000000000000000001", - "digest": "0x657314c31e8e1e053277b6d14f912f74a450fa45133daa49966454cab6da3555", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099398", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131909", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141530", - "transactionId": "0x580be37926f8de9f33334b1c2ca7a853f22bf312e1a65580bb61ff6305a48084" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3ea0287c4fd2f7a06b13ef77d3f260fc13b404f16a62f22dc95b066f9fc44166b49c6eb66a3c912b182716401106c6aedee0684a1eca2f22c054a4a2d173f1fc" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x04bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "561265", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00032", - "utxoId": "0xa895d09dd431dcc73e2f03a6f30ffeb56248569f405925632ce202b5628200870000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50083", - "utxoId": "0x580be37926f8de9f33334b1c2ca7a853f22bf312e1a65580bb61ff6305a480840002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x14d65a919a55342ebbd4ba7fcfaae7093f3152bcc902e4e0131b3c358b5b3a7e", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x5edc38ad79e36782f682e0551ca3913b245e897349a48756126b45dd1a88beeb", - "txPointer": "03bd1aa50063", - "utxoId": "0x1c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8818be5af868860bff9a3ed2b15593df5c35ad3928aa43f95a733d8ee663eb50", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x745b6d4f814b8d83b45173bca6c19d17d89beb74946e41eff424ad67a843f24a", - "txPointer": "03bd1aa50063", - "utxoId": "0x1c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "561034", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x22a8e3d1d46105ab5f61cc62cb145e20589dfac8ea2f25d996e7bbe19f227c25", - "inputIndex": "2", - "stateRoot": "0x0601ddc10090c58aed989e82ffae2ba9d997ce4b8efc899df542ac32065c3ae5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x14e593bb9b014e10b714e2a8072898ddfe580a48ab1a2623f132e2fdde396f94", - "inputIndex": "3", - "stateRoot": "0x5558bcc049587ea25165f44d2155f6685f92e9f6a7b7e6bae5352f9f975a254d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808c4ea65120cf503e9cf431a051eab0cd4de9aea96a0a347457ddb698a353de150000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e0424a477cebc3a0545c1d76b587987830076c6691a0ad328698e55e9eab1676b260402f7469020e7b8f163ddbe2c1870ac618ad29528ee05c5e81d3d9c6d71800000000000000000000006a91c5a9000000000000000000000000000313566d00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000150000001c94a18e60000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000a895d09dd431dcc73e2f03a6f30ffeb56248569f405925632ce202b5628200870000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000089071f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003200000000000000000000000000000000000000000000000000000000000000000000000000000001580be37926f8de9f33334b1c2ca7a853f22bf312e1a65580bb61ff6305a480840000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000011c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d000000000000000214d65a919a55342ebbd4ba7fcfaae7093f3152bcc902e4e0131b3c358b5b3a7e5edc38ad79e36782f682e0551ca3913b245e897349a48756126b45dd1a88beeb0000000003bd1aa500000000000000638d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000011c18cd3cbb3f979ef5a0da5796a3835c60f2eb0c1140acbf81b75ef95f11704d00000000000000018818be5af868860bff9a3ed2b15593df5c35ad3928aa43f95a733d8ee663eb50745b6d4f814b8d83b45173bca6c19d17d89beb74946e41eff424ad67a843f24a0000000003bd1aa50000000000000063c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000088f8af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000222a8e3d1d46105ab5f61cc62cb145e20589dfac8ea2f25d996e7bbe19f227c250601ddc10090c58aed989e82ffae2ba9d997ce4b8efc899df542ac32065c3ae50000000000000001000000000000000314e593bb9b014e10b714e2a8072898ddfe580a48ab1a2623f132e2fdde396f945558bcc049587ea25165f44d2155f6685f92e9f6a7b7e6bae5352f9f975a254d0000000000000040d451d6c7073b63264f277165439a8b74fb53a0d91cce350afc89c5ca7d25f480262979c76b5cf93b099b843918a498ac90a29c1f401103c9bcd95ea320324fac", - "receiptsRoot": "0x8c4ea65120cf503e9cf431a051eab0cd4de9aea96a0a347457ddb698a353de15", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e0424a477cebc3a0545c1d76b587987830076c6691a0ad328698e55e9eab1676b260402f7469020e7b8f163ddbe2c1870ac618ad29528ee05c5e81d3d9c6d71800000000000000000000006a91c5a9000000000000000000000000000313566d00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000150000001c94a18e60000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000313566d", - "digest": "0xcbbe7dfc9246843171878dcedf82c88027d906172d2d481bf0b05ee773c767dd", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566d", - "digest": "0xa3936879106fa65749836ff8e9e7f235e0cfdca65e1164a3a4510bdd1d45865d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1099127675800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000150000001c94a18e6000000000000000000000000000000001000000006a91c531", - "digest": "0xe20fbe8414e410161a03308373aef80a8fff498cbabae9d84881e215ef4e0545", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101370", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100745", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566d", - "digest": "0xa3936879106fa65749836ff8e9e7f235e0cfdca65e1164a3a4510bdd1d45865d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100517", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1885268", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100045", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123168", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "231", - "totalGas": "132800", - "transactionId": "0x04bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd451d6c7073b63264f277165439a8b74fb53a0d91cce350afc89c5ca7d25f480262979c76b5cf93b099b843918a498ac90a29c1f401103c9bcd95ea320324fac" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xeabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151177", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00034", - "utxoId": "0xa0d7e9b1f13e28b1c93dbc4cd469c5374fe62dfba50c2fc06375fca6efb3e1b80000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50084", - "utxoId": "0x04bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x75dc1d1bf8f29fa272edf3d8d170b43760071d8e3bbc28829dc86b1651b78939", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xafaaa2bb43782655ddff654fcdb468f7b270f386888e07fd80b08995d4eb8a93", - "txPointer": "03bd1aa50084", - "utxoId": "0x04bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xad35d658abaac0fd093e18091732e6fa28bee3fe10b7a46009f756c550932f80", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x7a887b07bd8bf68c500fc8a04e6fdf22bad7f01820b229fe95e5ac91775e0249", - "txPointer": "03bd1aa50084", - "utxoId": "0x04bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "150932", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x34166b99f183818db8e604c26d97894a4240bcbf3163c700632b2f1878da10f2", - "inputIndex": "2", - "stateRoot": "0x491737880f441087a51de8694270e184f99544fe2cc3ecc210ccd786af779c58" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc914c02f6bf652d8067150770995e79d0172b8d291733bbd77b47eb7f5e2ba09", - "inputIndex": "3", - "stateRoot": "0x33144d040c35bad91c86525b633923078df3965fa40dffbe4eddeb389ce3b5f6" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480a4efc09de6bab4078fa65995a0c28a1ef77d887c9b4e9d70f316d41c4b6eae000000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000029407f99f5f28e25d11573ee6208df90f3953c7df5cc8ee746d3dcaf5e994795bd789a03f08d46cfa4f4159717c4cc06f2f2880aacaa4683edc276fe53a6b49a00000000000000000000006a91c5a9000000000000000000000000000313566f00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000180000001c9fb19660000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000a0d7e9b1f13e28b1c93dbc4cd469c5374fe62dfba50c2fc06375fca6efb3e1b80000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024e89f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000340000000000000000000000000000000000000000000000000000000000000000000000000000000104bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000104bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c000000000000000275dc1d1bf8f29fa272edf3d8d170b43760071d8e3bbc28829dc86b1651b78939afaaa2bb43782655ddff654fcdb468f7b270f386888e07fd80b08995d4eb8a930000000003bd1aa500000000000000848d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe000000000000000104bcc4570e580ac8948c213065404e3feb3d7f7109986b3890a3feea37261e6c0000000000000003ad35d658abaac0fd093e18091732e6fa28bee3fe10b7a46009f756c550932f807a887b07bd8bf68c500fc8a04e6fdf22bad7f01820b229fe95e5ac91775e02490000000003bd1aa50000000000000084c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024d94f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000234166b99f183818db8e604c26d97894a4240bcbf3163c700632b2f1878da10f2491737880f441087a51de8694270e184f99544fe2cc3ecc210ccd786af779c5800000000000000010000000000000003c914c02f6bf652d8067150770995e79d0172b8d291733bbd77b47eb7f5e2ba0933144d040c35bad91c86525b633923078df3965fa40dffbe4eddeb389ce3b5f60000000000000040bdf7887e56f39635e581729721492d54511930ce0c3513e688aebeb65d76c31706bee839584f776e152f0b1c6461d6b6f852ef3fab8fc0006777a208f25b3bc2", - "receiptsRoot": "0xa4efc09de6bab4078fa65995a0c28a1ef77d887c9b4e9d70f316d41c4b6eae00", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000029407f99f5f28e25d11573ee6208df90f3953c7df5cc8ee746d3dcaf5e994795bd789a03f08d46cfa4f4159717c4cc06f2f2880aacaa4683edc276fe53a6b49a00000000000000000000006a91c5a9000000000000000000000000000313566f00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000180000001c9fb19660000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000313566f", - "digest": "0x660f06a42482b8715c84bfe830445b994112e3baf4b1b950629ddefc753e8ef1", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566f", - "digest": "0x8bd8c77b97b381a46859f9afa95c6bb629494bb2682d5d3d9cf0b90d40fb5135", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1335000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000180000001c9fb1966000000000000000010000000000000001000000006a91c531", - "digest": "0xacb5bbe45385fce25af756f48a0feac50828d92ff60c889db38dc9a613c2b80c", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100362", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099737", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566f", - "digest": "0x8bd8c77b97b381a46859f9afa95c6bb629494bb2682d5d3d9cf0b90d40fb5135", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099509", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877212", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131224", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "245", - "totalGas": "140856", - "transactionId": "0xeabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xbdf7887e56f39635e581729721492d54511930ce0c3513e688aebeb65d76c31706bee839584f776e152f0b1c6461d6b6f852ef3fab8fc0006777a208f25b3bc2" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x10aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168097", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00033", - "utxoId": "0xba148d1586bffad532a44a508f8ed6c8b731c57ae40cfe963b879962a24ba76b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x34166b99f183818db8e604c26d97894a4240bcbf3163c700632b2f1878da10f2", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x0b4c2793dadd0085a05a906f7ded18ac720cbdf0170129ab7be7b3fb1340cc4e", - "txPointer": "03bd1aa50085", - "utxoId": "0xeabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc914c02f6bf652d8067150770995e79d0172b8d291733bbd77b47eb7f5e2ba09", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xe359148f3fd0124bfd62781a7dccfdf47f765dd9ef8b628b240530d642175a15", - "txPointer": "03bd1aa50085", - "utxoId": "0xeabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50085", - "utxoId": "0xeabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167852", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x44d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ed", - "inputIndex": "1", - "stateRoot": "0x314fdb30ae458677cbd21631ce6a1c5297119e2530aba4bdfd05c5e438ef19fa" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2", - "inputIndex": "2", - "stateRoot": "0xb1356659e84240664a0caa1488dc2d2c2bbc90cc571b0d52d9989def5cda73b0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848021404d7923bcdb124e959e3c537cd21291ffd87e637296b29cbd567bd4bfc7ad0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000db6f8ce5f78f8faa8cab180dd4d93ddc9eccfc8bf007a5d6fd6d2eac652ce45b8ca90e3dbfa5a7872c957f004a02d639471d55c174f923197bd125a42d34cd800000000000000000000006a91c5a9000000000000000000000000000313566e00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000c0000001c9e47f440000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000ba148d1586bffad532a44a508f8ed6c8b731c57ae40cfe963b879962a24ba76b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000290a1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003300000000000000000000000000000000000000000000000000000000000000000000000000000001eabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd000000000000000234166b99f183818db8e604c26d97894a4240bcbf3163c700632b2f1878da10f20b4c2793dadd0085a05a906f7ded18ac720cbdf0170129ab7be7b3fb1340cc4e0000000003bd1aa500000000000000858d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001eabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd0000000000000003c914c02f6bf652d8067150770995e79d0172b8d291733bbd77b47eb7f5e2ba09e359148f3fd0124bfd62781a7dccfdf47f765dd9ef8b628b240530d642175a150000000003bd1aa50000000000000085c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001eabaef828c151e09c295c5a556b6194d4ef91d448a6490b6415d7dda9f9f90cd0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028facf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000144d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ed314fdb30ae458677cbd21631ce6a1c5297119e2530aba4bdfd05c5e438ef19fa000000000000000100000000000000023478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2b1356659e84240664a0caa1488dc2d2c2bbc90cc571b0d52d9989def5cda73b000000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040fb19bc95df7b9ec95bd693c0538b42ca37ce55553f196bd6b4f02a6fddc6925726596e4b64d52c3eac11b6a4b7899135bb9c4c9f6dbccc71126f52856efadf1f", - "receiptsRoot": "0x21404d7923bcdb124e959e3c537cd21291ffd87e637296b29cbd567bd4bfc7ad", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000db6f8ce5f78f8faa8cab180dd4d93ddc9eccfc8bf007a5d6fd6d2eac652ce45b8ca90e3dbfa5a7872c957f004a02d639471d55c174f923197bd125a42d34cd800000000000000000000006a91c5a9000000000000000000000000000313566e00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000c0000001c9e47f440000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000313566e", - "digest": "0x525a40cc94d55b43adfd961c8b1ed7a5ce549581c7c4ae51d0796a99442d0680", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566e", - "digest": "0x634f30d21fb5690422da562001c485a3ae100108da30b95dff365097d11fc64b", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "491000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000c0000001c9e47f44000000000000000010000000000000001000000006a91c531", - "digest": "0x88bf082b452a1abd3fc61fcc7208f8810b959ab5a09831942829c6daa1bff9ea", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100370", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099745", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566e", - "digest": "0x634f30d21fb5690422da562001c485a3ae100108da30b95dff365097d11fc64b", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099517", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877563", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099045", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130873", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "245", - "totalGas": "140505", - "transactionId": "0x10aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xfb19bc95df7b9ec95bd693c0538b42ca37ce55553f196bd6b4f02a6fddc6925726596e4b64d52c3eac11b6a4b7899135bb9c4c9f6dbccc71126f52856efadf1f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x20809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a75652", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "163020", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00031", - "utxoId": "0xb1aa29552066837b498c38381571b23fb296d18a2a67062e91ce867ca38194770000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x14e593bb9b014e10b714e2a8072898ddfe580a48ab1a2623f132e2fdde396f94", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xc766823d2a7e67f5f5e3a68165ea1ae27a16a2249d7e6a9355460d671d9a87d8", - "txPointer": "03bd1aa50086", - "utxoId": "0x10aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x22a8e3d1d46105ab5f61cc62cb145e20589dfac8ea2f25d996e7bbe19f227c25", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x7bba0f550160d248577cca7b415518a48f58cd14f4560c8d352e9bee75ed1c82", - "txPointer": "03bd1aa50086", - "utxoId": "0x10aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50086", - "utxoId": "0x10aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "162792", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x78c95413fb91927fa1e97dab68eeac9bc5d412efa6fc1cc9b85572bad6ee1a24", - "inputIndex": "1", - "stateRoot": "0x5f960bd6e9777ac27e90e8fa5a835ea0c74378931b2753bf8f144fad4f493d54" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xed7a85f1d8842d7bba6147272dfb075976d1b9b8747d3d512ee9c07719ab42c7", - "inputIndex": "2", - "stateRoot": "0x04c98644acc0b096a0759ece375880a2ba4a9a886afd84dfede14ac8407871d4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808bb5e0a0ae57cf7e4712f029b0d03477f2d5d0c416ac01ec11b440f99bed38250000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000211ca020dfcc5e4abd967f43c591d3a9764bd1c4cf67e5f8a9fdcc3b72b485f137f73b489347e1bd6299dacae8545a59e5c1a030d77dfc05d9936a8eed2b836300000000000000000000006a91c5a9000000000000000000000000000313566c00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000140000001c94fa0ea0000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa90000000000000000b1aa29552066837b498c38381571b23fb296d18a2a67062e91ce867ca38194770000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027cccf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000310000000000000000000000000000000000000000000000000000000000000000000000000000000110aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d000000000000000214e593bb9b014e10b714e2a8072898ddfe580a48ab1a2623f132e2fdde396f94c766823d2a7e67f5f5e3a68165ea1ae27a16a2249d7e6a9355460d671d9a87d80000000003bd1aa50000000000000086c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000110aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d000000000000000122a8e3d1d46105ab5f61cc62cb145e20589dfac8ea2f25d996e7bbe19f227c257bba0f550160d248577cca7b415518a48f58cd14f4560c8d352e9bee75ed1c820000000003bd1aa500000000000000868d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe000000000000000110aaa0ee29e329a0080f31723837fd6844195955f4e3f4caa0a27d8e62eb431d0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027be8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000178c95413fb91927fa1e97dab68eeac9bc5d412efa6fc1cc9b85572bad6ee1a245f960bd6e9777ac27e90e8fa5a835ea0c74378931b2753bf8f144fad4f493d5400000000000000010000000000000002ed7a85f1d8842d7bba6147272dfb075976d1b9b8747d3d512ee9c07719ab42c704c98644acc0b096a0759ece375880a2ba4a9a886afd84dfede14ac8407871d4000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409286f7d2b34262cf0edc7404970d9177b772afd17cea2ecdf3670e1e8e41c94bc54797fcdc842dcceb054d421a519dba5538fe0cd5adc163f41b29a0226d5894", - "receiptsRoot": "0x8bb5e0a0ae57cf7e4712f029b0d03477f2d5d0c416ac01ec11b440f99bed3825", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000211ca020dfcc5e4abd967f43c591d3a9764bd1c4cf67e5f8a9fdcc3b72b485f137f73b489347e1bd6299dacae8545a59e5c1a030d77dfc05d9936a8eed2b836300000000000000000000006a91c5a9000000000000000000000000000313566c00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000140000001c94fa0ea0000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000313566c", - "digest": "0x80a36fbc47aa5f85ded820c9f24916380724f6e87c9e0880808af677c124466d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566c", - "digest": "0x21d0e2c098c0272bddb26bb53fe06b35595ec31a8385161809ae0b43d71d97f8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1497162666000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000140000001c94fa0ea000000000000000000000000000000001000000006a91c531", - "digest": "0x62cf1b41acd5b69744d0bc28d17746fa6da70811701f920aa4b0e26c7a88d5a5", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101538", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100913", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a9000000000000000000000000000313566c", - "digest": "0x21d0e2c098c0272bddb26bb53fe06b35595ec31a8385161809ae0b43d71d97f8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100685", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1887017", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100213", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "121419", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "228", - "totalGas": "131051", - "transactionId": "0x20809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a75652" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9286f7d2b34262cf0edc7404970d9177b772afd17cea2ecdf3670e1e8e41c94bc54797fcdc842dcceb054d421a519dba5538fe0cd5adc163f41b29a0226d5894" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x25ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea4597717", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149315", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00035", - "utxoId": "0x8871ab4bbd7d0f3eae99299af6aaec448363255a84100cdd109b3ea58d70f81a0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x962bf6fff8b890801ab034642b3fe10f52fe880b26f2b03cb4c769eba4b33334", - "txPointer": "03bd1aa50087", - "utxoId": "0x20809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a756520001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x44d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4ed", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xbd102e2c98f102b72fd53454e4fa5dec1c3c39d7b20933b08645062e92003790", - "txPointer": "03bd1aa50087", - "utxoId": "0x20809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a756520002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50087", - "utxoId": "0x20809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a756520003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149061", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb35bfebbf53eabf41e1bd875d91020707e52e64bc9b26fe6d7da040e3908a57c", - "inputIndex": "1", - "stateRoot": "0x7a4338a6e11b03bbc509893e75c40136ae3dcdeb5a3305dd03c4f7dfddd68600" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x67b1a6539226d2404dd26be12c711fcc9f7b005d8d3e167ddce8285ff331368a", - "inputIndex": "2", - "stateRoot": "0xf7a717ac03d9d9a8a2be30ee592a172fb8b58b574320436a2d849a550b50bd62" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b2e1aad3ac1f6808638631dbbcc9bf13503c88711651e620eb3f093798e87cdb0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006af23791016235c8b9674cbaf022e4f54dc273ef3cc2b4f1d90f1657b6e6901bcc77d47e7abd5be3c57fe83da386ea2569989c1a3adf6e788d7718206687e23e00000000000000000000006a91c5a9000000000000000000000000000313567000000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000220000001ca1f3e540000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aa900000000000000008871ab4bbd7d0f3eae99299af6aaec448363255a84100cdd109b3ea58d70f81a0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024743f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000350000000000000000000000000000000000000000000000000000000000000000000000000000000120809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a7565200000000000000013478571bac2d30a44dfebcc9b158f56e03473c6218f555dcd0959c720ee1b3f2962bf6fff8b890801ab034642b3fe10f52fe880b26f2b03cb4c769eba4b333340000000003bd1aa50000000000000087c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000120809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a75652000000000000000244d0114bf77049436262ea70800a981d5da1aeb2452801c591080f0fe733a4edbd102e2c98f102b72fd53454e4fa5dec1c3c39d7b20933b08645062e920037900000000003bd1aa500000000000000878d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe000000000000000120809ab48786961d526aa7814f08b33f86e92a6a738cab7cafaf036604a756520000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024645f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001b35bfebbf53eabf41e1bd875d91020707e52e64bc9b26fe6d7da040e3908a57c7a4338a6e11b03bbc509893e75c40136ae3dcdeb5a3305dd03c4f7dfddd686000000000000000001000000000000000267b1a6539226d2404dd26be12c711fcc9f7b005d8d3e167ddce8285ff331368af7a717ac03d9d9a8a2be30ee592a172fb8b58b574320436a2d849a550b50bd62000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409910b03739e48d8e8d31a7812fee71f014cc292c3ca53179448c2d23cd74acf485140bb347700eafcd7cd1f6630e887fdb3f73b8dd31d67d5895df19879a896a", - "receiptsRoot": "0xb2e1aad3ac1f6808638631dbbcc9bf13503c88711651e620eb3f093798e87cdb", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006af23791016235c8b9674cbaf022e4f54dc273ef3cc2b4f1d90f1657b6e6901bcc77d47e7abd5be3c57fe83da386ea2569989c1a3adf6e788d7718206687e23e00000000000000000000006a91c5a9000000000000000000000000000313567000000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000220000001ca1f3e540000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135670", - "digest": "0xb5f8810c7d287bfedf4a59422c22134c568ec21281fcf740a35006aa06500e44", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135670", - "digest": "0xa76a3f9ff8e4f2370099d782801301fe5779f0f5eea10adeb95aa6c21bee87a1", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "1233000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000220000001ca1f3e54000000000000000010000000000000001000000006a91c531", - "digest": "0x7186a7e4c0ff273aefc1ae68f7f12a76c7e2beb449a9515dc4a579d91c3abeee", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67099938", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099313", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135670", - "digest": "0xa76a3f9ff8e4f2370099d782801301fe5779f0f5eea10adeb95aa6c21bee87a1", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099085", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1872033", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098613", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "136403", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "254", - "totalGas": "146035", - "transactionId": "0x25ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea4597717" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9910b03739e48d8e8d31a7812fee71f014cc292c3ca53179448c2d23cd74acf485140bb347700eafcd7cd1f6630e887fdb3f73b8dd31d67d5895df19879a896a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1a56492fdd3d05a6530ebd8fba22542633b559c97fa7053f9114e515614952c6", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "173275", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00036", - "utxoId": "0x41eeed8661f3ae8ce209e491e52200e54fe2560328b8a84fcea62510730cdd550000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x043b992d990f5dc33851ff89b323b63a066f4a6e3cf329b19d218132cd2b39c1", - "contractId": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "stateRoot": "0x247b5a30ab8a8e72065a96ac0fe0be6465420abf4cf0a7ec49089dce4f519e57", - "txPointer": "03bd1aa40059", - "utxoId": "0x6c89fd7fd83eb701a5a102b5343ebdfda7dfa1ee6c7a1aaf57ba6391b24ddccc0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1fee3f3d5676e479c3bf6c77f2140b2f6e78d65f0a7812951e9021ad65c78a1f", - "contractId": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "stateRoot": "0x13461925fca6ad30f6eccdeb4f7d743652a56aa967def9fe56896eb14242a03c", - "txPointer": "03bd1aa40059", - "utxoId": "0x6c89fd7fd83eb701a5a102b5343ebdfda7dfa1ee6c7a1aaf57ba6391b24ddccc0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d565", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50088", - "utxoId": "0x25ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea45977170003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "172930", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4d9ba6ae3855eba857560cdaadf72f4259fb120ac900d75fc2796bebf5d90310", - "inputIndex": "1", - "stateRoot": "0x26c568837994052637603f60ef083c40381c8def1c9135df93ab7c182250801d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb030099cf2b848bcbd762c5018380807ed6c28406f7728588083bad26c4b0e59", - "inputIndex": "2", - "stateRoot": "0x2cfecf37bf95c39b25b3d99ee76658c062eeaba39a3613bb1b89b5c0a15733d0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802340dd2ac4890f1dfde805e2feb54f66b2f3bf2c1d1bc94202f212f72d047e00000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000df1aa09c505c27bf0467257db8cca3741cc4e2acc63320c831b8ba9768ecce79b50feb15df28dd18ce97eda935d3d2e74d8033c212f63690f0d3e44bb8a6113b00000000000000000000006a91c5a9000000000000000000000000000099f05b000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000004b44000000003b97e3d00000000000000001000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f72646572000001754460dc8065e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715ffffffffffffffff00000000000000010000000000000018000000003b97e3d0000001754460dc800000000000000001000000000000006400000000000210ac0000000003bd1aa9000000000000000041eeed8661f3ae8ce209e491e52200e54fe2560328b8a84fcea62510730cdd550000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002a4dbf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000036000000000000000000000000000000000000000000000000000000000000000000000000000000016c89fd7fd83eb701a5a102b5343ebdfda7dfa1ee6c7a1aaf57ba6391b24ddccc0000000000000002043b992d990f5dc33851ff89b323b63a066f4a6e3cf329b19d218132cd2b39c1247b5a30ab8a8e72065a96ac0fe0be6465420abf4cf0a7ec49089dce4f519e570000000003bd1aa4000000000000005930963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000016c89fd7fd83eb701a5a102b5343ebdfda7dfa1ee6c7a1aaf57ba6391b24ddccc00000000000000031fee3f3d5676e479c3bf6c77f2140b2f6e78d65f0a7812951e9021ad65c78a1f13461925fca6ad30f6eccdeb4f7d743652a56aa967def9fe56896eb14242a03c0000000003bd1aa4000000000000005997c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47000000000000000125ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea459771700000000000000032f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d56500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002a382f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000014d9ba6ae3855eba857560cdaadf72f4259fb120ac900d75fc2796bebf5d9031026c568837994052637603f60ef083c40381c8def1c9135df93ab7c182250801d00000000000000010000000000000002b030099cf2b848bcbd762c5018380807ed6c28406f7728588083bad26c4b0e592cfecf37bf95c39b25b3d99ee76658c062eeaba39a3613bb1b89b5c0a15733d000000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d33377b317a243ff057719656ef432ff325b6968fc5ec9d07eb3bc2e0eaf7e22dac5d419a70962479d822a9c3feaee23b1c3cafe4fdf24eef6e62ae5ed668e8d", - "receiptsRoot": "0x2340dd2ac4890f1dfde805e2feb54f66b2f3bf2c1d1bc94202f212f72d047e00", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000df1aa09c505c27bf0467257db8cca3741cc4e2acc63320c831b8ba9768ecce79b50feb15df28dd18ce97eda935d3d2e74d8033c212f63690f0d3e44bb8a6113b00000000000000000000006a91c5a9000000000000000000000000000099f05b000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000004b44000000003b97e3d00000000000000001000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f72646572000001754460dc8065e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715ffffffffffffffff00000000000000010000000000000018000000003b97e3d0000001754460dc800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a9000000000000000000000000000099f05b", - "digest": "0xd180e849d1f091fd0ecaa82c565a517872dce828e9c8f90f36afcfebb201fd8d", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5a9000000000000000000000000000099f05b", - "digest": "0xe9000674fa36f883b319419ab9eb4f41222c07f2f7cb39fc15110d11fe9b2fba", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": "2754590000000", - "assetId": "0x65e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000004b44000000003b97e3d000000000000000010000000000000001000000006a91c531", - "digest": "0x0888a516631ed457e3092662b2026bc55d1443c3cd3273d904141e5d50d457c2", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100986", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100361", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5a9000000000000000000000000000099f05b", - "digest": "0xe9000674fa36f883b319419ab9eb4f41222c07f2f7cb39fc15110d11fe9b2fba", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100133", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884867", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000000000000000000000", - "digest": "0x067440636507a74b9e44f0abaf93b128c83ad6fdf343241b0720ac7f19169826", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099661", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5a9000000000000000000000000000099f05b", - "digest": "0xe9000674fa36f883b319419ab9eb4f41222c07f2f7cb39fc15110d11fe9b2fba", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099433", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1603170000000", - "assetId": "0x65e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873462", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000004b45000000003b97e3d000000000000000010000000000000001000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000010000000000000001000001754460dc80000000003b97e3d0000000006a91c531", - "digest": "0x813bb93597c45307836d3a682019173cec0f43a253f169150674e274e0531027", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67098041", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000004b45000000003b97e3d000000000000000010000000000000001", - "digest": "0xebb7f15ff5fce89649b32661d54ed201817e4ab86cf1c52563d8f12586f4f47e", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67094697", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "188151", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "345", - "totalGas": "197979", - "transactionId": "0x1a56492fdd3d05a6530ebd8fba22542633b559c97fa7053f9114e515614952c6" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd33377b317a243ff057719656ef432ff325b6968fc5ec9d07eb3bc2e0eaf7e22dac5d419a70962479d822a9c3feaee23b1c3cafe4fdf24eef6e62ae5ed668e8d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "1728796", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00038", - "utxoId": "0xf5a9ac9b5be24e1a76ed465f2af54b3c7dbe5e81b85c96e4ccdc8e420f0dd35d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xed7a85f1d8842d7bba6147272dfb075976d1b9b8747d3d512ee9c07719ab42c7", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xa335f276056412b58548fae250ef7fac6969374dcd28f60f9752a8f5d70b0767", - "txPointer": "03bd1aa50088", - "utxoId": "0x25ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea45977170002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x78c95413fb91927fa1e97dab68eeac9bc5d412efa6fc1cc9b85572bad6ee1a24", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x96e53243ebd652136f00e1e35baab2112230055c5c6c5ba5f67f3e90ac085c7f", - "txPointer": "03bd1aa50088", - "utxoId": "0x25ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea45977170001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50089", - "utxoId": "0x1a56492fdd3d05a6530ebd8fba22542633b559c97fa7053f9114e515614952c60003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "1728558", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2a4954137c20d47865d818ed5f82684b4d1eaa80ab4025c3446eee735efebb8c", - "inputIndex": "1", - "stateRoot": "0x83eee49d7623fc002777ee7ae1f2e6298a31e0ac86ed4a8444727fbde3cefa47" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0da8ca4d8e983b19c77d3ca2fc2d49d303364b66495ed46f5c0815e4dfc28e90", - "inputIndex": "2", - "stateRoot": "0x9f9aa5eb8cd54bf73a7616aff2e4cde9965095b01870d5cfe018b87b78800fa9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480345dd378c1b99a2aedda7a824baf5350827a6adef4d64968b1031cec042a815b00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b98265ed37e15eea6aecf55737ffef8294921728dc60fc9f9eb7469cfc28e0c09c5e42819804b0cdb6d81c4c908dd22598cb193595cd8dc966954ed5fda76ca100000000000000000000006a91c5a9000000000000000000000000000313567200000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000056dd59a6d06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c90832c8000000000b541fa40000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000f5a9ac9b5be24e1a76ed465f2af54b3c7dbe5e81b85c96e4ccdc8e420f0dd35d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a611cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa000000000000000380000000000000000000000000000000000000000000000000000000000000000000000000000000125ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea45977170000000000000002ed7a85f1d8842d7bba6147272dfb075976d1b9b8747d3d512ee9c07719ab42c7a335f276056412b58548fae250ef7fac6969374dcd28f60f9752a8f5d70b07670000000003bd1aa500000000000000888d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe000000000000000125ab67d18db6afd50f7159eb9dce886043a38a226bff45b261d81f6ea4597717000000000000000178c95413fb91927fa1e97dab68eeac9bc5d412efa6fc1cc9b85572bad6ee1a2496e53243ebd652136f00e1e35baab2112230055c5c6c5ba5f67f3e90ac085c7f0000000003bd1aa50000000000000088c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000011a56492fdd3d05a6530ebd8fba22542633b559c97fa7053f9114e515614952c60000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000001a602ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000012a4954137c20d47865d818ed5f82684b4d1eaa80ab4025c3446eee735efebb8c83eee49d7623fc002777ee7ae1f2e6298a31e0ac86ed4a8444727fbde3cefa47000000000000000100000000000000020da8ca4d8e983b19c77d3ca2fc2d49d303364b66495ed46f5c0815e4dfc28e909f9aa5eb8cd54bf73a7616aff2e4cde9965095b01870d5cfe018b87b78800fa90000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004062031d810e99753169f0a17f15bcf22c2532f15b09b0f775f0a924350e007e4a1ca1b0ef276d7f096185e8430240906a15bdb6d36edd6c21650a83be013f2b43", - "receiptsRoot": "0x345dd378c1b99a2aedda7a824baf5350827a6adef4d64968b1031cec042a815b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b98265ed37e15eea6aecf55737ffef8294921728dc60fc9f9eb7469cfc28e0c09c5e42819804b0cdb6d81c4c908dd22598cb193595cd8dc966954ed5fda76ca100000000000000000000006a91c5a9000000000000000000000000000313567200000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000056dd59a6d06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c90832c8000000000b541fa400000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135672", - "digest": "0xac4a4fd14c38f5c9146327972241776bb3e9ee8a6e5dc52e175654adac018118", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135672", - "digest": "0x9a0a537b8b0e419aad29d626bcd885190e1ee068b39f857be7c08605805776c8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135672", - "digest": "0x9a0a537b8b0e419aad29d626bcd885190e1ee068b39f857be7c08605805776c8", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "373080827600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e0000001c90832c80000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000000000000000000000100000000b541fa400000001c90832c80000000006a91c531", - "digest": "0x59f9cf2b962736ff1ac9941f4ba16deb8a13dcd5bed71fe34dea344ce4f3e210", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e0000001c90832c8000000000000000000000000000000001", - "digest": "0x247bf6318958faca54fd10d513f1a6f80ee758b3ecc2efe183af7b771e2263e8", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100022", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126769", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136390", - "transactionId": "0x1c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x62031d810e99753169f0a17f15bcf22c2532f15b09b0f775f0a924350e007e4a1ca1b0ef276d7f096185e8430240906a15bdb6d36edd6c21650a83be013f2b43" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x7f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a65", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "315793", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00037", - "utxoId": "0x4156bd5b4cd0893eaf768d67904e5e30a60a8190a2144e14b306dcb40894e6ac0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2a4954137c20d47865d818ed5f82684b4d1eaa80ab4025c3446eee735efebb8c", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xe420652fd67b8caab124e17546e2b43b223a46c6e3d8b7f2e3cbcb5de7208504", - "txPointer": "03bd1aa5008a", - "utxoId": "0x1c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0da8ca4d8e983b19c77d3ca2fc2d49d303364b66495ed46f5c0815e4dfc28e90", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x5b4eb3b599675bfc90b67b7460d8cbbd3f0c033be5aba53b2bb0be018401035d", - "txPointer": "03bd1aa5008a", - "utxoId": "0x1c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5008a", - "utxoId": "0x1c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "315557", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x37569d0ad35186abe623ea7c9dbf0566477b0851279f7e2b82b2ecba89b1d762", - "inputIndex": "1", - "stateRoot": "0xf613b3449914b16ccca87931637ce7658f4aeb188420ae8b14f7e16ff2b42766" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xac8bcddffccf068c869c306c69467bc5f283208c7ce238be28277f08c55e0d88", - "inputIndex": "2", - "stateRoot": "0x13ee05f7af6c2490d2be06051624378537e0335320e9eb5c23030b6940570614" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848026c987cd02655db47d734eb9da25cedf72761999c026bd10e0af31d73ef7922700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a8a2ad87642e999078623c0c1d5d2c01e602f983b3af93f9d2b200ff49ba91d323666ae62c16a4a73cc5c85af4127b9117c3251dd3b7714fca2d659c3a338e9400000000000000000000006a91c5a9000000000000000000000000000313567100000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000012ed8b192686c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c92b7bfc00000000277bfe7c0000000000000000100000000000000000000006400000000000210ac0000000003bd1aa900000000000000004156bd5b4cd0893eaf768d67904e5e30a60a8190a2144e14b306dcb40894e6ac0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004d191f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000037000000000000000000000000000000000000000000000000000000000000000000000000000000011c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c00000000000000012a4954137c20d47865d818ed5f82684b4d1eaa80ab4025c3446eee735efebb8ce420652fd67b8caab124e17546e2b43b223a46c6e3d8b7f2e3cbcb5de72085040000000003bd1aa5000000000000008a8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000011c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c00000000000000020da8ca4d8e983b19c77d3ca2fc2d49d303364b66495ed46f5c0815e4dfc28e905b4eb3b599675bfc90b67b7460d8cbbd3f0c033be5aba53b2bb0be018401035d0000000003bd1aa5000000000000008ac7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000011c651c3a462dab834a9b3d6255bcc8f33e9f602eb763c3ef587189548389f51c0000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004d0a5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000137569d0ad35186abe623ea7c9dbf0566477b0851279f7e2b82b2ecba89b1d762f613b3449914b16ccca87931637ce7658f4aeb188420ae8b14f7e16ff2b4276600000000000000010000000000000002ac8bcddffccf068c869c306c69467bc5f283208c7ce238be28277f08c55e0d8813ee05f7af6c2490d2be06051624378537e0335320e9eb5c23030b694057061400000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040676d5b275e0ea26e163a8461e6f7fff36931c340737d2e9ed0c7dcce36e8375ca367a269b8a913cc95758a2c668edf0b53e469c1b92e677b55d293c69d4ba2ee", - "receiptsRoot": "0x26c987cd02655db47d734eb9da25cedf72761999c026bd10e0af31d73ef79227", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a8a2ad87642e999078623c0c1d5d2c01e602f983b3af93f9d2b200ff49ba91d323666ae62c16a4a73cc5c85af4127b9117c3251dd3b7714fca2d659c3a338e9400000000000000000000006a91c5a9000000000000000000000000000313567100000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000012ed8b192686c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c92b7bfc00000000277bfe7c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135671", - "digest": "0x4fcb8c3ebbb00a4713e2cb4322eba5e405b4f4aa3af82ce76d9c789e818b3bb1", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135671", - "digest": "0x691df4f7867bb465c3b210a17780df10ba1a02464668296f69a1ce1ac7ca0d03", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135671", - "digest": "0x691df4f7867bb465c3b210a17780df10ba1a02464668296f69a1ce1ac7ca0d03", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1300715639400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f0000001c92b7bfc0000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000000000000000000010000000277bfe7c00000001c92b7bfc0000000006a91c531", - "digest": "0x37f57bdafb6166cf3060039f5b8a5218ae935fac48461361bf43a080752ce35f", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f0000001c92b7bfc000000000000000000000000000000001", - "digest": "0x29ed54bc5e1c6382d4995c1a7537b054e3cd47ae0642479bc73ea00f1bf348c4", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100150", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125619", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "236", - "totalGas": "135240", - "transactionId": "0x7f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a65" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x676d5b275e0ea26e163a8461e6f7fff36931c340737d2e9ed0c7dcce36e8375ca367a269b8a913cc95758a2c668edf0b53e469c1b92e677b55d293c69d4ba2ee" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd36731", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "167987", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0003d", - "utxoId": "0x07b070530d8c48db840e46428d6cdbb76db233b7515e2d006cbdfcb4441ef7e60000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5008b", - "utxoId": "0x7f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a650003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb35bfebbf53eabf41e1bd875d91020707e52e64bc9b26fe6d7da040e3908a57c", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x723a0bb98584e7cd238cdde64ce4ea07ccbe50d2b1a83492918fc96872931bc4", - "txPointer": "03bd1aa5008b", - "utxoId": "0x7f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a650002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x67b1a6539226d2404dd26be12c711fcc9f7b005d8d3e167ddce8285ff331368a", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x48c67231600cc2945680cc2f059ef282622b9469b8f60657199de0d008838cbd", - "txPointer": "03bd1aa5008b", - "utxoId": "0x7f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a650001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167738", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x73f821b1f620c661c73069582e3a57ebe1ab4d45d7167287e63f6e3992e7d10f", - "inputIndex": "2", - "stateRoot": "0x2d7cf9d724c6e02fb7030ee5454704f3fba43458317e0c30c2542fb7b918591c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc2c7d818f86763c06ac042dd10f298b4fd3056e71925cea5fe8e62a8fb97af00", - "inputIndex": "3", - "stateRoot": "0x82cf0ccb5c62ccf8bab1a1b7c0f350c5b1e1f129241ae7bd35d5cc3627e8dd6a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480747bedd827fc828d720779f5a014361d5dddd339e6fd103fbcbd4d599f1340ff00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003d7c187b195171600eee3b9bf885d8914305f20eb6e04e17c341a19ca9d1c573cbbee9778c7a8a71ad8c400931d17c45043edb9cbdc01900ebee3a12da1d132100000000000000000000006a91c5a9000000000000000000000000000313567700000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000000035589dc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9e034a200000000035589dc0000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000007b070530d8c48db840e46428d6cdbb76db233b7515e2d006cbdfcb4441ef7e60000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029033f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003d000000000000000000000000000000000000000000000000000000000000000000000000000000017f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a650000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000017f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a650000000000000002b35bfebbf53eabf41e1bd875d91020707e52e64bc9b26fe6d7da040e3908a57c723a0bb98584e7cd238cdde64ce4ea07ccbe50d2b1a83492918fc96872931bc40000000003bd1aa5000000000000008bc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000017f66b424cdb1311f47c41ff6a80cdb3dfb97096751ecbde1d5719c48666d3a65000000000000000167b1a6539226d2404dd26be12c711fcc9f7b005d8d3e167ddce8285ff331368a48c67231600cc2945680cc2f059ef282622b9469b8f60657199de0d008838cbd0000000003bd1aa5000000000000008b8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028f3af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000273f821b1f620c661c73069582e3a57ebe1ab4d45d7167287e63f6e3992e7d10f2d7cf9d724c6e02fb7030ee5454704f3fba43458317e0c30c2542fb7b918591c00000000000000010000000000000003c2c7d818f86763c06ac042dd10f298b4fd3056e71925cea5fe8e62a8fb97af0082cf0ccb5c62ccf8bab1a1b7c0f350c5b1e1f129241ae7bd35d5cc3627e8dd6a00000000000000407aa9093ab30c7734e662539d79763fbb0d1dabd35b152775465e92302a012c41b8f97777c54ae0e9dbf23f74c31bfe7841bee1d87e1c6e152dac66ef7c8b7ddd", - "receiptsRoot": "0x747bedd827fc828d720779f5a014361d5dddd339e6fd103fbcbd4d599f1340ff", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003d7c187b195171600eee3b9bf885d8914305f20eb6e04e17c341a19ca9d1c573cbbee9778c7a8a71ad8c400931d17c45043edb9cbdc01900ebee3a12da1d132100000000000000000000006a91c5a9000000000000000000000000000313567700000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000000035589dc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9e034a200000000035589dc00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135677", - "digest": "0x4cda99b4b61495fd94539eb88d42dd835a13257ea9e139f999d78e40dc03556a", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135677", - "digest": "0x8d23878e6c225b4ed1fad706fbb08f9d4cb4a5a0c371a22cd85b0278444804af", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135677", - "digest": "0x8d23878e6c225b4ed1fad706fbb08f9d4cb4a5a0c371a22cd85b0278444804af", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "895000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c0000001c9e034a20000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000100000000000000010000000035589dc00000001c9e034a20000000006a91c531", - "digest": "0x063c29ce94a252e61ba3c28b115b505e1101d2d8c56384c3bd9b7703504a5669", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c0000001c9e034a2000000000000000010000000000000001", - "digest": "0xa8bab4db9f167a87e9c4450cd06ec74be3c6835391e8a4eefca54f5e5dd4bbed", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099206", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133317", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "249", - "totalGas": "142938", - "transactionId": "0x2ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd36731" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7aa9093ab30c7734e662539d79763fbb0d1dabd35b152775465e92302a012c41b8f97777c54ae0e9dbf23f74c31bfe7841bee1d87e1c6e152dac66ef7c8b7ddd" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x08cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c463", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "288710", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa00039", - "utxoId": "0xb35dba045953306a76f4f6c0cb0f4d2cbf9c6bdbb7e57f80ba74a95cb744379f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5008c", - "utxoId": "0x2ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd367310001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x37569d0ad35186abe623ea7c9dbf0566477b0851279f7e2b82b2ecba89b1d762", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xc52d20a307df39b32545f7c46d80b7ed45e093df88fa94a8a24d8bd6e954b2a2", - "txPointer": "03bd1aa5008c", - "utxoId": "0x2ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd367310003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xac8bcddffccf068c869c306c69467bc5f283208c7ce238be28277f08c55e0d88", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x53b9722ad017a5426ce56c8ba8a668f89a4962330e3c466a3df766b4611b74ed", - "txPointer": "03bd1aa5008c", - "utxoId": "0x2ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd367310002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "288463", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4d5081f4a649d44f50532e48ae34d6d1072eeb42892e34653d1978ba3f83b020", - "inputIndex": "2", - "stateRoot": "0x81da8e07de6b113c49c5e91746d6bfa8b697911f79dfbc5b246b20949ee7beed" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x56f8fe36d74d83eec893ce9efb98b0b234f42d8ebacb6253cb2259773b4ecd03", - "inputIndex": "3", - "stateRoot": "0xb7901a06176113273e4507621ac3388b67cd74001bc9d2c27936fd96d8027fbf" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802ae7b52a21d733ea09132c46ed4ee2df42ed510d71ccdc708a1e66e29e47923900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009aa72b7626ab01d8abb47ccaf671d8a023165b56d8931c6cf5bb203f05417e89eb29a0fdba05056bde60f4db26f7bb4986c4526a723f79d63c55e1c01447798c00000000000000000000006a91c5a9000000000000000000000000000313567300000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000002c359a49606c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c98922980000000005c261680000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000b35dba045953306a76f4f6c0cb0f4d2cbf9c6bdbb7e57f80ba74a95cb744379f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000467c6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa00000000000000039000000000000000000000000000000000000000000000000000000000000000000000000000000012ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd367310000000000000001a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000012ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd36731000000000000000337569d0ad35186abe623ea7c9dbf0566477b0851279f7e2b82b2ecba89b1d762c52d20a307df39b32545f7c46d80b7ed45e093df88fa94a8a24d8bd6e954b2a20000000003bd1aa5000000000000008c8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000012ed79d23b3e0c8b52c3f56e4c0f371423e6994bbea2d1658fada5bc85cd367310000000000000002ac8bcddffccf068c869c306c69467bc5f283208c7ce238be28277f08c55e0d8853b9722ad017a5426ce56c8ba8a668f89a4962330e3c466a3df766b4611b74ed0000000003bd1aa5000000000000008cc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000466cff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000024d5081f4a649d44f50532e48ae34d6d1072eeb42892e34653d1978ba3f83b02081da8e07de6b113c49c5e91746d6bfa8b697911f79dfbc5b246b20949ee7beed0000000000000001000000000000000356f8fe36d74d83eec893ce9efb98b0b234f42d8ebacb6253cb2259773b4ecd03b7901a06176113273e4507621ac3388b67cd74001bc9d2c27936fd96d8027fbf0000000000000040c28ab5a1f09639bccf6945e1c6aed51933780aa5a2564230a79bb7dc4e938d715aeb0d4d625b73e0b07909e5fa0a5224a297d1715bc995c82ec3edf81fa452e5", - "receiptsRoot": "0x2ae7b52a21d733ea09132c46ed4ee2df42ed510d71ccdc708a1e66e29e479239", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009aa72b7626ab01d8abb47ccaf671d8a023165b56d8931c6cf5bb203f05417e89eb29a0fdba05056bde60f4db26f7bb4986c4526a723f79d63c55e1c01447798c00000000000000000000006a91c5a9000000000000000000000000000313567300000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000002c359a49606c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c98922980000000005c2616800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135673", - "digest": "0x9bcfbc9e5cef3ab01f6be1f92b03336a27a5359e46d9c52f7cbbbb2e78d98e91", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135673", - "digest": "0x457c004c9ea3d21be41eae5e287d9cd7d58899dffc7a04eb4e3ad08546f33fe7", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135673", - "digest": "0x457c004c9ea3d21be41eae5e287d9cd7d58899dffc7a04eb4e3ad08546f33fe7", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "189877864800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e0000001c98922980000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000001000000005c2616800000001c98922980000000006a91c531", - "digest": "0xf5948cb7307cd9ef868b43ce041abd759ba4015062d30fd4f7347fcc6c33a6df", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e0000001c9892298000000000000000000000000000000001", - "digest": "0xa5efe5307dcc308d7ad5deea7e2582fce8c7276fa2ad76679aa78091c7ecb43e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099334", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132112", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141733", - "transactionId": "0x08cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c463" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc28ab5a1f09639bccf6945e1c6aed51933780aa5a2564230a79bb7dc4e938d715aeb0d4d625b73e0b07909e5fa0a5224a297d1715bc995c82ec3edf81fa452e5" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x97ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "304788", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0003c", - "utxoId": "0x04cc0ccc939e9f39b17d7738261cbda5f1f85cbf8f15594009fdd0561e2f8f140000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x56f8fe36d74d83eec893ce9efb98b0b234f42d8ebacb6253cb2259773b4ecd03", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x8d2a0ef855604f9205e3ced01dbdd5684bce83c806d2128b7b5e3199acf0349f", - "txPointer": "03bd1aa5008d", - "utxoId": "0x08cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c4630003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5008d", - "utxoId": "0x08cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c4630001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4d5081f4a649d44f50532e48ae34d6d1072eeb42892e34653d1978ba3f83b020", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x5b06f33f1af819dfadccc7124adab00e069a90ff1581a6f98adad879446cc309", - "txPointer": "03bd1aa5008d", - "utxoId": "0x08cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c4630002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "304550", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6020f9410c35b385b1076abf5d9735a02f257db0fc876808af909714aa5c2bbd", - "inputIndex": "1", - "stateRoot": "0x39bbeada8e83bf3c960ef8ec07e91b7155a5a68420011af2f164c85426f3591e" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x19ac59b8bbbdfc144acf1451721d03b8921bfd9bedabf48738386b34cade0724", - "inputIndex": "3", - "stateRoot": "0x15ea89ad5392fb4f4fdf4b992d3549331aee454592fa450a1331d2eaf2bbea19" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806b95cf1b87e5cdf7c4f3043c98bdd1e6fb678300c4798ea55f8d50861d158bd500000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000057e96b2f3b0cec16bbc65e93c8b1656ac23a68bd8812ab83bdec47e76b4f86f67080ae0518b060330539500f5320ad1a1ee855d7160ee57c80e50747288b4f2800000000000000000000006a91c5a9000000000000000000000000000313567600000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000081f93871bc6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c959eda20000000010f05b6c0000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000004cc0ccc939e9f39b17d7738261cbda5f1f85cbf8f15594009fdd0561e2f8f140000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004a694f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000108cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c463000000000000000356f8fe36d74d83eec893ce9efb98b0b234f42d8ebacb6253cb2259773b4ecd038d2a0ef855604f9205e3ced01dbdd5684bce83c806d2128b7b5e3199acf0349f0000000003bd1aa5000000000000008dc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000108cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c4630000000000000001a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000108cdfa12c38b1afa0823fbb398c02fca94d715afa53000f087ea7c8fa201c46300000000000000024d5081f4a649d44f50532e48ae34d6d1072eeb42892e34653d1978ba3f83b0205b06f33f1af819dfadccc7124adab00e069a90ff1581a6f98adad879446cc3090000000003bd1aa5000000000000008d8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004a5a6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016020f9410c35b385b1076abf5d9735a02f257db0fc876808af909714aa5c2bbd39bbeada8e83bf3c960ef8ec07e91b7155a5a68420011af2f164c85426f3591e00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000319ac59b8bbbdfc144acf1451721d03b8921bfd9bedabf48738386b34cade072415ea89ad5392fb4f4fdf4b992d3549331aee454592fa450a1331d2eaf2bbea190000000000000040b6f2ce9046cda4974c84335f6cb1030b98e107fd991c86c8fb43c54b97625f074fec1454ce58a7d413c19f29cb53a3f6e0d65571a55d3ae1c37a61676207c913", - "receiptsRoot": "0x6b95cf1b87e5cdf7c4f3043c98bdd1e6fb678300c4798ea55f8d50861d158bd5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000057e96b2f3b0cec16bbc65e93c8b1656ac23a68bd8812ab83bdec47e76b4f86f67080ae0518b060330539500f5320ad1a1ee855d7160ee57c80e50747288b4f2800000000000000000000006a91c5a9000000000000000000000000000313567600000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000081f93871bc6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c959eda20000000010f05b6c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135676", - "digest": "0xffbc0f7b7317ea7102e56d80975fd172a8fec4919f5c75e51b89bc4223662747", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135676", - "digest": "0x7a6af1f811c0a171f8ca947fc74576d48e759e7a32e5426fb5bbd8bf6821a575", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135676", - "digest": "0x7a6af1f811c0a171f8ca947fc74576d48e759e7a32e5426fb5bbd8bf6821a575", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "558232007100", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000140000001c959eda20000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000001000000010f05b6c00000001c959eda20000000006a91c531", - "digest": "0x9f37a7bfc19ed59bd3484201cb76984da6d7613e12a00e52599e1d8237481a10", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000140000001c959eda2000000000000000000000000000000001", - "digest": "0x11a4fa2f7b5b0cf0c923e52b7acdf3a2839500c151c85cf9f62f4d55f0eb3065", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100022", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "126757", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "238", - "totalGas": "136378", - "transactionId": "0x97ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb6f2ce9046cda4974c84335f6cb1030b98e107fd991c86c8fb43c54b97625f074fec1454ce58a7d413c19f29cb53a3f6e0d65571a55d3ae1c37a61676207c913" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168136", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0003a", - "utxoId": "0x43ce399fd8f9710bd7c47c4a2fcaac8e7df743edbd75bc8277ef1ad9b4c9cf150000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6020f9410c35b385b1076abf5d9735a02f257db0fc876808af909714aa5c2bbd", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x5614b9ac949378ddfa0c3aea6838a464764f6c917137e2a274620f26e5d14608", - "txPointer": "03bd1aa5008e", - "utxoId": "0x97ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5008e", - "utxoId": "0x97ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x19ac59b8bbbdfc144acf1451721d03b8921bfd9bedabf48738386b34cade0724", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xc2d04ad076c2a8df8b75cfd95dc08dd1b877766faee0d93b7f82e8f9e41fec85", - "txPointer": "03bd1aa5008e", - "utxoId": "0x97ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167889", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x78cbdd588f3da4d78d1bdce85f921419a70e0ae4b552e26d66fe29cb68fc5bd9", - "inputIndex": "1", - "stateRoot": "0x4afa8c8aa9fa854f9c1009d47a82f6b43706ec850787753d3ddde8d07aea35a2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x88f9ffdc0bbb22904ebb501292ac5d0c615eae9958b2ab0211c158d33610285f", - "inputIndex": "3", - "stateRoot": "0x51edd7edd078a667b7cac20cc506b5df31e35d54f753ab64c2c843299d3bdc61" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848082fdd8ecf860f179c6154d93e9568f3686cc1afd618175037dbd389adcf3f0f300000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000088088ec38a6fc51503c57317ea1210cddbac244c5f37bfdcac8e818d8a90104657a2f5c01fdec6858366db93622b6597b4cf11f5e7877a5cb243615d3c7f030f00000000000000000000006a91c5a9000000000000000000000000000313567400000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000002a84c468b06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c97f378800000000058a1d1c0000000000000000100000000000000000000006400000000000210ac0000000003bd1aa9000000000000000043ce399fd8f9710bd7c47c4a2fcaac8e7df743edbd75bc8277ef1ad9b4c9cf150000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000290c8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000197ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff00000000000000016020f9410c35b385b1076abf5d9735a02f257db0fc876808af909714aa5c2bbd5614b9ac949378ddfa0c3aea6838a464764f6c917137e2a274620f26e5d146080000000003bd1aa5000000000000008ec7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000197ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff0000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000197ad595afcb1823b2f4d0e0cbe769ecc82b7f7a30b9e17ba20144cb978196dff000000000000000319ac59b8bbbdfc144acf1451721d03b8921bfd9bedabf48738386b34cade0724c2d04ad076c2a8df8b75cfd95dc08dd1b877766faee0d93b7f82e8f9e41fec850000000003bd1aa5000000000000008e8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028fd1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000178cbdd588f3da4d78d1bdce85f921419a70e0ae4b552e26d66fe29cb68fc5bd94afa8c8aa9fa854f9c1009d47a82f6b43706ec850787753d3ddde8d07aea35a200000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000388f9ffdc0bbb22904ebb501292ac5d0c615eae9958b2ab0211c158d33610285f51edd7edd078a667b7cac20cc506b5df31e35d54f753ab64c2c843299d3bdc6100000000000000406125bf80f8b8f3f20d9979c55a6a9e2f8176755b0e0b60ee5b0586e1c00b500ca99ade77fbafec83db73354dec844fc3d8d6dcd5dc3dfd0c303f66ab3599a0dd", - "receiptsRoot": "0x82fdd8ecf860f179c6154d93e9568f3686cc1afd618175037dbd389adcf3f0f3", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000088088ec38a6fc51503c57317ea1210cddbac244c5f37bfdcac8e818d8a90104657a2f5c01fdec6858366db93622b6597b4cf11f5e7877a5cb243615d3c7f030f00000000000000000000006a91c5a9000000000000000000000000000313567400000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000002a84c468b06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c97f378800000000058a1d1c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135674", - "digest": "0xb8b5742bba46074c6be7f7d0f911241aaefe00bbaabdba24a96da89219fec959", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135674", - "digest": "0xcb61b45095fd89101584157dfa621aa6d0e0321c1b1356bf6f8fa1ba10f2ab05", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135674", - "digest": "0xcb61b45095fd89101584157dfa621aa6d0e0321c1b1356bf6f8fa1ba10f2ab05", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "182616090800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000290000001c97f37880000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000000000000000000010000000058a1d1c00000001c97f37880000000006a91c531", - "digest": "0x1083099b101a59be98ad5194ea337e19f79b4bdd264685c44968f94b4bc0517e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000290000001c97f3788000000000000000000000000000000001", - "digest": "0x729b4a4bb79d5a6ee6006d914f21b841219af57b9b47c9a1726a321d84f46a76", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099462", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131850", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141471", - "transactionId": "0x555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6125bf80f8b8f3f20d9979c55a6a9e2f8176755b0e0b60ee5b0586e1c00b500ca99ade77fbafec83db73354dec844fc3d8d6dcd5dc3dfd0c303f66ab3599a0dd" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x28a200e8e3d2be8e124941b963939c31a9a81c0ae9962e6af37b88d318746b6d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "167746", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0003b", - "utxoId": "0xf939a57bc587e9b7cb65b7b5156ed787b613fce212c82ef66ef33cfc4c3e9b610000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc2c7d818f86763c06ac042dd10f298b4fd3056e71925cea5fe8e62a8fb97af00", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xfd3c5bf90d53e3e8a666c1f13383560d038a9e21d7dd986a40a36a360a1e4bdc", - "txPointer": "03bd1aa5008f", - "utxoId": "0x555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x73f821b1f620c661c73069582e3a57ebe1ab4d45d7167287e63f6e3992e7d10f", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xf04467b22aac25aab78eba21d666524e6a8d9cd239fa0b7ec0c72af1bc8847fc", - "txPointer": "03bd1aa5008f", - "utxoId": "0x555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa5008f", - "utxoId": "0x555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167499", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa4b30c850c7bc12a58dc239cd625766edc749793660f66a21109ac047599790b", - "inputIndex": "1", - "stateRoot": "0x01099a8ba98f9dcd58be50cad111b26431ddb4d532c738a3c8aae12a550bd382" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc982a67d8d459847f600f5c3849efb20360c7c17cfb7b629c77e8af68d8495fd", - "inputIndex": "2", - "stateRoot": "0x9b8072dd5b9ca0d41844fec79982236eb86ac21686ed396bbc819163fd789379" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805ecfb0c8819553a1d69e2924e6de2daa3b1461b00d0e7966fb3edbc0cf708dc800000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002ed2fc826ecfb83d8ad458ea4e981b61fec775211b31578ba1287e25e452f655b9c9f40478b6dc7a6478119b4e1df0c48031e172a343b07d94e77a4b77d2fe4f00000000000000000000006a91c5a9000000000000000000000000000313567500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000000448b9b8013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9f28422000000000448b9b80000000000000000100000000000000000000006400000000000210ac0000000003bd1aa90000000000000000f939a57bc587e9b7cb65b7b5156ed787b613fce212c82ef66ef33cfc4c3e9b610000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028f42f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003b00000000000000000000000000000000000000000000000000000000000000000000000000000001555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a0000000000000003c2c7d818f86763c06ac042dd10f298b4fd3056e71925cea5fe8e62a8fb97af00fd3c5bf90d53e3e8a666c1f13383560d038a9e21d7dd986a40a36a360a1e4bdc0000000003bd1aa5000000000000008f8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a000000000000000173f821b1f620c661c73069582e3a57ebe1ab4d45d7167287e63f6e3992e7d10ff04467b22aac25aab78eba21d666524e6a8d9cd239fa0b7ec0c72af1bc8847fc0000000003bd1aa5000000000000008fc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001555a0de793221cc34d6438d2f291a51ffba946ceb6980c7f4285375acdd4027a0000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000008f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028e4bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001a4b30c850c7bc12a58dc239cd625766edc749793660f66a21109ac047599790b01099a8ba98f9dcd58be50cad111b26431ddb4d532c738a3c8aae12a550bd38200000000000000010000000000000002c982a67d8d459847f600f5c3849efb20360c7c17cfb7b629c77e8af68d8495fd9b8072dd5b9ca0d41844fec79982236eb86ac21686ed396bbc819163fd78937900000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b14478a72f12d3ca34dbcd3481a3b89a30ebf1d5273e7cd2da3164dcb7071040b2b8b32c03f9a86edfa6dfb1676d774caae8ef3c791b3b986dd01114862fb4a7", - "receiptsRoot": "0x5ecfb0c8819553a1d69e2924e6de2daa3b1461b00d0e7966fb3edbc0cf708dc8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002ed2fc826ecfb83d8ad458ea4e981b61fec775211b31578ba1287e25e452f655b9c9f40478b6dc7a6478119b4e1df0c48031e172a343b07d94e77a4b77d2fe4f00000000000000000000006a91c5a9000000000000000000000000000313567500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000000448b9b8013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9f28422000000000448b9b800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a90000000000000000000000000003135675", - "digest": "0x0de58d0708832f23ad350b25b85c2e0c059405614abf0ae8baf2be5237655e37", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135675", - "digest": "0x8038b40b3f45b64b2f05543515ec4fa8fa658fedd0971c6eaecd19d2eed18529", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5a90000000000000000000000000003135675", - "digest": "0x8038b40b3f45b64b2f05543515ec4fa8fa658fedd0971c6eaecd19d2eed18529", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1150000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000200000001c9f284220000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001000000000000000100000000448b9b800000001c9f284220000000006a91c531", - "digest": "0x7c8b471696383a052a6191d8f493990879ab07b5c5647bc2cda3278d813e43e0", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000200000001c9f28422000000000000000010000000000000001", - "digest": "0xd7501c7eea0d1c897072892288b1cfc4c29a42b8f9f2e30d98eb91da439c090c", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099398", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131960", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "247", - "totalGas": "141581", - "transactionId": "0x28a200e8e3d2be8e124941b963939c31a9a81c0ae9962e6af37b88d318746b6d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb14478a72f12d3ca34dbcd3481a3b89a30ebf1d5273e7cd2da3164dcb7071040b2b8b32c03f9a86edfa6dfb1676d774caae8ef3c791b3b986dd01114862fb4a7" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2e122e223efc0c31767461404c256ecaff3460655e8145bb3000480efebadc25", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "165178", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa0003e", - "utxoId": "0x7646ee705620fcf6f999b717d890f2d02c0fd88270d71fe81156930e539865890000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdb0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa50090", - "utxoId": "0x28a200e8e3d2be8e124941b963939c31a9a81c0ae9962e6af37b88d318746b6d0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x231c58aff9e4393b21d4a464965afc9dd941d7e2884ab00b58d406c9226cb2c9", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0xb9559536070815026079612035d4f79dbffdf539ec8383eee6a15c0137f2d487", - "txPointer": "03bd1aa50067", - "utxoId": "0xa24706e07252bc95af5d26cb711a7a3ffbc9a326ad5d4706ac776db74010fae60001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x41278d6b1504cd605e8719f7f9403a3d7c3e87e1776cdeeb38569956242b1ce0", - "contractId": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "stateRoot": "0x474adf2482bacbb1ddd70537c9ab2d3a22e078dca122eeb80652ec08153379fe", - "txPointer": "03bd1aa5005e", - "utxoId": "0xc6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "164813", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe357ce3072d095174bdceda05415c0087517910b185cf15e2e6ea0d9b303b912", - "inputIndex": "2", - "stateRoot": "0xdeaf6256b4252c52bde3960a8becf6717a3332b87b58278dc311407477290b64" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb58229234cd6fa35629cfbda66f1cd0327b9aeebb18c41cc0ec8ebe91ada0ff8", - "inputIndex": "3", - "stateRoot": "0xc246c6e8925d8020ff64822a4b323faaed86478e5c3b7d981121113d4e663298" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480964741bae3143046f75b9a4bfe6dc08396cfc68bca50083bddfa93243e7832f4000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008f3368b3247a4238ca232482ad06d6271e12a8a031ed1d951142d9975bd12d7998fe89442496b0df9c274c62c4200f126a2a11bb2a4ba3337e70b9781eae72bb00000000000000000000006a91c5a900000000000000000000000000029da72e0000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000009000046ea1050758000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000031ce3e81a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e7899a990000000000031ce3e80000000000000003000000000000006400000000000210ac0000000003bd1aa900000000000000007646ee705620fcf6f999b717d890f2d02c0fd88270d71fe81156930e539865890000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002853af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa0000000000000003e0000000000000000000000000000000000000000000000000000000000000000000000000000000128a200e8e3d2be8e124941b963939c31a9a81c0ae9962e6af37b88d318746b6d0000000000000003db0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa5000000000000009002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a24706e07252bc95af5d26cb711a7a3ffbc9a326ad5d4706ac776db74010fae60000000000000001231c58aff9e4393b21d4a464965afc9dd941d7e2884ab00b58d406c9226cb2c9b9559536070815026079612035d4f79dbffdf539ec8383eee6a15c0137f2d4870000000003bd1aa50000000000000067132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000001c6a528c541529531144906c67163cf98071470979e75bbeea90683377b68c42f000000000000000241278d6b1504cd605e8719f7f9403a3d7c3e87e1776cdeeb38569956242b1ce0474adf2482bacbb1ddd70537c9ab2d3a22e078dca122eeb80652ec08153379fe0000000003bd1aa5000000000000005ee749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000283cdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e357ce3072d095174bdceda05415c0087517910b185cf15e2e6ea0d9b303b912deaf6256b4252c52bde3960a8becf6717a3332b87b58278dc311407477290b6400000000000000010000000000000003b58229234cd6fa35629cfbda66f1cd0327b9aeebb18c41cc0ec8ebe91ada0ff8c246c6e8925d8020ff64822a4b323faaed86478e5c3b7d981121113d4e6632980000000000000040e2ebdad3e799d6e20d405442c8935b78c10d80184dacef78d93f2ac36432a95fc5fdb1f1da9ad668ca45a6a7c6c2c2a007105ed0e946dd9594841ac295a3f57e", - "receiptsRoot": "0x964741bae3143046f75b9a4bfe6dc08396cfc68bca50083bddfa93243e7832f4", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008f3368b3247a4238ca232482ad06d6271e12a8a031ed1d951142d9975bd12d7998fe89442496b0df9c274c62c4200f126a2a11bb2a4ba3337e70b9781eae72bb00000000000000000000006a91c5a900000000000000000000000000029da72e0000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000009000046ea1050758000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000031ce3e81a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e7899a990000000000031ce3e80000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a900000000000000000000000000029da72e", - "digest": "0x4f90595ac649108b7a29deae22b7602357010fcbd2e076067e818182f70353ec", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72e", - "digest": "0xc98dd5cfebc4c6e19bae5cd3cad203b28c7bece3ca29b23e3a093b7439d2a9ed", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "52375000", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000009000046ea1050758000000000000000010000000000000003000000006a91c531", - "digest": "0x9f1e8f1aaf0b09aae538870904dab7381a0cb73bdb1042d02805b416a69a4396", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67100930", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67100305", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72e", - "digest": "0xc98dd5cfebc4c6e19bae5cd3cad203b28c7bece3ca29b23e3a093b7439d2a9ed", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100077", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1885922", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000000", - "digest": "0x60ac9d69fe81ca4d4e5a181ff68c21eb015cb5f23c223d4ce6423a6dee90aab2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67099157", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5a900000000000000000000000000029da72e", - "digest": "0xc98dd5cfebc4c6e19bae5cd3cad203b28c7bece3ca29b23e3a093b7439d2a9ed", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098929", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "52225000", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873648", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000056000046e7899a9900000000000000000100000000000000030000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a0000000000000001000000000000000300000000031ce3e8000046e7899a9900000000006a91c531", - "digest": "0x2d8d1269882120f829b1cae5c4a6b8927bc71a5585a11d6317782e18fef94fb1", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67097089", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000056000046e7899a990000000000000000010000000000000003", - "digest": "0x0401306909905220b108d401c738bdf8ea1d1dca19a7d5f46db5161594dfd03a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67092913", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "199951", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326011", - "totalFee": "365", - "totalGas": "209779", - "transactionId": "0x2e122e223efc0c31767461404c256ecaff3460655e8145bb3000480efebadc25" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe2ebdad3e799d6e20d405442c8935b78c10d80184dacef78d93f2ac36432a95fc5fdb1f1da9ad668ca45a6a7c6c2c2a007105ed0e946dd9594841ac295a3f57e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x883029f9166980442c397444a1acb8729c9693836633ef60e6bcb7802039a555", - "inputAssetIds": null, - "inputContract": { - "balanceRoot": "0x071a36475509f757e52b23dad27a77851d60eb329d3b953c8effd9ef758f79ca", - "contractId": "0x7777777777777777777777777777777777777777777777777777777777777777", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa4007b", - "utxoId": "0x8c7c2e6b19b7c6c5e09f570fccaef348639e7853f302f9aaae8ebf962a49f1bf0000" - }, - "inputContracts": [ - "0x7777777777777777777777777777777777777777777777777777777777777777" - ], - "inputs": null, - "isCreate": false, - "isMint": true, - "isScript": false, - "isUpgrade": false, - "isUpload": false, - "maturity": null, - "mintAmount": "37536", - "mintAssetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "mintGasPrice": "2000", - "outputContract": { - "balanceRoot": "0x4f587784c2620a77eef9213165e57efdb831e35fb6ef83af2889e60cc1a30e52", - "inputIndex": "0", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "outputs": [], - "policies": null, - "proofSet": null, - "rawPayload": "0x00000000000000020000000003bd1aa500000000000000928c7c2e6b19b7c6c5e09f570fccaef348639e7853f302f9aaae8ebf962a49f1bf0000000000000000071a36475509f757e52b23dad27a77851d60eb329d3b953c8effd9ef758f79ca00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa4000000000000007b777777777777777777777777777777777777777777777777777777777777777700000000000000004f587784c2620a77eef9213165e57efdb831e35fb6ef83af2889e60cc1a30e52000000000000000000000000000000000000000000000000000000000000000000000000000092a0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000007d0", - "receiptsRoot": null, - "salt": null, - "script": null, - "scriptData": null, - "scriptGasLimit": null, - "status": { - "__typename": "SuccessStatus", - "programState": null, - "receipts": [], - "time": "4611686020215326011", - "totalFee": "0", - "totalGas": "0", - "transactionId": "0x883029f9166980442c397444a1acb8729c9693836633ef60e6bcb7802039a555" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": "03bd1aa50092", - "upgradePurpose": null, - "witnesses": null - } - ] -} diff --git a/packages/api-lite/test/fixtures/blocks/62724775.bin b/packages/api-lite/test/fixtures/blocks/62724775.bin deleted file mode 100644 index 89abab29c..000000000 Binary files a/packages/api-lite/test/fixtures/blocks/62724775.bin and /dev/null differ diff --git a/packages/api-lite/test/fixtures/blocks/62724775.fuelcore.json b/packages/api-lite/test/fixtures/blocks/62724775.fuelcore.json deleted file mode 100644 index 9d7548d77..000000000 --- a/packages/api-lite/test/fixtures/blocks/62724775.fuelcore.json +++ /dev/null @@ -1,57287 +0,0 @@ -{ - "consensus": { - "__typename": "PoAConsensus", - "signature": "0x067462cd6f15ac008a8153f9d79a0fdaee48abe59c9882522ca43ccbfd31d8816d0bb833adf42737fb0a21a48bc7e48b0982bc5995a8b7ff48866ceada641e0e" - }, - "header": { - "applicationHash": "0xc71afdd2eda424e6bec4093b359f278ab6c1c272e8d68733508c44ea834a676f", - "consensusParametersVersion": "11", - "daHeight": "25855159", - "eventInboxRoot": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "height": "62724775", - "id": "0x4a75fd6b2ef7297edc5b5fe0f43d80cdfe4deafc9f58bfcce18a1cedb1ce2c31", - "messageOutboxRoot": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "messageReceiptCount": "0", - "prevRoot": "0xf32078b16f1b746b9154ce75f327899667c7ac032d7ac68afac80f8097166fb7", - "stateTransitionBytecodeVersion": "34", - "time": "4611686020215326013", - "transactionsCount": "97", - "transactionsRoot": "0xd0fd36f6c5352f738b072150437f7e421af4b5a8a72a6d3e3776f55631135026" - }, - "height": "62724775", - "id": "0x4a75fd6b2ef7297edc5b5fe0f43d80cdfe4deafc9f58bfcce18a1cedb1ce2c31", - "transactions": [ - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xcf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf5669", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "167875", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10028", - "utxoId": "0xd226a96adcac2efde25a3d80cd7ef0bfda5a7a779ec305ac123aed23ce5206a90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1a6556dea6cfe62d09453be4e0c4d5df1c45cc2a1e79ceb7f54eb362831e90a9", - "contractId": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "stateRoot": "0xd26eb457ae63a6a354281905727699c23d52cc2549167994b4db8af9efaf38d4", - "txPointer": "03bd1aa60036", - "utxoId": "0x3516276ad4d88a9ddc6de8ffd2e05a89af16ba8c2b1bfe60958badab299d48f00003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d565", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60069", - "utxoId": "0x6a54f3441ed8dd4f14963f2aaadd8c296873b0b8b08a66e1d8d1ed954c8ed14a0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x59f7195d5685a23d5314922416b8a39c4814b470624def586611521164a3a43a", - "contractId": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "stateRoot": "0x59826d5ac76daad3c2d20cf33bb9005b78793d710476c03944c1cf7ee7ab5da7", - "txPointer": "03bd1aa60036", - "utxoId": "0x3516276ad4d88a9ddc6de8ffd2e05a89af16ba8c2b1bfe60958badab299d48f00002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "167538", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x21b1d08ab226b5bf5c0346b85614a9ef73af0bed0e0058775da94e1977c12ef5", - "inputIndex": "1", - "stateRoot": "0x0ce63fffe194c5c2370d75886da39122641e5ac106493c41e3e7a48aba2c6429" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x82e5c7696161edaab17a67ecb40f74b61f67adaf5418bd9a83c953a90405ff42", - "inputIndex": "3", - "stateRoot": "0x155e59e15ea58e1f20e0bdffdbc6e9a65db4c6128858fe104b184015b9fdbe17" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480899e8483648d868f1f1e545e8c88f8629dc9d9193aaee265771059d5b7432e02000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000001c86d62e9511f17e7659d620f73fc1c7947656df775282d7821c86b8ce11f87e84263d761e404e3e834d59316860fbebdf3f60d4ec314760813a11e26ee9c5f00000000000000000000006a91c5aa000000000000000000000000000099f05d000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000002bf9000000003bb83d100000000000000001000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f726465720000009f1a3ceb0065e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715ffffffffffffffff00000000000000010000000000000018000000003bb83d100000009f1a3ceb000000000000000001000000000000006400000000000210ac0000000003bd1aaa0000000000000000d226a96adcac2efde25a3d80cd7ef0bfda5a7a779ec305ac123aed23ce5206a90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028fc3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000028000000000000000000000000000000000000000000000000000000000000000000000000000000013516276ad4d88a9ddc6de8ffd2e05a89af16ba8c2b1bfe60958badab299d48f000000000000000031a6556dea6cfe62d09453be4e0c4d5df1c45cc2a1e79ceb7f54eb362831e90a9d26eb457ae63a6a354281905727699c23d52cc2549167994b4db8af9efaf38d40000000003bd1aa6000000000000003697c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000016a54f3441ed8dd4f14963f2aaadd8c296873b0b8b08a66e1d8d1ed954c8ed14a00000000000000012f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d56500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa6000000000000006902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000013516276ad4d88a9ddc6de8ffd2e05a89af16ba8c2b1bfe60958badab299d48f0000000000000000259f7195d5685a23d5314922416b8a39c4814b470624def586611521164a3a43a59826d5ac76daad3c2d20cf33bb9005b78793d710476c03944c1cf7ee7ab5da70000000003bd1aa6000000000000003630963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc50000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028e72f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000121b1d08ab226b5bf5c0346b85614a9ef73af0bed0e0058775da94e1977c12ef50ce63fffe194c5c2370d75886da39122641e5ac106493c41e3e7a48aba2c642900000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000382e5c7696161edaab17a67ecb40f74b61f67adaf5418bd9a83c953a90405ff42155e59e15ea58e1f20e0bdffdbc6e9a65db4c6128858fe104b184015b9fdbe1700000000000000408bf05b0dd9c15f80b5c8d3e368f5370acf38977a5ebbc1bc57c77f485f01a06f7a279c29cbaf27a4f5659d5c87807f6dc3025d9470deaba453f44ad45dfe9f94", - "receiptsRoot": "0x899e8483648d868f1f1e545e8c88f8629dc9d9193aaee265771059d5b7432e02", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000001c86d62e9511f17e7659d620f73fc1c7947656df775282d7821c86b8ce11f87e84263d761e404e3e834d59316860fbebdf3f60d4ec314760813a11e26ee9c5f00000000000000000000006a91c5aa000000000000000000000000000099f05d000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000002bf9000000003bb83d100000000000000001000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f726465720000009f1a3ceb0065e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715ffffffffffffffff00000000000000010000000000000018000000003bb83d100000009f1a3ceb000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000099f05d", - "digest": "0xe800bade64d89249c8099c100237a26c7a99341d8c66ce8c51a082fdb208a3f5", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5aa000000000000000000000000000099f05d", - "digest": "0xdadffe63a5bff07a9dde93a809bc8e939797272685ff40330ce042c4e96557a6", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": "1165550000000", - "assetId": "0x65e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000002bf9000000003bb83d1000000000000000010000000000000001000000006a91c533", - "digest": "0x720069e10d5ecf29cae86d28729e53c57015468119a14771003718f4c0aeeee9", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100714", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100089", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5aa000000000000000000000000000099f05d", - "digest": "0xdadffe63a5bff07a9dde93a809bc8e939797272685ff40330ce042c4e96557a6", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099861", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1880422", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000000000000000000000", - "digest": "0x067440636507a74b9e44f0abaf93b128c83ad6fdf343241b0720ac7f19169826", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099389", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5aa000000000000000000000000000099f05d", - "digest": "0xdadffe63a5bff07a9dde93a809bc8e939797272685ff40330ce042c4e96557a6", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099161", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "683340000000", - "assetId": "0x65e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869017", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000002bfa000000003bb83d1000000000000000010000000000000001000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5000000000000000100000000000000010000009f1a3ceb00000000003bb83d10000000006a91c533", - "digest": "0xa5348bc6f6ed29782c07f1c16e1895612475da2f9e0abe324decfcec4947250b", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097769", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000002bfa000000003bb83d1000000000000000010000000000000001", - "digest": "0x16ad8810da07e49ff9822d407f8d69ad467c3e80e519fadc9fa90fb5271b5311", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67095673", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "183546", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "337", - "totalGas": "193374", - "transactionId": "0xcf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf5669" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x8bf05b0dd9c15f80b5c8d3e368f5370acf38977a5ebbc1bc57c77f485f01a06f7a279c29cbaf27a4f5659d5c87807f6dc3025d9470deaba453f44ad45dfe9f94" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x86f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd286", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "146637", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10027", - "utxoId": "0x328072da5c8cd6b3dc2e6aea822c942782a3199128bad7f3d5d6fe5534cc04ff0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70000", - "utxoId": "0xcf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf56690002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x997b201f325d84416d02d1d4871f2f4ce332a302b9ca4da98dad041ac159b774", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xa462bf7aba1976bc16fa9de5a0f4ed92129f72684129aad8a38bee59f617878b", - "txPointer": "03bd1aa60068", - "utxoId": "0x10ff7e8eb8d8cbece9df088a6b88f87bdd5791ac869db4bcdd26cb3181cbaafa0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xffe69c663782c0b9af73985b941767cbccd7491335c76240813b641162fd9cbf", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x859bd35c9ca01f0a592bd8ded9d81533c09a6527526bb802591b97a9c16a351b", - "txPointer": "03bd1aa60068", - "utxoId": "0x10ff7e8eb8d8cbece9df088a6b88f87bdd5791ac869db4bcdd26cb3181cbaafa0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "145991", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x25a236dc8f07d03e58fe4fcdd7ce4ee9def5c3089e1c429c39afda13901528a7", - "inputIndex": "2", - "stateRoot": "0x55ff3669374937b78ed207f1ae3418477af7869894c91e7dc69cf42a287ce391" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x24e5ed93d4ddcc7cbc632c4942395179b170e90e703a404c30d4880e3182f07c", - "inputIndex": "3", - "stateRoot": "0x4aaad1c88cf2d5411f66a337081d6bf859b46b1c79a477fb38b7ed9f2e9eb769" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40b9f7bd58a5e37528057d908e18b064f26d88eafdb8348fc689ed15fc9b35fd76000000000000001800000000000003f0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000068a885939ff2878e06acca3c9186b68be53fbd7c08fcccdab50a89807d5e679556f87d00a9ff1ee090d2913602cd0942f86b4b190999809768d753070436c60800000000000000000000006a91c5aa000000000000000000000000000a759f110000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003800000411a047918000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000448762cc2b36c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041197ef5680000000003ebe93ec0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f726465720000000036fee15ce3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff00000000000000010000000000000018000004119cb40a800000000036fee15c0000000000000003000000000000006400000000000210ac0000000003bd1aaa0000000000000000328072da5c8cd6b3dc2e6aea822c942782a3199128bad7f3d5d6fe5534cc04ff0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023ccdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000001cf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf566900000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000110ff7e8eb8d8cbece9df088a6b88f87bdd5791ac869db4bcdd26cb3181cbaafa0000000000000002997b201f325d84416d02d1d4871f2f4ce332a302b9ca4da98dad041ac159b774a462bf7aba1976bc16fa9de5a0f4ed92129f72684129aad8a38bee59f617878b0000000003bd1aa60000000000000068f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6000000000000000110ff7e8eb8d8cbece9df088a6b88f87bdd5791ac869db4bcdd26cb3181cbaafa0000000000000001ffe69c663782c0b9af73985b941767cbccd7491335c76240813b641162fd9cbf859bd35c9ca01f0a592bd8ded9d81533c09a6527526bb802591b97a9c16a351b0000000003bd1aa600000000000000689423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023a47f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000225a236dc8f07d03e58fe4fcdd7ce4ee9def5c3089e1c429c39afda13901528a755ff3669374937b78ed207f1ae3418477af7869894c91e7dc69cf42a287ce3910000000000000001000000000000000324e5ed93d4ddcc7cbc632c4942395179b170e90e703a404c30d4880e3182f07c4aaad1c88cf2d5411f66a337081d6bf859b46b1c79a477fb38b7ed9f2e9eb769000000000000004041fcfab0b3cfcca81dc8f4f996ff313db2980f04bfef6097b316afb988dbf6890291fa64319ce657c4901638b36d8b64ea84c3f0145dd7a7c1e590cfe0942b6f", - "receiptsRoot": "0xb9f7bd58a5e37528057d908e18b064f26d88eafdb8348fc689ed15fc9b35fd76", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000068a885939ff2878e06acca3c9186b68be53fbd7c08fcccdab50a89807d5e679556f87d00a9ff1ee090d2913602cd0942f86b4b190999809768d753070436c60800000000000000000000006a91c5aa000000000000000000000000000a759f110000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003800000411a047918000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000448762cc2b36c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041197ef5680000000003ebe93ec0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f726465720000000036fee15ce3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff00000000000000010000000000000018000004119cb40a800000000036fee15c0000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "13064", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "13064", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f11", - "digest": "0x4127ceada84bc6dfa3fb401a8fe9c79635ef0aae7998e7100400f6bb6400642c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147872", - "ptr": "67107338", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f11", - "digest": "0xf227dba5adb6f3023b68d14b6aa2ee2647b701d64882ec7e33402c3d1ef0edf1", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67104906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4959672", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67108036", - "param2": "67108004", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "2471901257998", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408528", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c0000041197ef568000000000000000000000000000000003000000006a91c533", - "digest": "0x75f9ea51d511894122bce1c4441e65ec220beb0c593c447e5e5055065c08708f", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402876", - "ptr": "67099738", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380044", - "ptr": "67099113", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f11", - "digest": "0xf227dba5adb6f3023b68d14b6aa2ee2647b701d64882ec7e33402c3d1ef0edf1", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67098885", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4876604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107984", - "param2": "67107952", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "176410800", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408528", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003800000411a047918000000000000000010000000000000003000000006a91c533", - "digest": "0x334295522e46cb5f5134dec5d7a871ee3f7b8a3e47cb1c09c31b522d1d5e50cc", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402876", - "ptr": "67093765", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380044", - "ptr": "67093140", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f11", - "digest": "0xf227dba5adb6f3023b68d14b6aa2ee2647b701d64882ec7e33402c3d1ef0edf1", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67092912", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4798882", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107930", - "param2": "67107890", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462776", - "ptr": "67092440", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375772", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f11", - "digest": "0xf227dba5adb6f3023b68d14b6aa2ee2647b701d64882ec7e33402c3d1ef0edf1", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67092212", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "4709266801331", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4787354", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107870", - "param2": "67107846", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000041197ef56800000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000003000000003ebe93ec0000041197ef5680000000006a91c533", - "digest": "0x31fe3bf5ab227132c8867a2cac3ab4872bc97e68f796b138b641cf77b7b406f8", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433508", - "ptr": "67090820", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000041197ef568000000000000000000000000000000003", - "digest": "0xe60e5880307311f4331f24b12c407cfebde837e7eb7fadea1f9d3bd248122d8f", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67086468", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f11", - "digest": "0xf227dba5adb6f3023b68d14b6aa2ee2647b701d64882ec7e33402c3d1ef0edf1", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67086240", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "922673500", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4712893", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107826", - "param2": "67107802", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000029000004119cb40a800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000100000000000000030000000036fee15c000004119cb40a80000000006a91c533", - "digest": "0xba985799fcf7e48c66b5850f77edfe512a4c9f848b8f3032f8b4ab01701edbd2", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433508", - "ptr": "67084848", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000029000004119cb40a8000000000000000010000000000000003", - "digest": "0x9fd1364d660b209618fa5d5b01f995140ad98e0c8a94cdd829eea56f82f9654c", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67080544", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57676", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "360746", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "646", - "totalGas": "370987", - "transactionId": "0x86f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd286" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x41fcfab0b3cfcca81dc8f4f996ff313db2980f04bfef6097b316afb988dbf6890291fa64319ce657c4901638b36d8b64ea84c3f0145dd7a7c1e590cfe0942b6f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x43f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b90", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "181236", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1002a", - "utxoId": "0xc7ef39769605dd5a9415c7b2a7ba5e2152504d2e94af1efc5807b7de3729f6b00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x24e5ed93d4ddcc7cbc632c4942395179b170e90e703a404c30d4880e3182f07c", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xfb200bcf0805de8a350d4076b1dc28e8182a35172806e2457b24603e15152ba4", - "txPointer": "03bd1aa70001", - "utxoId": "0x86f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd2860003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70001", - "utxoId": "0x86f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd2860001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x25a236dc8f07d03e58fe4fcdd7ce4ee9def5c3089e1c429c39afda13901528a7", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x47c534ebd28ccede6706013f3203c13cc48975db774ad3562f927177daf19abd", - "txPointer": "03bd1aa70001", - "utxoId": "0x86f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd2860002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "180801", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x232fc49aa2a6097ae73302e02841c788697c22776c6f7cb152665742e191d4d9", - "inputIndex": "1", - "stateRoot": "0xb899eeb833eb352a60108a5c1025601ec9153407c5878b569d425a8aaeee2bd3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xff3a0c98cfe3a4aca4d891eab89686b4cd31b487b13d23119051faa16012d06d", - "inputIndex": "3", - "stateRoot": "0xa5c4de4f42c9f25b0d317f5331018230beb114970c4ebdbe162bdb09026f1dfd" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b401e345f6722c994dd3905bfce3d81bbf30bcdad430ef54e770552cb39e221138d000000000000001800000000000003f0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a61eb6e0ddb59896c2c0667de51cd0ff90281876f9209e56504c1d014b03723999302980d578581bb93bca1b2c4792a23ac0b1c446f170a693918317d5553b7300000000000000000000006a91c5aa000000000000000000000000000a759f120000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003800000411a047918000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000004d32a47a27c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000411962593000000000046aea1c80000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff00000000000000010000000000000018000004119b82dd80000000004a817c800000000000000003000000000000006400000000000210ac0000000003bd1aaa0000000000000000c7ef39769605dd5a9415c7b2a7ba5e2152504d2e94af1efc5807b7de3729f6b00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002c3f4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002a0000000000000000000000000000000000000000000000000000000000000000000000000000000186f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd286000000000000000324e5ed93d4ddcc7cbc632c4942395179b170e90e703a404c30d4880e3182f07cfb200bcf0805de8a350d4076b1dc28e8182a35172806e2457b24603e15152ba40000000003bd1aa700000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000186f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd28600000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000186f4842d3481ae36be8834aaeff9f946c643ef3bad9d0895d8ac30d4ceedd286000000000000000225a236dc8f07d03e58fe4fcdd7ce4ee9def5c3089e1c429c39afda13901528a747c534ebd28ccede6706013f3203c13cc48975db774ad3562f927177daf19abd0000000003bd1aa70000000000000001f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002c241f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001232fc49aa2a6097ae73302e02841c788697c22776c6f7cb152665742e191d4d9b899eeb833eb352a60108a5c1025601ec9153407c5878b569d425a8aaeee2bd3000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003ff3a0c98cfe3a4aca4d891eab89686b4cd31b487b13d23119051faa16012d06da5c4de4f42c9f25b0d317f5331018230beb114970c4ebdbe162bdb09026f1dfd0000000000000040f7c50a41933a3d6015d136c666de4c9f8552165c79c88d0a61fc442b5d9344935bfba8eefd0aa650db3d1352d79388ef020f23fd45cbf172ee5a99973e0fb920", - "receiptsRoot": "0x1e345f6722c994dd3905bfce3d81bbf30bcdad430ef54e770552cb39e221138d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a61eb6e0ddb59896c2c0667de51cd0ff90281876f9209e56504c1d014b03723999302980d578581bb93bca1b2c4792a23ac0b1c446f170a693918317d5553b7300000000000000000000006a91c5aa000000000000000000000000000a759f120000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003800000411a047918000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000004d32a47a27c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000411962593000000000046aea1c80000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff00000000000000010000000000000018000004119b82dd80000000004a817c800000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "13064", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "13064", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f12", - "digest": "0xd434dc87a995309d21ab00b63805498c57dcf0626113c539e24351c3eaed6c81", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147872", - "ptr": "67107338", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f12", - "digest": "0x556e287b991591290fcb4a5f0011230fbc65bf7561446a15e5dc0a4500535ca2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67104906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4959672", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67108036", - "param2": "67108004", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380044", - "ptr": "67104489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f12", - "digest": "0x556e287b991591290fcb4a5f0011230fbc65bf7561446a15e5dc0a4500535ca2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67104261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4944954", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107984", - "param2": "67107952", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380044", - "ptr": "67103844", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f12", - "digest": "0x556e287b991591290fcb4a5f0011230fbc65bf7561446a15e5dc0a4500535ca2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67103616", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4932350", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107930", - "param2": "67107890", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462776", - "ptr": "67103144", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375772", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f12", - "digest": "0x556e287b991591290fcb4a5f0011230fbc65bf7561446a15e5dc0a4500535ca2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67102916", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5304993948284", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4920239", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107870", - "param2": "67107846", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c00000411962593000000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000000000000000000030000000046aea1c80000041196259300000000006a91c533", - "digest": "0x4f22740c13699f994800aa8d6e46f37b85e5193be890d878c1afed4d02a17f8a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433508", - "ptr": "67101524", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000004119625930000000000000000000000000000000003", - "digest": "0xfe78575ada5f20ac537ed3195ad9bc91bafe4da4cdf8ca7bf82ae7064ba373b1", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67097476", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f12", - "digest": "0x556e287b991591290fcb4a5f0011230fbc65bf7561446a15e5dc0a4500535ca2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67097248", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4837329", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107826", - "param2": "67107802", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d000004119b82dd800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000010000000000000003000000004a817c80000004119b82dd80000000006a91c533", - "digest": "0x93bceb5f56c7a26b79c8a517d87d8b9265f68c1f2c90504f8f0341a3c50693ce", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433508", - "ptr": "67095856", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d000004119b82dd8000000000000000010000000000000003", - "digest": "0xf1d5c26cc87bac6130f02f105b08bbf28e55cae77522c21af2acb1e41c9db235", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67091552", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57676", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "239843", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "435", - "totalGas": "250084", - "transactionId": "0x43f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b90" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf7c50a41933a3d6015d136c666de4c9f8552165c79c88d0a61fc442b5d9344935bfba8eefd0aa650db3d1352d79388ef020f23fd45cbf172ee5a99973e0fb920" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x21857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb36", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151519", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10029", - "utxoId": "0xcd41cebc60d4f43a0114f02d5d19c4179d2912bd079ca11dcce5140c32f3a9df0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7e1d51b6149854c8edcf6e4eed4109285640490926836a5dba66de4b4b6acc7e", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xf0b2785e02683dde5a4bccd582f10a08dd4190d60fe10a6ada651d4839463dcd", - "txPointer": "03bd1aa60060", - "utxoId": "0xe40b46aef7760c364c825fd1bc5c33fbd6de4f7972b6be2a33ca18d6ce2fe1a60003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70002", - "utxoId": "0x43f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b900002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbd235284983b45457af7c9a8fe6713eb044ae9def506248e44c2b16824d4ea24", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xf5e2f66fc6e2761422d60cb1abfe06c027000777fe6ac1c3640a01106cd61d8d", - "txPointer": "03bd1aa60060", - "utxoId": "0xe40b46aef7760c364c825fd1bc5c33fbd6de4f7972b6be2a33ca18d6ce2fe1a60002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151164", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8edec0eb3596ae109c03cbfc2e64774cb6655e0add00135f6e1d284ab3aa2302", - "inputIndex": "1", - "stateRoot": "0x92ec1c69a43af53ce79ff7b80cae8f037ead702e01becbfe16c7f5cb1c322eb9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe6b41abe375d544f2a092e5b250d9fcf37d05bd170ff46a82493c9069d4d8465", - "inputIndex": "3", - "stateRoot": "0xd1435faba16d2627bdc3eb01816e028f7944c655874679ad285dbb99373a6810" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805ee212cc0ca3c153b22424e026332477d64951264f57d5aee819c33d7ad50ed6000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000006f97c7535eb93fa9ad5cf1ab900572426e8907cc832cb81c2b41f357e39ae4a7795087dd9397df227ce20cff0417d0595d8fcd1f1c3971e522b3e0ab92c301300000000000000000000006a91c5aa000000000000000000000000000313570300000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c0000001ca39475e0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000030e21d48013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001ca17ce080000000030e21d4800000000000000001000000000000006400000000000210ac0000000003bd1aaa0000000000000000cd41cebc60d4f43a0114f02d5d19c4179d2912bd079ca11dcce5140c32f3a9df0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024fdff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002900000000000000000000000000000000000000000000000000000000000000000000000000000001e40b46aef7760c364c825fd1bc5c33fbd6de4f7972b6be2a33ca18d6ce2fe1a600000000000000037e1d51b6149854c8edcf6e4eed4109285640490926836a5dba66de4b4b6acc7ef0b2785e02683dde5a4bccd582f10a08dd4190d60fe10a6ada651d4839463dcd0000000003bd1aa600000000000000608d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe000000000000000143f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b900000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e40b46aef7760c364c825fd1bc5c33fbd6de4f7972b6be2a33ca18d6ce2fe1a60000000000000002bd235284983b45457af7c9a8fe6713eb044ae9def506248e44c2b16824d4ea24f5e2f66fc6e2761422d60cb1abfe06c027000777fe6ac1c3640a01106cd61d8d0000000003bd1aa60000000000000060c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024e7cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018edec0eb3596ae109c03cbfc2e64774cb6655e0add00135f6e1d284ab3aa230292ec1c69a43af53ce79ff7b80cae8f037ead702e01becbfe16c7f5cb1c322eb9000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003e6b41abe375d544f2a092e5b250d9fcf37d05bd170ff46a82493c9069d4d8465d1435faba16d2627bdc3eb01816e028f7944c655874679ad285dbb99373a68100000000000000040220957246a8f794e44b955e105f09df45e6a0fa4ddc72b955aa8caa7f9a55f28771946ede31409314aab617fb4f5fb75b6e418fb426fbaac5ea625bbd820c70b", - "receiptsRoot": "0x5ee212cc0ca3c153b22424e026332477d64951264f57d5aee819c33d7ad50ed6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000006f97c7535eb93fa9ad5cf1ab900572426e8907cc832cb81c2b41f357e39ae4a7795087dd9397df227ce20cff0417d0595d8fcd1f1c3971e522b3e0ab92c301300000000000000000000006a91c5aa000000000000000000000000000313570300000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c0000001ca39475e0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000030e21d48013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001ca17ce080000000030e21d4800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa0000000000000000000000000003135703", - "digest": "0xfc31af3b8b6c014b13aa0926763f9526473d8f082f405f6fef625aa70347fadb", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5aa0000000000000000000000000003135703", - "digest": "0x610dd7a94c428d9cfeaccc3bf24ddebdf44b7130677e2fadf53a7069e099107b", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "10022000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c0000001ca39475e000000000000000010000000000000001000000006a91c533", - "digest": "0xd218dd140bd09aa9d7e037b76a33abc1db8400ca9d76a6d5535b83617b854909", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100714", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100089", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5aa0000000000000000000000000003135703", - "digest": "0x610dd7a94c428d9cfeaccc3bf24ddebdf44b7130677e2fadf53a7069e099107b", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099861", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1880424", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099389", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5aa0000000000000000000000000003135703", - "digest": "0x610dd7a94c428d9cfeaccc3bf24ddebdf44b7130677e2fadf53a7069e099107b", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099161", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "13122000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869019", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001a0000001ca17ce080000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000010000000000000001000000030e21d4800000001ca17ce080000000006a91c533", - "digest": "0x8d92194416a79b32214874b25cbbd6fca03c96caf61d7ccc2ababca4d2face98", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097769", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001a0000001ca17ce08000000000000000010000000000000001", - "digest": "0x5e35b443a16f4696daf81efe8de895a82a155bd56bb6bee85e0776ca59efe2c6", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67094457", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "193978", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "355", - "totalGas": "203806", - "transactionId": "0x21857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb36" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x220957246a8f794e44b955e105f09df45e6a0fa4ddc72b955aa8caa7f9a55f28771946ede31409314aab617fb4f5fb75b6e418fb426fbaac5ea625bbd820c70b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa48", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "443948", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1002b", - "utxoId": "0xf668465be6ae4b9086f7ada8fdf6294bc2f570a9138629011f031f780a17a08e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x10a45d725a4f0b9f9ed8bed36227ed989614d10f44589a240eb9b7b5319db7d9", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xf2de9c0cc525344ab8c1905af1fbbaae1ee828c537d47225e6f85d9a35e96995", - "txPointer": "03bd1aa70002", - "utxoId": "0x43f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b900001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70003", - "utxoId": "0x21857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb360002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbb730d55f5541a2fcf033c96d6f8c82a8eef64a200a401b4cc4307ae5c8dc326", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xae6f31bce3869d59630aa301a5bf5b5368cdb983d301b22d8cbaedc2395dc7a1", - "txPointer": "03bd1aa70002", - "utxoId": "0x43f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b900003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "443664", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x370d5ccb14299665a4c441fa584f876a97d3a910ec832753fda0b4be3f6bd648", - "inputIndex": "1", - "stateRoot": "0xce634226e163bb71f9c750fb0c393e2ca5789599252b3068c8b175098ff7a485" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xdeb185d0b155cbfe5e6ddd8e618b5cb7b165972885197671447a51bad97fb690", - "inputIndex": "3", - "stateRoot": "0xe421cbcbdc4a669780d35e8da09bfcc94673c0512edda1788cce59841deae9f6" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40c839b1f2976faac43647534bb1a43d03c3b301243ccf3e0e863ed8e499b80f440000000000000018000000000000035c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000394667d893dc5cd19d1e7b8f02094e197c24c53913e7552ed71d675e138bdef6a4cccff8961558c09a73cb88419f8da56533fea226f3afb039e791229605c9f800000000000000000000006a91c5aa000000000000000000000000000a759f130000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003800000411a047918000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000515f677d2e06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041191f97580000000004a817c80000000000000000300000000000000000000006400000000000210ac0000000003bd1aaa0000000000000000f668465be6ae4b9086f7ada8fdf6294bc2f570a9138629011f031f780a17a08e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006c62cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002b0000000000000000000000000000000000000000000000000000000000000000000000000000000143f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b90000000000000000110a45d725a4f0b9f9ed8bed36227ed989614d10f44589a240eb9b7b5319db7d9f2de9c0cc525344ab8c1905af1fbbaae1ee828c537d47225e6f85d9a35e969950000000003bd1aa700000000000000029423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000121857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb3600000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000143f6d53a3afea9ef6a6e0c5fcbd3f7ab122f6579c2bd2a944ea6ef34a3d53b900000000000000003bb730d55f5541a2fcf033c96d6f8c82a8eef64a200a401b4cc4307ae5c8dc326ae6f31bce3869d59630aa301a5bf5b5368cdb983d301b22d8cbaedc2395dc7a10000000003bd1aa70000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006c510f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001370d5ccb14299665a4c441fa584f876a97d3a910ec832753fda0b4be3f6bd648ce634226e163bb71f9c750fb0c393e2ca5789599252b3068c8b175098ff7a485000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003deb185d0b155cbfe5e6ddd8e618b5cb7b165972885197671447a51bad97fb690e421cbcbdc4a669780d35e8da09bfcc94673c0512edda1788cce59841deae9f60000000000000040a0d1ab45c6915bd53941d1a28fc47e697e27e1b9179ac4e5c2767a71e3d75ad29c5195bbbba6480c028fc95e3f1e6e9bd748398bff3ea5f69e3009fb49be208a", - "receiptsRoot": "0xc839b1f2976faac43647534bb1a43d03c3b301243ccf3e0e863ed8e499b80f44", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000394667d893dc5cd19d1e7b8f02094e197c24c53913e7552ed71d675e138bdef6a4cccff8961558c09a73cb88419f8da56533fea226f3afb039e791229605c9f800000000000000000000006a91c5aa000000000000000000000000000a759f130000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003800000411a047918000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000515f677d2e06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041191f97580000000004a817c800000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12920", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12920", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f13", - "digest": "0xa752c90033fed431fbef1613557582fb73454508d50ff84c99e808737ecc5c0b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147728", - "ptr": "67107518", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f13", - "digest": "0x9973b33e2d4573c9c732b0b84425661a3a19ffa805ced861ed4c33490aea6548", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67105234", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4961322", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108172", - "param2": "67108140", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379900", - "ptr": "67104817", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f13", - "digest": "0x9973b33e2d4573c9c732b0b84425661a3a19ffa805ced861ed4c33490aea6548", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67104589", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4946604", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108120", - "param2": "67108088", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379900", - "ptr": "67104172", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f13", - "digest": "0x9973b33e2d4573c9c732b0b84425661a3a19ffa805ced861ed4c33490aea6548", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67103944", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4934000", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108066", - "param2": "67108026", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462632", - "ptr": "67103472", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375628", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f13", - "digest": "0x9973b33e2d4573c9c732b0b84425661a3a19ffa805ced861ed4c33490aea6548", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67103244", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5591887500000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4921889", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108006", - "param2": "67107982", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000290000041191f975800000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000003000000004a817c800000041191f97580000000006a91c533", - "digest": "0xb3fbb9cc2236524d0dab8af7ab88a8d14350dd653235c330846db2cdb8553d5f", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433364", - "ptr": "67101852", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000290000041191f9758000000000000000000000000000000003", - "digest": "0x2ffee0c54576922226c450298422bb6a1730c58abc229dc07ce10e5956a64e86", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379596", - "ptr": "67098364", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57532", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "152963", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "284", - "totalGas": "163008", - "transactionId": "0x5b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa48" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa0d1ab45c6915bd53941d1a28fc47e697e27e1b9179ac4e5c2767a71e3d75ad29c5195bbbba6480c028fc95e3f1e6e9bd748398bff3ea5f69e3009fb49be208a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x9197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "179558", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1002d", - "utxoId": "0x8e1df774edfbffc950939c12b4d97be97866642291b9ab42f0a0aee0167452880000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9e40b25707f7342fd8a3c1af31b6421ca7c985cae1deb7013e7816566b19117d", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x26a55dfcb0ebac064969bf5d2fe83118245f56bda9025421ca65f74870d9f096", - "txPointer": "03bd1aa70004", - "utxoId": "0x5b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa480001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70004", - "utxoId": "0x5b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa480002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x42db0996a3822bb738f0b406261db9fe267f0bb638892c21570a73317dca58df", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x8d984f94c86c6c9f1bf88ad46279fbbf82162a925d1397e9dffe8ab57a0d37e7", - "txPointer": "03bd1aa70004", - "utxoId": "0x5b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa480003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "179118", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x208c2a0573e66d1862dff620c9dcacac780cf22f4d3c7b1e2dee94bb14f26b62", - "inputIndex": "1", - "stateRoot": "0x35f9f955b8964366ee835467979f712a4b3b3580c1ddf33d12c1a06e7418e41a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x82d0844365decc49abfcdb5b9ee94566966666a3423060840e68e6d881cbaa25", - "inputIndex": "3", - "stateRoot": "0xb535c21480f1f00e6578fe928db62bf55a19d6f177d3d4547510116dd0343307" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40125eb3d205f67dda3363bbad0b2d7ea276a97fe4978462f3d8417d738df70fdc00000000000000180000000000000354000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b3289677b049573c06f1874b36102df67068175d7adb20164750b3c80c360616b5f1501f64613fefb95f31fcf8132e35ab2f67f1e8da1a62f3580486e1a5d35600000000000000000000006a91c5aa000000000000000000000000000a759f150000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000290000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000515f677d2e06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041191f97580000000004a817c800000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff00000000000000010000000000000018000004119b82dd80000000004a817c80000000000000000300000000000000000000006400000000000210ac0000000003bd1aab00000000000000008e1df774edfbffc950939c12b4d97be97866642291b9ab42f0a0aee0167452880000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002bd66f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002d000000000000000000000000000000000000000000000000000000000000000000000000000000015b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa4800000000000000019e40b25707f7342fd8a3c1af31b6421ca7c985cae1deb7013e7816566b19117d26a55dfcb0ebac064969bf5d2fe83118245f56bda9025421ca65f74870d9f0960000000003bd1aa700000000000000049423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000015b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa4800000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015b136f7c8f1eb6cdcb187d908e1c52ef28aeafb6f369185c8a1ac9d31617aa48000000000000000342db0996a3822bb738f0b406261db9fe267f0bb638892c21570a73317dca58df8d984f94c86c6c9f1bf88ad46279fbbf82162a925d1397e9dffe8ab57a0d37e70000000003bd1aa70000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002bbaef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001208c2a0573e66d1862dff620c9dcacac780cf22f4d3c7b1e2dee94bb14f26b6235f9f955b8964366ee835467979f712a4b3b3580c1ddf33d12c1a06e7418e41a00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000382d0844365decc49abfcdb5b9ee94566966666a3423060840e68e6d881cbaa25b535c21480f1f00e6578fe928db62bf55a19d6f177d3d4547510116dd0343307000000000000004033851db8b79414dc3151f6517bd62a377301ea4452691a1aec3c212a054bf2a305810e675d2e165837a5aa68d59bdb8a851b0df2fe95c772031150738e22832b", - "receiptsRoot": "0x125eb3d205f67dda3363bbad0b2d7ea276a97fe4978462f3d8417d738df70fdc", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b3289677b049573c06f1874b36102df67068175d7adb20164750b3c80c360616b5f1501f64613fefb95f31fcf8132e35ab2f67f1e8da1a62f3580486e1a5d35600000000000000000000006a91c5aa000000000000000000000000000a759f150000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000290000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000515f677d2e06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041191f97580000000004a817c800000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff00000000000000010000000000000018000004119b82dd80000000004a817c800000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12912", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f15", - "digest": "0x681dca0738e25079d4411918b26c7a99d59fdd4e759d9889762a3e1ceb0291f2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147720", - "ptr": "67107526", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f15", - "digest": "0x2480d0cca963afcd7beca79fc9977e0a8dc1c50c899113c102ceadc56345f9bc", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67105250", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4961325", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108172", - "param2": "67108140", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "5591887500000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408376", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000290000041191f9758000000000000000000000000000000003000000006a91c533", - "digest": "0x9cf0074e0baf315186c39e49d909d4d584dcf26eae50e31c14bfd168231742c0", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402724", - "ptr": "67100810", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379892", - "ptr": "67100185", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f15", - "digest": "0x2480d0cca963afcd7beca79fc9977e0a8dc1c50c899113c102ceadc56345f9bc", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67099957", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4882164", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108118", - "param2": "67108078", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462624", - "ptr": "67099485", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375620", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f15", - "digest": "0x2480d0cca963afcd7beca79fc9977e0a8dc1c50c899113c102ceadc56345f9bc", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67099257", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5591887500000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4870759", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108058", - "param2": "67108034", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a0000041191f975800000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000003000000004a817c800000041191f97580000000006a91c533", - "digest": "0xbc1b9c987ecb2a76348fdc613e9952be902a111f7034c0848ec74b3031402055", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433356", - "ptr": "67097865", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a0000041191f9758000000000000000000000000000000003", - "digest": "0x2530f968a4dcf222a5c095c06baf85be590c17512ab6f7cad0c27aaffe208778", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379588", - "ptr": "67094377", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f15", - "digest": "0x2480d0cca963afcd7beca79fc9977e0a8dc1c50c899113c102ceadc56345f9bc", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166488", - "ptr": "67094149", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4802114", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306696", - "len": null, - "nonce": null, - "param1": "67108014", - "param2": "67107990", - "pc": "306696", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e000004119b82dd800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000010000000000000003000000004a817c80000004119b82dd80000000006a91c533", - "digest": "0xa1e5f5e4594f1e9c7546d37a173564b97a094470378bb51cd2b5c84354a07351", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433356", - "ptr": "67092757", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e000004119b82dd8000000000000000010000000000000003", - "digest": "0xc2afbd74b8c07c71488861937d75e1be20d18f0bcd671702b38a0fd3be11e3ed", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306696", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379588", - "ptr": "67091069", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57524", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "242716", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "440", - "totalGas": "252751", - "transactionId": "0x9197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x33851db8b79414dc3151f6517bd62a377301ea4452691a1aec3c212a054bf2a305810e675d2e165837a5aa68d59bdb8a851b0df2fe95c772031150738e22832b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xcce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e7", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "178080", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1002e", - "utxoId": "0xa2e3aab3ba9557b5c3fa38f1e8867a41c1dca7bf2f77256e7569de806a14c22e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70005", - "utxoId": "0x9197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x208c2a0573e66d1862dff620c9dcacac780cf22f4d3c7b1e2dee94bb14f26b62", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xf04455a4e54520e24118dbee70573b5a593668db50d7d69f959c05b9eba3c018", - "txPointer": "03bd1aa70005", - "utxoId": "0x9197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x82d0844365decc49abfcdb5b9ee94566966666a3423060840e68e6d881cbaa25", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xed716ee901d8bd53f9df980ed21f8c9f3a7566840f5b043e92b444b745e84bea", - "txPointer": "03bd1aa70005", - "utxoId": "0x9197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "177512", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7befbedc3e765314e40d3c6d10c0f738274bae3652f38b9e0e77cf5c7fad6dc7", - "inputIndex": "2", - "stateRoot": "0x4ca11bb130eeaaa9bdf13652c67c8912566bf46b74623f973bdf1a2ba0422d6c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x13aea9b65865eb84e8989919f718745a25a8f7b66614c3635d6e3fd168da5a73", - "inputIndex": "3", - "stateRoot": "0xdb65931dd26389bda30027e491b4ea3cf3c621069c6bb814c707aca2a16b6d03" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40446712a0040cc2db7e3f7f3637fd24c4f402c3b66fcf63e0a147bfd8c8276f3a00000000000000180000000000000400000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007a6e7d5d7e108d4ab82010ef662c0132e393239e680be5150b5e5c7eea84ea7030cc3586ebc91753e130f5d83cf8c96b3bafc123d78c962a4e752f6dd4dab48500000000000000000000006a91c5aa000000000000000000000000000a759f140000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c000004119625930000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000029000004119cb40a8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d000004119b82dd8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000006400000000000210ac0000000003bd1aab0000000000000000a2e3aab3ba9557b5c3fa38f1e8867a41c1dca7bf2f77256e7569de806a14c22e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002b7a0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000019197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000019197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c0000000000000001208c2a0573e66d1862dff620c9dcacac780cf22f4d3c7b1e2dee94bb14f26b62f04455a4e54520e24118dbee70573b5a593668db50d7d69f959c05b9eba3c0180000000003bd1aa700000000000000059423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000019197b2be31f434638f3265da88c01b2bdf49be6874172ce76ce8e0e2229f2d4c000000000000000382d0844365decc49abfcdb5b9ee94566966666a3423060840e68e6d881cbaa25ed716ee901d8bd53f9df980ed21f8c9f3a7566840f5b043e92b444b745e84bea0000000003bd1aa70000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002b568f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000027befbedc3e765314e40d3c6d10c0f738274bae3652f38b9e0e77cf5c7fad6dc74ca11bb130eeaaa9bdf13652c67c8912566bf46b74623f973bdf1a2ba0422d6c0000000000000001000000000000000313aea9b65865eb84e8989919f718745a25a8f7b66614c3635d6e3fd168da5a73db65931dd26389bda30027e491b4ea3cf3c621069c6bb814c707aca2a16b6d030000000000000040b502ddf8a3caf7f7b3d1fea88f1d60b59c24dcaabfcfcec93d7ad4e4b5f91a50abe31d7a72bd69484b6412a8c417140ca22b6cc51d08cda9bd40b3b146077d42", - "receiptsRoot": "0x446712a0040cc2db7e3f7f3637fd24c4f402c3b66fcf63e0a147bfd8c8276f3a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007a6e7d5d7e108d4ab82010ef662c0132e393239e680be5150b5e5c7eea84ea7030cc3586ebc91753e130f5d83cf8c96b3bafc123d78c962a4e752f6dd4dab48500000000000000000000006a91c5aa000000000000000000000000000a759f140000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c000004119625930000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000029000004119cb40a8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d000004119b82dd8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "13080", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "13080", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f14", - "digest": "0xbbf6826a541ab98cb879aa5aa52512b451bb36d5bb1f6e9047a732bbdec4bcc6", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147888", - "ptr": "67107322", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f14", - "digest": "0xf4f5be4c44e7ea194cd4ed102644c6768210d6ee2867b6b0306acf7614e61a7d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67104874", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4959667", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67108036", - "param2": "67108004", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "4709266801331", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000041197ef568000000000000000000000000000000003000000006a91c533", - "digest": "0x1ce08e67b4cdeca610cfe1d8b52e833b594711db140ed6f37f6a74cf903668a7", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402892", - "ptr": "67099482", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67098857", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f14", - "digest": "0xf4f5be4c44e7ea194cd4ed102644c6768210d6ee2867b6b0306acf7614e61a7d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67098629", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4871154", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107984", - "param2": "67107952", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "5304993948284", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000004119625930000000000000000000000000000000003000000006a91c533", - "digest": "0xb1202ad126015acdbcd076b8e68a504b6f93ffee59727369d9f9cb98c78a482f", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402892", - "ptr": "67093509", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67092884", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f14", - "digest": "0xf4f5be4c44e7ea194cd4ed102644c6768210d6ee2867b6b0306acf7614e61a7d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67092656", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4798992", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107932", - "param2": "67107900", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "922673500", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000029000004119cb40a8000000000000000010000000000000003000000006a91c533", - "digest": "0x668b002c060123ec76c22843c48be224c800ee18eae58738399e92b1e225d214", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402892", - "ptr": "67087592", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67086967", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f14", - "digest": "0xf4f5be4c44e7ea194cd4ed102644c6768210d6ee2867b6b0306acf7614e61a7d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67086739", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4720969", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107880", - "param2": "67107848", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d000004119b82dd8000000000000000010000000000000003000000006a91c533", - "digest": "0xdc9b66f9c617a87c329ea38e17410abde6a041cf6ff58a15622d0f091c6755b5", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402892", - "ptr": "67085795", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67085170", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f14", - "digest": "0xf4f5be4c44e7ea194cd4ed102644c6768210d6ee2867b6b0306acf7614e61a7d", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67084942", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4692316", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107826", - "param2": "67107786", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462792", - "ptr": "67084470", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375788", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57692", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "316120", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "568", - "totalGas": "326383", - "transactionId": "0xcce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e7" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb502ddf8a3caf7f7b3d1fea88f1d60b59c24dcaabfcfcec93d7ad4e4b5f91a50abe31d7a72bd69484b6412a8c417140ca22b6cc51d08cda9bd40b3b146077d42" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x70230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "329510", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1002c", - "utxoId": "0xe6a1b27ab9112e85d4d6e8c92dc4be8b548bd00f698a59cac008c8bdf0cb79fd0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x45384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a8", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70006", - "utxoId": "0xcce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e70001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaec178c7639b1617c7385eff3e1746decba09f43a3e41cb405d79ed38aade241", - "contractId": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "stateRoot": "0x17b3ccfa488fe45914a9855de49d60ee7582a312ca5084f5961adb44427aecc5", - "txPointer": "03bd1aa60046", - "utxoId": "0x540a444451aa32f24bfd7f17e0868594a0823b4d54db53c53f209702024d9c150001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5b7d5dd701b2c9adaf8aaefc36c230df90c5743f053b7d1da297028cb4c77e46", - "contractId": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "stateRoot": "0xe791b52e9f12a68fc49d9fac6e92dd8902143af1da413aef5d80dd92d3975963", - "txPointer": "03bd1aa60046", - "utxoId": "0x540a444451aa32f24bfd7f17e0868594a0823b4d54db53c53f209702024d9c150002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "329123", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc68eec068208d0f8a88aede88697619ba66b8aa7a719d02f36c9e0b8c77e0012", - "inputIndex": "2", - "stateRoot": "0x6964bddbab303b84da5c3b8e17492d56b79a119cb2f78ac583ab174d1ff5f327" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf641d1cc6cad78bce13818f213546b85c5aa5271d080f7cef6ea84ae1d024f77", - "inputIndex": "3", - "stateRoot": "0xce09b91c7b5859844b42c80cd2401dfe410f23734bcec4a5ad50c454d02c8e9f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b2a3d99f795d6fb7637d18d3653b0a00de0c66c732053525fa7eb8d57899ca39000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ec59747abeb9d8b1b19507b64c32ae7cb266fccf16e9cf497e523524908ac2a0844f5dcc0e4d52c70b1e02c884c05228b40feb6bef1a499e328aab6f8f1bf39500000000000000000000006a91c5aa0000000000000000000000000002f431290000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000825fc000000003b9b8d5000000000000000010000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f7264657200000377c7df6d202269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0ffffffffffffffff00000000000000010000000000000018000000003b9b8d5000000377c7df6d200000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000e6a1b27ab9112e85d4d6e8c92dc4be8b548bd00f698a59cac008c8bdf0cb79fd0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000050726f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002c00000000000000000000000000000000000000000000000000000000000000000000000000000001cce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e7000000000000000145384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a800000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001540a444451aa32f24bfd7f17e0868594a0823b4d54db53c53f209702024d9c150000000000000001aec178c7639b1617c7385eff3e1746decba09f43a3e41cb405d79ed38aade24117b3ccfa488fe45914a9855de49d60ee7582a312ca5084f5961adb44427aecc50000000003bd1aa600000000000000462b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a613970000000000000001540a444451aa32f24bfd7f17e0868594a0823b4d54db53c53f209702024d9c1500000000000000025b7d5dd701b2c9adaf8aaefc36c230df90c5743f053b7d1da297028cb4c77e46e791b52e9f12a68fc49d9fac6e92dd8902143af1da413aef5d80dd92d39759630000000003bd1aa60000000000000046ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000505a3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c68eec068208d0f8a88aede88697619ba66b8aa7a719d02f36c9e0b8c77e00126964bddbab303b84da5c3b8e17492d56b79a119cb2f78ac583ab174d1ff5f32700000000000000010000000000000003f641d1cc6cad78bce13818f213546b85c5aa5271d080f7cef6ea84ae1d024f77ce09b91c7b5859844b42c80cd2401dfe410f23734bcec4a5ad50c454d02c8e9f0000000000000040336d2f6ef0dd4f3041651e1305dc8b44126e2da9799356ad8221d18f771c5535ad49db4fd2f04d4ea4cb93951d0865c57d12bcecf3918c05eab329394e3bffa9", - "receiptsRoot": "0xb2a3d99f795d6fb7637d18d3653b0a00de0c66c732053525fa7eb8d57899ca39", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ec59747abeb9d8b1b19507b64c32ae7cb266fccf16e9cf497e523524908ac2a0844f5dcc0e4d52c70b1e02c884c05228b40feb6bef1a499e328aab6f8f1bf39500000000000000000000006a91c5aa0000000000000000000000000002f431290000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000825fc000000003b9b8d5000000000000000010000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f7264657200000377c7df6d202269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0ffffffffffffffff00000000000000010000000000000018000000003b9b8d5000000377c7df6d200000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa0000000000000000000000000002f43129", - "digest": "0x63658a04b51975b27886de0c42a4baeb012f178ed12157661132f488fe4c3263", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5aa0000000000000000000000000002f43129", - "digest": "0x7df7b707cd0573e34d0f3db58a0911db70570f899de55d8871ec191e30ddf067", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": "4313912800000", - "assetId": "0x2269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000825fc000000003b9b8d5000000000000000010000000000000003000000006a91c533", - "digest": "0xc0541c469e6d76fc30dfec1da55d48ed3090481d7484be03cef74b52e8dad0b3", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099722", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099097", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5aa0000000000000000000000000002f43129", - "digest": "0x7df7b707cd0573e34d0f3db58a0911db70570f899de55d8871ec191e30ddf067", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098869", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874598", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000000000000000000000000", - "digest": "0xbb12b82290efdd812bc0ad4d29c874d5fd4c7770aba5f41593fe26995d7e2c18", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67097949", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5aa0000000000000000000000000002f43129", - "digest": "0x7df7b707cd0573e34d0f3db58a0911db70570f899de55d8871ec191e30ddf067", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097721", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3812989300000", - "assetId": "0x2269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1862324", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000825fd000000003b9b8d500000000000000001000000000000000300000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a613970000000000000001000000000000000300000377c7df6d20000000003b9b8d50000000006a91c533", - "digest": "0x5ed661e08726fb7b4f20e0a33e3ec8edc1d7bc808fa77597fa78c0f4182fd9fb", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67095881", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000825fd000000003b9b8d5000000000000000010000000000000003", - "digest": "0x91bad0fbbbd6bfb35f2982204ea13edb1a0f32183dcf9c6bddad09cb315f0c94", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67091257", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "212505", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "387", - "totalGas": "222333", - "transactionId": "0x70230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x336d2f6ef0dd4f3041651e1305dc8b44126e2da9799356ad8221d18f771c5535ad49db4fd2f04d4ea4cb93951d0865c57d12bcecf3918c05eab329394e3bffa9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "189084", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1002f", - "utxoId": "0x1f391b9df29c7555b7efb8e719b2c20f0084fa06d991489a1626292c12a2c7e20000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8d44cb1084c87ad9aa57100325bd97c09d6dcd0bc875965294ec1ea71413738d", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xbdc609397e8c744d27e7977efd22155e6b996042d1c2f8efbd04928b77238397", - "txPointer": "03bd1aa70006", - "utxoId": "0xcce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e70003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70007", - "utxoId": "0x70230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a50001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8c8acbcceaaf324d5c1c6f97a0add8d12d1fba3516bcbe2118aef469050ef69a", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x8e5d3de0791cc1e7ac04e8302e9fb780ff492e33e48775369edaaafc7442333f", - "txPointer": "03bd1aa70006", - "utxoId": "0xcce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e70002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "188839", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc2e789766e3c9aee2355de6dafe23676937df1635143dad10fc32306660ef89b", - "inputIndex": "1", - "stateRoot": "0xc3fd39707e246e21ee236070b743fd5a3a88505195f3f6c0537881ef16d048d2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4c7597c69f768231c564c37c3ff2346889ca97587be5e8149a6218c58da92f8b", - "inputIndex": "3", - "stateRoot": "0x5c426ef45b92dcd3297f150908e5bf4be578faa585e0988d54359fb1cf366c5b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40d5553bd60e13c23a1b217dae11f35410b4b8905228427b560e6e12aacccb803f00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000082bb31c717b4e40476d2f6fb557c59c83457e1a55003d919627e8189d50a75b66783ec81ba43cbbce522daaa922ec6ec314f92f7d17a228b1d678c4e722dab9100000000000000000000006a91c5aa000000000000000000000000000a759f160000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000000090f5600e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041196be298000000000090f5600000000000000000300000000000000000000006400000000000210ac0000000003bd1aab00000000000000001f391b9df29c7555b7efb8e719b2c20f0084fa06d991489a1626292c12a2c7e20000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002e29cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000002f00000000000000000000000000000000000000000000000000000000000000000000000000000001cce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e700000000000000038d44cb1084c87ad9aa57100325bd97c09d6dcd0bc875965294ec1ea71413738dbdc609397e8c744d27e7977efd22155e6b996042d1c2f8efbd04928b772383970000000003bd1aa70000000000000006f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6000000000000000170230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a500000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001cce84824fa3a6828213a0fe32ca45051360afdb6d7a9eee13782a89bcdad04e700000000000000028c8acbcceaaf324d5c1c6f97a0add8d12d1fba3516bcbe2118aef469050ef69a8e5d3de0791cc1e7ac04e8302e9fb780ff492e33e48775369edaaafc7442333f0000000003bd1aa700000000000000069423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002e1a7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001c2e789766e3c9aee2355de6dafe23676937df1635143dad10fc32306660ef89bc3fd39707e246e21ee236070b743fd5a3a88505195f3f6c0537881ef16d048d20000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000034c7597c69f768231c564c37c3ff2346889ca97587be5e8149a6218c58da92f8b5c426ef45b92dcd3297f150908e5bf4be578faa585e0988d54359fb1cf366c5b000000000000004090d58e79357a1bffaa23074d6f92d1e5abd4ca0e1947ab272b8aefaabd898935bd18193ca3381d7d490b09d94be41846c5ed2a8f5b4a769f4dad36014a7a1308", - "receiptsRoot": "0xd5553bd60e13c23a1b217dae11f35410b4b8905228427b560e6e12aacccb803f", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000082bb31c717b4e40476d2f6fb557c59c83457e1a55003d919627e8189d50a75b66783ec81ba43cbbce522daaa922ec6ec314f92f7d17a228b1d678c4e722dab9100000000000000000000006a91c5aa000000000000000000000000000a759f160000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000000090f5600e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041196be298000000000090f56000000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f16", - "digest": "0x78d825a23fbb94e83cb36167d272bd8e962a265765e3c6c490b9c344634ef1b8", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147416", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f16", - "digest": "0xd2227a76db210b4fecda46d3d7060b7953131134b280344f5ce9a80c963ce69c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964628", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306392", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462320", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306392", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375316", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f16", - "digest": "0xd2227a76db210b4fecda46d3d7060b7953131134b280344f5ce9a80c963ce69c", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166184", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "152000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4951105", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306392", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306392", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000490000041196be29800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000000090f56000000041196be2980000000006a91c533", - "digest": "0x67c513e6289e5875c4339ed052494e72af2806f7ccd19d4ca2323dde6c12d9cf", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306392", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433052", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000490000041196be298000000000000000010000000000000003", - "digest": "0x9ed30006b19340262ba832d63acaf90238b6ba0fd4ca19c73e526ea2a4a11e92", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306392", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379284", - "ptr": "67099526", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57220", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131008", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "245", - "totalGas": "140629", - "transactionId": "0x8080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x90d58e79357a1bffaa23074d6f92d1e5abd4ca0e1947ab272b8aefaabd898935bd18193ca3381d7d490b09d94be41846c5ed2a8f5b4a769f4dad36014a7a1308" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d2", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "295313", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10030", - "utxoId": "0xb913325260c917f5816bc38f57cc9edc3ea6965e32c559cf6119e40bd5a7dbcc0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70008", - "utxoId": "0x8080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc647c390e271a0b210395ae8a81685201f3cf55ec75ed7d429a0024819b5e56f", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x5b6431f4a38d9bf9a9867cf552fd2f73e0b569496b65360d99b474b800683f4d", - "txPointer": "03bd1aa60061", - "utxoId": "0x88f2828723e2c3f1345bdd1a3c30cd1a7cc337e96fa07448d3ea674d6671b1b50002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6b11eb975dd5193817f6182586c4875892de603566777c94f92bbe25ecd77b5f", - "contractId": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "stateRoot": "0xd663ef8ce096771fae1578d09013ee992c08831997f708663fed60c0f93c95dc", - "txPointer": "03bd1aa60061", - "utxoId": "0x88f2828723e2c3f1345bdd1a3c30cd1a7cc337e96fa07448d3ea674d6671b1b50003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "295064", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xeaa49e2eb6014104c2b8e43e899f2a4250c921abede1ecef9ae1c3c4132ca637", - "inputIndex": "2", - "stateRoot": "0x626860363c4aa551636e5a47fbc0e0e78e3a53cf739fa627f6b4fff2da729cd9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe81af8efb62e34cffd4f046a3246ced5ef51503acbe25f253e085dad1a7e2ec0", - "inputIndex": "3", - "stateRoot": "0xdc99fef7972152e247eb6fd9b6c2a289f0875db44b5c69fa896dbc04473359ba" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848015aef4e571be200440ac7070f98e60b33ad2bc70c8c76202ffe166c322f78ea80000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000035f440b4493d1a5f31151b5a4722f9406cd9f8a14f4c95ae8b7a040a5066ea8f686b34ecdc55085ed5d20bb89ea50cc650ab6ac01486b43ecebb50dd1b33e3e300000000000000000000006a91c5aa00000000000000000000000000029da7320000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000012000046dc0e7fb58000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000b913325260c917f5816bc38f57cc9edc3ea6965e32c559cf6119e40bd5a7dbcc0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048191f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000018080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000188f2828723e2c3f1345bdd1a3c30cd1a7cc337e96fa07448d3ea674d6671b1b50000000000000002c647c390e271a0b210395ae8a81685201f3cf55ec75ed7d429a0024819b5e56f5b6431f4a38d9bf9a9867cf552fd2f73e0b569496b65360d99b474b800683f4d0000000003bd1aa60000000000000061132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc000000000000000188f2828723e2c3f1345bdd1a3c30cd1a7cc337e96fa07448d3ea674d6671b1b500000000000000036b11eb975dd5193817f6182586c4875892de603566777c94f92bbe25ecd77b5fd663ef8ce096771fae1578d09013ee992c08831997f708663fed60c0f93c95dc0000000003bd1aa60000000000000061e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048098f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002eaa49e2eb6014104c2b8e43e899f2a4250c921abede1ecef9ae1c3c4132ca637626860363c4aa551636e5a47fbc0e0e78e3a53cf739fa627f6b4fff2da729cd900000000000000010000000000000003e81af8efb62e34cffd4f046a3246ced5ef51503acbe25f253e085dad1a7e2ec0dc99fef7972152e247eb6fd9b6c2a289f0875db44b5c69fa896dbc04473359ba0000000000000040f93531d28a4084584c5298ce6420ad979f41f2486bf363d78b62638ea8e908fdfac819f5b1607f414a7256a233624da2fdc80a50d4eb82fd2d800d05002f3900", - "receiptsRoot": "0x15aef4e571be200440ac7070f98e60b33ad2bc70c8c76202ffe166c322f78ea8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000035f440b4493d1a5f31151b5a4722f9406cd9f8a14f4c95ae8b7a040a5066ea8f686b34ecdc55085ed5d20bb89ea50cc650ab6ac01486b43ecebb50dd1b33e3e300000000000000000000006a91c5aa00000000000000000000000000029da7320000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000012000046dc0e7fb58000000000000000000000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa00000000000000000000000000029da732", - "digest": "0x31c9527baea145e0c38af9f627b12db3656e2a347445466cc971ad235e9e59f2", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140792", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5aa00000000000000000000000000029da732", - "digest": "0x6b0416c1be6c9ec7dc4538c84ac40f88130213bbe65627280ffaf7123318746d", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964706", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "1332121423100", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299768", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403056", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000012000046dc0e7fb58000000000000000000000000000000003000000006a91c533", - "digest": "0x515fc0ee8faeaa4439e0a9e46ebc8b37d32e085d4eedf6a57bb8b77e0c7dba47", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299768", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397404", - "ptr": "67099890", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299768", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374572", - "ptr": "67099265", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5aa00000000000000000000000000029da732", - "digest": "0x6b0416c1be6c9ec7dc4538c84ac40f88130213bbe65627280ffaf7123318746d", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67099037", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875862", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000000", - "digest": "0x60ac9d69fe81ca4d4e5a181ff68c21eb015cb5f23c223d4ce6423a6dee90aab2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299768", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457304", - "ptr": "67098117", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299768", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370300", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50596", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133419", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "249", - "totalGas": "143051", - "transactionId": "0x6ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d2" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf93531d28a4084584c5298ce6420ad979f41f2486bf363d78b62638ea8e908fdfac819f5b1607f414a7256a233624da2fdc80a50d4eb82fd2d800d05002f3900" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f8", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "327980", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10032", - "utxoId": "0xa859daa9fa82c10f1fceadb7f96f400d27fe7e085889c2f0e1a64f102bdae0e60000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x55b8fae932d0de9c03bc489f11efaddcc7a4a2ec3d57e4d77c2a10e8c8eba285", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70009", - "utxoId": "0x6ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d20001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe5053a9c525abb3b88a1dd68580c2b6256070af288604b457c91d0f7587d1141", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0x1d21398a32ce88ddee149aa02bd252a706cc0892883f354acbc92c6556d97f40", - "txPointer": "03bd1aa60044", - "utxoId": "0x6763bdd3c5b6221aa450b7ef1cb7c970c6f5d6b255407c42560ed1d048f18cc90003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb7ed3a5107702a11a98b22fdc2946c4aaeb6ec2429279057295a1b76ad53dad3", - "contractId": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "stateRoot": "0x7c9e4ac21d27d96ad710388d40aa7fc94cb7ed224500a497522b84c830b5880f", - "txPointer": "03bd1aa60044", - "utxoId": "0x6763bdd3c5b6221aa450b7ef1cb7c970c6f5d6b255407c42560ed1d048f18cc90001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "327754", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0ceda39f60954212ae4e1460a019dc02a306e6bce1f83acf033fa0524f69d140", - "inputIndex": "2", - "stateRoot": "0xd6583e8e044b58fbdc1e32b944c83397d4c6566937a2bff486c1b9cecef40560" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x46f1b8d11508a6e81eb95d029864381cbe7b5315fbc33099ce4950cfccc81c25", - "inputIndex": "3", - "stateRoot": "0x12f73a24bcb7bbec3c0f9a1d2ab5a27eeb5cd36b8cc73488292c024c9da2db3e" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84804b6156959b5f5b035195032d846e76b4f43d1ebffac168b8d330328bd4e381f500000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000060ab7b349f10ca5338cb12fe32d7083b2ec25b25bc56497a876d23d53098238a1fb1067e17df3624ce0e23072582fee2bd868478d01dcc7705147a3d04adc50c00000000000000000000006a91c5aa0000000000000000000000000000389b510000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000003136eba5e86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d06267b00000000e13b26300000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000a859daa9fa82c10f1fceadb7f96f400d27fe7e085889c2f0e1a64f102bdae0e60000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000005012cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000032000000000000000000000000000000000000000000000000000000000000000000000000000000016ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d2000000000000000155b8fae932d0de9c03bc489f11efaddcc7a4a2ec3d57e4d77c2a10e8c8eba28500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016763bdd3c5b6221aa450b7ef1cb7c970c6f5d6b255407c42560ed1d048f18cc90000000000000003e5053a9c525abb3b88a1dd68580c2b6256070af288604b457c91d0f7587d11411d21398a32ce88ddee149aa02bd252a706cc0892883f354acbc92c6556d97f400000000003bd1aa60000000000000044973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000016763bdd3c5b6221aa450b7ef1cb7c970c6f5d6b255407c42560ed1d048f18cc90000000000000001b7ed3a5107702a11a98b22fdc2946c4aaeb6ec2429279057295a1b76ad53dad37c9e4ac21d27d96ad710388d40aa7fc94cb7ed224500a497522b84c830b5880f0000000003bd1aa600000000000000449be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead00000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000005004af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000020ceda39f60954212ae4e1460a019dc02a306e6bce1f83acf033fa0524f69d140d6583e8e044b58fbdc1e32b944c83397d4c6566937a2bff486c1b9cecef405600000000000000001000000000000000346f1b8d11508a6e81eb95d029864381cbe7b5315fbc33099ce4950cfccc81c2512f73a24bcb7bbec3c0f9a1d2ab5a27eeb5cd36b8cc73488292c024c9da2db3e0000000000000040d013d2b76ceb04d3a0b1002afac2a36a33d302c1cfc822eae1e4b93b74ef89c05e7dc98bf22e23352acee0d09195cffc91567c57b2feb4e8dda4b45474a73862", - "receiptsRoot": "0x4b6156959b5f5b035195032d846e76b4f43d1ebffac168b8d330328bd4e381f5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000060ab7b349f10ca5338cb12fe32d7083b2ec25b25bc56497a876d23d53098238a1fb1067e17df3624ce0e23072582fee2bd868478d01dcc7705147a3d04adc50c00000000000000000000006a91c5aa0000000000000000000000000000389b510000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000003136eba5e86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d06267b00000000e13b263000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa0000000000000000000000000000389b51", - "digest": "0x9d67c9ef372edf7a9b7b073a4522ba6e44df6e1b63374c363d692fc97fa16d6d", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5aa0000000000000000000000000000389b51", - "digest": "0x2ecabc6964e461c54670582d80a05ab266728f9ff7677fbc0366b5d44b8326de", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000000000000000000000000", - "digest": "0x5fdac36b8fdfe3c681493be0ab4efb13c0cc55ef6aaf1bd62eaa1294f3c7159b", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5aa0000000000000000000000000000389b51", - "digest": "0x2ecabc6964e461c54670582d80a05ab266728f9ff7677fbc0366b5d44b8326de", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "211374810600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000800000000d06267b00000000000000000000000000000000100000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0000000000000000000000000000000010000000e13b2630000000000d06267b0000000006a91c533", - "digest": "0x7150cde8ed21cb0663ace4e4332c5dcf4bc94318dcddb4053f745c0d8bce3b91", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000800000000d06267b000000000000000000000000000000001", - "digest": "0x2599a8530c27824af3ab6a2578a6002158d55e3260481699501a4eba8c1c7930", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100614", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120065", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "226", - "totalGas": "129686", - "transactionId": "0xace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f8" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd013d2b76ceb04d3a0b1002afac2a36a33d302c1cfc822eae1e4b93b74ef89c05e7dc98bf22e23352acee0d09195cffc91567c57b2feb4e8dda4b45474a73862" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "147070", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10031", - "utxoId": "0x7ba04b2a0af71eb5912152345e13c1dd906d66d4a246f442741e293f35bb81420000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc2e789766e3c9aee2355de6dafe23676937df1635143dad10fc32306660ef89b", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x5778c3c7f5e0009ebe361b1aa21aae9a7db9ac88563cf83b2d583bd01e949700", - "txPointer": "03bd1aa70008", - "utxoId": "0x8080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7000a", - "utxoId": "0xace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f80001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4c7597c69f768231c564c37c3ff2346889ca97587be5e8149a6218c58da92f8b", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xa2bcab8fcf6564f3e83618945a1e3c443c4a32c72f30bb8aabe7c9f1eec05310", - "txPointer": "03bd1aa70008", - "utxoId": "0x8080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "146829", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x34ed7ad96661644f82df3d9cd5180e0dab5915392e9d483b1bc7ebe47601212c", - "inputIndex": "1", - "stateRoot": "0x8a7ca92d4f199e7236a017e260c301ef0c3335e155b439f3051cffbf2cfdb533" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1620f565f7036bb77f4cdb0137ba6b2351272c70a88451cce01137f782a64428", - "inputIndex": "3", - "stateRoot": "0xda3f7a98e7430a19b79ada5fed9de4b631f2cbdbf6b45553317283c3b11f6b3f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40624ff200cf9227b98757f4e3cd602aa2078af2adbcdf5f2bdba8a590a30011bb0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f82bbfba5a1e060851ee8f0f0b31934831cab51702c99b0b089e5febac23170d01f35ea1883f1317093326f8237d3956827dfcbb29584815065944335dda441300000000000000000000006a91c5aa000000000000000000000000000a759f170000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001e000004119b82dd8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aab00000000000000007ba04b2a0af71eb5912152345e13c1dd906d66d4a246f442741e293f35bb81420000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023e7ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000031000000000000000000000000000000000000000000000000000000000000000000000000000000018080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b0000000000000001c2e789766e3c9aee2355de6dafe23676937df1635143dad10fc32306660ef89b5778c3c7f5e0009ebe361b1aa21aae9a7db9ac88563cf83b2d583bd01e9497000000000003bd1aa70000000000000008f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000001ace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f80000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018080b88e795df842c899a99daed29c4750aa31d5d2d53d349894b6f1d29a181b00000000000000034c7597c69f768231c564c37c3ff2346889ca97587be5e8149a6218c58da92f8ba2bcab8fcf6564f3e83618945a1e3c443c4a32c72f30bb8aabe7c9f1eec053100000000003bd1aa700000000000000089423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023d8df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000134ed7ad96661644f82df3d9cd5180e0dab5915392e9d483b1bc7ebe47601212c8a7ca92d4f199e7236a017e260c301ef0c3335e155b439f3051cffbf2cfdb5330000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000031620f565f7036bb77f4cdb0137ba6b2351272c70a88451cce01137f782a64428da3f7a98e7430a19b79ada5fed9de4b631f2cbdbf6b45553317283c3b11f6b3f000000000000004044bfddd5ed3b4650f5609194da24d8d661f417b65b4f066465251ea8842d6c63e2afe0a6d7910342bdea382a880787efde3671d3832ecece9bc1d47cc1b6a77c", - "receiptsRoot": "0x624ff200cf9227b98757f4e3cd602aa2078af2adbcdf5f2bdba8a590a30011bb", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f82bbfba5a1e060851ee8f0f0b31934831cab51702c99b0b089e5febac23170d01f35ea1883f1317093326f8237d3956827dfcbb29584815065944335dda441300000000000000000000006a91c5aa000000000000000000000000000a759f170000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001e000004119b82dd8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f17", - "digest": "0x3ce1e6ed4826f43e22b4c34ca04ea2befd77ef9be3a94b81824799ba8c8e96c2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f17", - "digest": "0x90586172063baba836f4e51a0ab821c90fe7d8b7e05169933a80bc74e656ed75", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964626", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408080", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e000004119b82dd8000000000000000010000000000000003000000006a91c533", - "digest": "0xf773cd22c8e29e750a2f84a98b1b699f83f6660f11d0730ef31674b80b8e2aed", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402428", - "ptr": "67100842", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379596", - "ptr": "67100217", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f17", - "digest": "0x90586172063baba836f4e51a0ab821c90fe7d8b7e05169933a80bc74e656ed75", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67099989", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4879544", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462328", - "ptr": "67099517", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375324", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128892", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "241", - "totalGas": "138524", - "transactionId": "0x5416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x44bfddd5ed3b4650f5609194da24d8d661f417b65b4f066465251ea8842d6c63e2afe0a6d7910342bdea382a880787efde3671d3832ecece9bc1d47cc1b6a77c" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a7", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "180314", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10033", - "utxoId": "0x078a27bb5055d6bc13a93bcb00408e7ff3966b2cd33343d95b2372fe45f04cb00000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc9d3046f4fff97465e898feb8043cbe6b9c54b72870d11c8d67f64b2005ec1d4", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0x07eaaa80dc9ead11519bfbd855707b0de9a76f43fa24d63b8179ecda04b06e55", - "txPointer": "03bd1aa60062", - "utxoId": "0xa5fe71291b81c20593e3cfeb48062e91308243fb2fbfd4f081cd7bf4f60e2a210003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a5", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7000b", - "utxoId": "0x5416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x22f687a9f1899427cd255e0af2fe03cca4f66d7a29842a853986d074f294cd41", - "contractId": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "stateRoot": "0x85db70f46216a2c746dd355ae04a2e05df13f751629c722077e1a7d26f18c192", - "txPointer": "03bd1aa60062", - "utxoId": "0xa5fe71291b81c20593e3cfeb48062e91308243fb2fbfd4f081cd7bf4f60e2a210002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "179907", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x16d8a073a1796dd0e34a77a93450998958ed2c8ca49c1d292e45b148f6420eb5", - "inputIndex": "1", - "stateRoot": "0x3b458de429b189d5d65ab1f209d12a8c43b7b344a90141635ec0d79604fc5195" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x95370662ed6a251d56571626098da4ed388f109930b490e1e75c5e0286611509", - "inputIndex": "3", - "stateRoot": "0x6dfdd7883edd3bbe5b7d52d13f7c3dd1c41eb5564422df80156cb795a5799a79" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848012ba133eee065cc397b7742c78c81f4d5c74eea46edad34704ed162283f05dd2000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005b9c483679f7fb2ce9b9937847f343e101f377de56304b6678d15a1c08c6ad8ae2fd47d7cb9ac3bda227928c8c7cd26f260d4a2b78d47b47e97a4c11080266e500000000000000000000006a91c5aa00000000000000000000000000028d0d0500000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000400000002394f7d4080000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000000d355900ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff0000000000000001000000000000001800000239658b0100000000000d3559000000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000078a27bb5055d6bc13a93bcb00408e7ff3966b2cd33343d95b2372fe45f04cb00000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002c05af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003300000000000000000000000000000000000000000000000000000000000000000000000000000001a5fe71291b81c20593e3cfeb48062e91308243fb2fbfd4f081cd7bf4f60e2a210000000000000003c9d3046f4fff97465e898feb8043cbe6b9c54b72870d11c8d67f64b2005ec1d407eaaa80dc9ead11519bfbd855707b0de9a76f43fa24d63b8179ecda04b06e550000000003bd1aa600000000000000625a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000015416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d0000000000000002045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a5fe71291b81c20593e3cfeb48062e91308243fb2fbfd4f081cd7bf4f60e2a21000000000000000222f687a9f1899427cd255e0af2fe03cca4f66d7a29842a853986d074f294cd4185db70f46216a2c746dd355ae04a2e05df13f751629c722077e1a7d26f18c1920000000003bd1aa6000000000000006266fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002bec3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000116d8a073a1796dd0e34a77a93450998958ed2c8ca49c1d292e45b148f6420eb53b458de429b189d5d65ab1f209d12a8c43b7b344a90141635ec0d79604fc519500000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000395370662ed6a251d56571626098da4ed388f109930b490e1e75c5e02866115096dfdd7883edd3bbe5b7d52d13f7c3dd1c41eb5564422df80156cb795a5799a790000000000000040ba2ee7c629d0abf7a4dfe58f0158d92407c013e72205bbdda45929dfc53229a7b438f00dcb8575c7c41d9d9ed4cc61c9639a01d9ac00414e8f9b64cc3e0161c4", - "receiptsRoot": "0x12ba133eee065cc397b7742c78c81f4d5c74eea46edad34704ed162283f05dd2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005b9c483679f7fb2ce9b9937847f343e101f377de56304b6678d15a1c08c6ad8ae2fd47d7cb9ac3bda227928c8c7cd26f260d4a2b78d47b47e97a4c11080266e500000000000000000000006a91c5aa00000000000000000000000000028d0d0500000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000400000002394f7d4080000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000000d355900ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff0000000000000001000000000000001800000239658b0100000000000d3559000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa00000000000000000000000000028d0d05", - "digest": "0xfc24b79c74ccbf26c7c9fdd4eb6ebdb4f7b3ad70dc4cf3a9ce5bd306837431de", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5aa00000000000000000000000000028d0d05", - "digest": "0x14abc9b0ef3d86cd3c4efba21ba423d6dd394208c7e4170506578b95f25a222f", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "533700000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000400000002394f7d408000000000000000010000000000000003000000006a91c533", - "digest": "0xaea0a39a3d6063206aacd643437f14f0e41c03616f44ce923360ba6c9e1ddac4", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67097330", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67096705", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5aa00000000000000000000000000028d0d05", - "digest": "0x14abc9b0ef3d86cd3c4efba21ba423d6dd394208c7e4170506578b95f25a222f", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67096477", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1835419", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000000000000000000000", - "digest": "0x59ecf2f36962ef2a9ec90b6961021042caee97c9fbf3cc61e7799c9eb0d86806", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67095557", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5aa00000000000000000000000000028d0d05", - "digest": "0x14abc9b0ef3d86cd3c4efba21ba423d6dd394208c7e4170506578b95f25a222f", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67095329", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "221600000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": "1823145", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000042f00000239658b010000000000000000010000000000000003000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000010000000000000003000000000d35590000000239658b0100000000006a91c533", - "digest": "0x71699d29d69a121b0a71b9a1f473ff597f86f501eff0de25137c37a912852d1e", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67093489", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000042f00000239658b010000000000000000010000000000000003", - "digest": "0xf801a2fc6775ac13c5e4b2910f339b20d5624707a5a8044ae24135c8cff7664d", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67091801", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "224029", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "407", - "totalGas": "233857", - "transactionId": "0xa1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a7" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xba2ee7c629d0abf7a4dfe58f0158d92407c013e72205bbdda45929dfc53229a7b438f00dcb8575c7c41d9d9ed4cc61c9639a01d9ac00414e8f9b64cc3e0161c4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x22f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e07", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "147080", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10035", - "utxoId": "0x00d7fe19f952f7965ee7c89ce3cdb036684720de22fd2c60ad074af29c91d0100000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7000c", - "utxoId": "0xa1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a70002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4dfd6c2ee6fced1e7e38a42c22a7ec931bbde51f3e2003f85926dce4b707ea24", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xa3ce8b97dc2bf90693ddcbd56c8fb57ccb1f9f336d769a475f9070b773db2fd4", - "txPointer": "03bd1aa7000b", - "utxoId": "0x5416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x125cf94037a5cf8c10935f7da2188ee9db232135764c145dcac0a57de33fc961", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xcbede116d996ec2b9aeed3127d844ff297463a71fe6c247aa155bb89ae3a8a9e", - "txPointer": "03bd1aa7000b", - "utxoId": "0x5416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "146865", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb9ee5a96fc4fbefd67f5eaad45fc1586ec88c4858c26d72261329547a84a1e1e", - "inputIndex": "2", - "stateRoot": "0x4f0c5d64776c6c8f6ff20a6e1bec7b0007d3452dd547ccd5d31f7c1ddd4d9d4b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x42d2b8f4d59eb86cf5445722eff69a065d60e9aa81e4619f74a98568864a49f4", - "inputIndex": "3", - "stateRoot": "0x64f5e9a5f4319da3de7ede620b7cb0a784a48b24844e553ac6bc29da8bf21e0a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40b87b53b58099efda9d7f0fa80415270f34ec0f299aa4ba46cee3483753dd40b2000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001c8bd05577ca4492514d5b20bfe958ab29295b489c0ffe16341ad5fd0dea70b06de0c7193dd11693d709b7a8895fbee19802e24e61451e52f1a035d0a5b7e22800000000000000000000006a91c5aa000000000000000000000000000a759f190000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d000004119b82dd8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000515f677d2e06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041191f97580000000004a817c800000000000000003000000000000006400000000000210ac0000000003bd1aab000000000000000000d7fe19f952f7965ee7c89ce3cdb036684720de22fd2c60ad074af29c91d0100000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023e88f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003500000000000000000000000000000000000000000000000000000000000000000000000000000001a1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a700000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d00000000000000034dfd6c2ee6fced1e7e38a42c22a7ec931bbde51f3e2003f85926dce4b707ea24a3ce8b97dc2bf90693ddcbd56c8fb57ccb1f9f336d769a475f9070b773db2fd40000000003bd1aa7000000000000000b9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000015416c303f959fa0d5b216b6690540866844365df1f42498ef578cbd2f24a590d0000000000000001125cf94037a5cf8c10935f7da2188ee9db232135764c145dcac0a57de33fc961cbede116d996ec2b9aeed3127d844ff297463a71fe6c247aa155bb89ae3a8a9e0000000003bd1aa7000000000000000bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023db1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002b9ee5a96fc4fbefd67f5eaad45fc1586ec88c4858c26d72261329547a84a1e1e4f0c5d64776c6c8f6ff20a6e1bec7b0007d3452dd547ccd5d31f7c1ddd4d9d4b0000000000000001000000000000000342d2b8f4d59eb86cf5445722eff69a065d60e9aa81e4619f74a98568864a49f464f5e9a5f4319da3de7ede620b7cb0a784a48b24844e553ac6bc29da8bf21e0a000000000000004098aa79c151deeb7fa854a61fb28e66153f56a4806f172b092e8990463d297b756bef45652591ea884b55c09f6357001a64bed9ed08703b5df961546d199af71b", - "receiptsRoot": "0xb87b53b58099efda9d7f0fa80415270f34ec0f299aa4ba46cee3483753dd40b2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000001c8bd05577ca4492514d5b20bfe958ab29295b489c0ffe16341ad5fd0dea70b06de0c7193dd11693d709b7a8895fbee19802e24e61451e52f1a035d0a5b7e22800000000000000000000006a91c5aa000000000000000000000000000a759f190000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d000004119b82dd8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000515f677d2e06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041191f97580000000004a817c800000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f19", - "digest": "0xd97042c6c23a8e0dfddabd9b76d683a2d7ad2e7e62b3b15d556f84ef1cbc67ec", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f19", - "digest": "0x2089643533f4b6c62b3045a9b50e6b9b4ff77cf69efbe9f093215842ce9b8103", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962975", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67105161", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f19", - "digest": "0x2089643533f4b6c62b3045a9b50e6b9b4ff77cf69efbe9f093215842ce9b8103", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67104933", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4948254", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462472", - "ptr": "67104461", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375468", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f19", - "digest": "0x2089643533f4b6c62b3045a9b50e6b9b4ff77cf69efbe9f093215842ce9b8103", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67104233", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5591887500000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4936143", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002b0000041191f975800000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000003000000004a817c800000041191f97580000000006a91c533", - "digest": "0x8050fe2a0c3fc272a183741aa08effd9d3d81828c5509aac7632f53b534d7095", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433204", - "ptr": "67102841", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002b0000041191f9758000000000000000000000000000000003", - "digest": "0x481a6c23a8e137e8e3d8c12271808dc7981a03927c09f48d8ee20ad87c1b43cc", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379436", - "ptr": "67101153", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "113577", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "215", - "totalGas": "123405", - "transactionId": "0x22f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e07" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x98aa79c151deeb7fa854a61fb28e66153f56a4806f172b092e8990463d297b756bef45652591ea884b55c09f6357001a64bed9ed08703b5df961546d199af71b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a7", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "596297", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10036", - "utxoId": "0xb8205a183c15bf094471dbe76db44abff6787619e582cd7c4de870dfcb604dc90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x34ed7ad96661644f82df3d9cd5180e0dab5915392e9d483b1bc7ebe47601212c", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x9ffeba8835a40647908cd1b0098c8fd84148c7efe76678a9109b7a74099c4d6e", - "txPointer": "03bd1aa7000d", - "utxoId": "0x22f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e070003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7000d", - "utxoId": "0x22f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e070001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1620f565f7036bb77f4cdb0137ba6b2351272c70a88451cce01137f782a64428", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x30bd7f9c7bcd1c4b9ace819d847e5df2b370b2dee5ed763812722d8888a8efbe", - "txPointer": "03bd1aa7000d", - "utxoId": "0x22f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e070002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "595921", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xee20e7ec5c380e062624d51138b012c4fd45f91da3f38ea4fa8bb5271a1a6a37", - "inputIndex": "1", - "stateRoot": "0x9e30438c2f0783fa59cdc2a69b54309e1d8b3c2664a648110cb13dc6c900a501" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9e4a9362f223c526624ebc2e80d22feb7258baf3a09ac0feaeb6ea59e2130d1e", - "inputIndex": "3", - "stateRoot": "0xe40b44fd2de70363d621b9f01bdc6810b031b77114b3aaee04043fbcdc19d926" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b4064e0644d3328fcd4db81b6d12e056ddaffce72fff117cf5974a4b85b5e9c1f30000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000455426e362fc425b7886240028dc891592bc6a2f94b6efc9916e82a15f5008739efcf5ea0403cdc6b7d9e0ecefca6cdd9c03a903d01f30f24dae2722369aa5c000000000000000000000006a91c5aa000000000000000000000000000a759f1a0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000490000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000000131d7e60e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041196be298000000000131d7e600000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000b8205a183c15bf094471dbe76db44abff6787619e582cd7c4de870dfcb604dc90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000091949f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000360000000000000000000000000000000000000000000000000000000000000000000000000000000122f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e07000000000000000334ed7ad96661644f82df3d9cd5180e0dab5915392e9d483b1bc7ebe47601212c9ffeba8835a40647908cd1b0098c8fd84148c7efe76678a9109b7a74099c4d6e0000000003bd1aa7000000000000000df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6000000000000000122f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e0700000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000122f322da69c8d36fa887f10077d2f97416e7cf3b8e7a50fad1b704d8c3931e0700000000000000021620f565f7036bb77f4cdb0137ba6b2351272c70a88451cce01137f782a6442830bd7f9c7bcd1c4b9ace819d847e5df2b370b2dee5ed763812722d8888a8efbe0000000003bd1aa7000000000000000d9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000917d1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001ee20e7ec5c380e062624d51138b012c4fd45f91da3f38ea4fa8bb5271a1a6a379e30438c2f0783fa59cdc2a69b54309e1d8b3c2664a648110cb13dc6c900a5010000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000039e4a9362f223c526624ebc2e80d22feb7258baf3a09ac0feaeb6ea59e2130d1ee40b44fd2de70363d621b9f01bdc6810b031b77114b3aaee04043fbcdc19d9260000000000000040ee7691f4247a75c3e7b2abc9d6f7c89efe252d0c6d01d7a7c5ce10cbb3623cd9c7dac22f7f273fe07dd4da8188b74486b93de8465f041eb1b7d813a7d457610e", - "receiptsRoot": "0x64e0644d3328fcd4db81b6d12e056ddaffce72fff117cf5974a4b85b5e9c1f30", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000455426e362fc425b7886240028dc891592bc6a2f94b6efc9916e82a15f5008739efcf5ea0403cdc6b7d9e0ecefca6cdd9c03a903d01f30f24dae2722369aa5c000000000000000000000006a91c5aa000000000000000000000000000a759f1a0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000490000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000000131d7e60e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041196be298000000000131d7e600000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f1a", - "digest": "0x7f7de66e8bb672271d7be34f3bf246d4918cace4376f53767fb58945cd79d563", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f1a", - "digest": "0xa79b1bdda737bc452ac6929130c988b60d98b0af824626ab4d370584d4fc434b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962975", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "152000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408224", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000490000041196be298000000000000000010000000000000003000000006a91c533", - "digest": "0xd85f17a221f399caeb32795efffe661b7615ca77a206bc10b6fd8563bcf6531d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402572", - "ptr": "67100458", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67099833", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f1a", - "digest": "0xa79b1bdda737bc452ac6929130c988b60d98b0af824626ab4d370584d4fc434b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67099605", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4878188", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462472", - "ptr": "67099133", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375468", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f1a", - "digest": "0xa79b1bdda737bc452ac6929130c988b60d98b0af824626ab4d370584d4fc434b", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67098905", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "320700000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4866782", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004a0000041196be29800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000000131d7e600000041196be2980000000006a91c533", - "digest": "0xa56cbc4b2396d4a41cefba849d69ee95b4df4da99bb117e86d22796f2580d697", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433204", - "ptr": "67097513", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004a0000041196be298000000000000000010000000000000003", - "digest": "0xf91c0a90f25063cdca8e75f1dfbb053604a15039ae2f230f372274de8eaf61f7", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379436", - "ptr": "67093209", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "206153", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "376", - "totalGas": "215981", - "transactionId": "0xe825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a7" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xee7691f4247a75c3e7b2abc9d6f7c89efe252d0c6d01d7a7c5ce10cbb3623cd9c7dac22f7f273fe07dd4da8188b74486b93de8465f041eb1b7d813a7d457610e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "173788", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10034", - "utxoId": "0x9afcb1b60dc7b7c9ae6e5d2f5069d9b59763d675dd3a0e577627499e91ff2dcf0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb9ee5a96fc4fbefd67f5eaad45fc1586ec88c4858c26d72261329547a84a1e1e", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x01e1875a3ed2f427da28b11444304737afd790c50f64cae4961ff2a18c6729a0", - "txPointer": "03bd1aa7000e", - "utxoId": "0xe825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a70003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7000e", - "utxoId": "0xe825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a70002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x42d2b8f4d59eb86cf5445722eff69a065d60e9aa81e4619f74a98568864a49f4", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xf60e7be59f4f754d21858aaaaa9bd58200cf1b64e188bd225d68c30ad8a6113b", - "txPointer": "03bd1aa7000e", - "utxoId": "0xe825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a70001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "173557", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4dfd6c2ee6fced1e7e38a42c22a7ec931bbde51f3e2003f85926dce4b707ea24", - "inputIndex": "1", - "stateRoot": "0xa6a80685db408c427c9ebe76fe25158ddd6399efcbbff784e52091f0ebfece22" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x125cf94037a5cf8c10935f7da2188ee9db232135764c145dcac0a57de33fc961", - "inputIndex": "3", - "stateRoot": "0x18ae299d2e93814aa8a161af3cef895c63a0c603608ec59425982464b97a4745" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b401e2158b040337da69fe8def6dd6d9e5f9568a7ea6c34aed73cd6e0d3271ab6aa00000000000000180000000000000400000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008ab0296f37b73090507b723cd2877d4a1df84058fd3b421baf1b87eeb341c0b85d115d8c73f70441c9a30bfaacc61153a8ce02c5a6634cd29e39c1f7f037dbe000000000000000000000006a91c5aa000000000000000000000000000a759f180000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c000004119625930000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000029000004119cb40a8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002a0000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000006400000000000210ac0000000003bd1aab00000000000000009afcb1b60dc7b7c9ae6e5d2f5069d9b59763d675dd3a0e577627499e91ff2dcf0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002a6dcf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003400000000000000000000000000000000000000000000000000000000000000000000000000000001e825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a70000000000000003b9ee5a96fc4fbefd67f5eaad45fc1586ec88c4858c26d72261329547a84a1e1e01e1875a3ed2f427da28b11444304737afd790c50f64cae4961ff2a18c6729a00000000003bd1aa7000000000000000e9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001e825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a70000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e825c452f7a2f562c3681663179feebc15835d3adfe20a217b29a964805697a7000000000000000142d2b8f4d59eb86cf5445722eff69a065d60e9aa81e4619f74a98568864a49f4f60e7be59f4f754d21858aaaaa9bd58200cf1b64e188bd225d68c30ad8a6113b0000000003bd1aa7000000000000000ef31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002a5f5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000014dfd6c2ee6fced1e7e38a42c22a7ec931bbde51f3e2003f85926dce4b707ea24a6a80685db408c427c9ebe76fe25158ddd6399efcbbff784e52091f0ebfece22000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003125cf94037a5cf8c10935f7da2188ee9db232135764c145dcac0a57de33fc96118ae299d2e93814aa8a161af3cef895c63a0c603608ec59425982464b97a474500000000000000406a005fdd2a99fcef43cacb1599d41eeec7f5533d98974d638393e758945bdf006a4acfb69a2eb63907e1b1613dcdf5b334e1081def37869fd2d92d60dfc36482", - "receiptsRoot": "0x1e2158b040337da69fe8def6dd6d9e5f9568a7ea6c34aed73cd6e0d3271ab6aa", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008ab0296f37b73090507b723cd2877d4a1df84058fd3b421baf1b87eeb341c0b85d115d8c73f70441c9a30bfaacc61153a8ce02c5a6634cd29e39c1f7f037dbe000000000000000000000006a91c5aa000000000000000000000000000a759f180000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000041197ef568000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002c000004119625930000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000029000004119cb40a8000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002a0000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "13080", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "13080", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f18", - "digest": "0x8249471ec81eeccb51deda7f3925c7c1bcdd570dda1e5e578c844fb8559068b3", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147888", - "ptr": "67107322", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f18", - "digest": "0x5940ecea9d179cbbee4ef4b9c23163673be31fcf8701cf37b1e0590cc3e450c7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67104874", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4959667", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67108036", - "param2": "67108004", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67104457", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f18", - "digest": "0x5940ecea9d179cbbee4ef4b9c23163673be31fcf8701cf37b1e0590cc3e450c7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67104229", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4944949", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107984", - "param2": "67107952", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67103812", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f18", - "digest": "0x5940ecea9d179cbbee4ef4b9c23163673be31fcf8701cf37b1e0590cc3e450c7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67103584", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4932348", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107932", - "param2": "67107900", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67103167", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f18", - "digest": "0x5940ecea9d179cbbee4ef4b9c23163673be31fcf8701cf37b1e0590cc3e450c7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67102939", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4919744", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107880", - "param2": "67107848", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "5591887500000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a0000041191f9758000000000000000000000000000000003000000006a91c533", - "digest": "0xf92fad149cfc1217defc7d9c2ff8d381a53dc054f57e785e2c99e7dae9d752ac", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402892", - "ptr": "67101995", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380060", - "ptr": "67101370", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f18", - "digest": "0x5940ecea9d179cbbee4ef4b9c23163673be31fcf8701cf37b1e0590cc3e450c7", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166656", - "ptr": "67101142", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4886048", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306864", - "len": null, - "nonce": null, - "param1": "67107826", - "param2": "67107786", - "pc": "306864", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462792", - "ptr": "67100670", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306864", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375788", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13080", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57692", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "122388", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "231", - "totalGas": "132651", - "transactionId": "0xb3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6a005fdd2a99fcef43cacb1599d41eeec7f5533d98974d638393e758945bdf006a4acfb69a2eb63907e1b1613dcdf5b334e1081def37869fd2d92d60dfc36482" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec409", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "170856", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10038", - "utxoId": "0x211d51f3b1497f2187e46aa2f8f8547f4cd3da0cef01803ea3592543c7e911eb0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7000f", - "utxoId": "0xb3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5390f31c984b3bdf4860b3d323e0860d754cd4dd8130880b29145e0943434fd1", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x2d32c73f96549cb1bfd627f15c1d5ee58650a3866fafdb36fc5fd9a8bd913d22", - "txPointer": "03bd1aa60067", - "utxoId": "0xf564316812723755249b6906d3feca727b5846c7415e004df199c43052588abc0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbc127c1421c0f727f780b92b93e9d53a7062b2b17a72554244c0f46e0a14d7dd", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x143d3948f6e1c0efabc37e3fa07c3ad3ffc2840c323749b8093f55536a7ff215", - "txPointer": "03bd1aa60067", - "utxoId": "0xf564316812723755249b6906d3feca727b5846c7415e004df199c43052588abc0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "170535", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x145fc7d112b76f001fb16e17eecbe03ad30b09ec7d35b42858d12f0a28f288ff", - "inputIndex": "2", - "stateRoot": "0x9f6a221d9258ca7d7037dc58c7a05e8365147820f457669342674fbc84869f87" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcad784e64bc1c849477484dc3a9d4cea76e0770c03656a703e903e9abfbf8cd9", - "inputIndex": "3", - "stateRoot": "0xff40f8284e412970c35e853840dfbf0a4c808f422dab20db6cef814f3a64cb59" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805a3b3a05aa8b1774c2c28a1783c18e29d5972d0fcd81a0df17bfe76ef6e335c5000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006b661f0a47f254227d2ea14abb66d438e663766fb1e6112bf44ee377cb36ac22b52d3a062431fc934a055734f1a0bde4ffad681e84e7f3d409b10cb705308a5800000000000000000000006a91c5aa00000000000000000000000000022965610000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000026a00000000000d258600000000000000010000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720001240f46581e0027821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5bffffffffffffffff0000000000000001000000000000001800000000000d25860001240f46581e000000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000211d51f3b1497f2187e46aa2f8f8547f4cd3da0cef01803ea3592543c7e911eb0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029b68f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003800000000000000000000000000000000000000000000000000000000000000000000000000000001b3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a0000000000000002f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000000f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001f564316812723755249b6906d3feca727b5846c7415e004df199c43052588abc00000000000000015390f31c984b3bdf4860b3d323e0860d754cd4dd8130880b29145e0943434fd12d32c73f96549cb1bfd627f15c1d5ee58650a3866fafdb36fc5fd9a8bd913d220000000003bd1aa6000000000000006767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000001f564316812723755249b6906d3feca727b5846c7415e004df199c43052588abc0000000000000003bc127c1421c0f727f780b92b93e9d53a7062b2b17a72554244c0f46e0a14d7dd143d3948f6e1c0efabc37e3fa07c3ad3ffc2840c323749b8093f55536a7ff2150000000003bd1aa60000000000000067df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029a27f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002145fc7d112b76f001fb16e17eecbe03ad30b09ec7d35b42858d12f0a28f288ff9f6a221d9258ca7d7037dc58c7a05e8365147820f457669342674fbc84869f8700000000000000010000000000000003cad784e64bc1c849477484dc3a9d4cea76e0770c03656a703e903e9abfbf8cd9ff40f8284e412970c35e853840dfbf0a4c808f422dab20db6cef814f3a64cb590000000000000040b5dfeef22606dfc9bdebeb13a1981c7bf7de57af140fce20c339bac78b84b12505f54b75597e30d73bbb1c967583d7a7d1df93771372ecbf6832544fed72d428", - "receiptsRoot": "0x5a3b3a05aa8b1774c2c28a1783c18e29d5972d0fcd81a0df17bfe76ef6e335c5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006b661f0a47f254227d2ea14abb66d438e663766fb1e6112bf44ee377cb36ac22b52d3a062431fc934a055734f1a0bde4ffad681e84e7f3d409b10cb705308a5800000000000000000000006a91c5aa00000000000000000000000000022965610000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000026a00000000000d258600000000000000010000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720001240f46581e0027821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5bffffffffffffffff0000000000000001000000000000001800000000000d25860001240f46581e000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa0000000000000000000000000002296561", - "digest": "0xf246e20ef4420e2c7c82cac391b25230513b0a3deca74e7fc7596cd05314d960", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5aa0000000000000000000000000002296561", - "digest": "0x424133bed9545cc8a29b60c5f8069b128782ac6e754de35e48b7816922376487", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "308634000000000", - "assetId": "0x27821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000026a00000000000d258600000000000000010000000000000001000000006a91c533", - "digest": "0xed20f1d5d74d3bf26a06b109f19d1f4412efba6953ea907d3798790b82b3411e", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67101418", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67100793", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5aa0000000000000000000000000002296561", - "digest": "0x424133bed9545cc8a29b60c5f8069b128782ac6e754de35e48b7816922376487", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100565", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1890238", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67099645", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5aa0000000000000000000000000002296561", - "digest": "0x424133bed9545cc8a29b60c5f8069b128782ac6e754de35e48b7816922376487", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099417", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "321123000000000", - "assetId": "0x27821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877964", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000026b00000000000d258600000000000000010000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000100000000000000010001240f46581e0000000000000d2586000000006a91c533", - "digest": "0xa39a79d969f6bdac096064a4fcfc2873fb28a56dac2ebd3a9fb87fc0e26de1a1", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67097577", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000026b00000000000d258600000000000000010000000000000001", - "digest": "0xd10baa3eb247072b2ff60cba3709031968e7c0636861c78cc3fe0e06330f2092", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67095417", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "174361", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "321", - "totalGas": "184189", - "transactionId": "0x5eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec409" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb5dfeef22606dfc9bdebeb13a1981c7bf7de57af140fce20c339bac78b84b12505f54b75597e30d73bbb1c967583d7a7d1df93771372ecbf6832544fed72d428" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "176286", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10039", - "utxoId": "0xf589e78ff05835eaf5a722010880d992e11dff16016facc1b59fa29dca47013b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x427f90dce440617913f507f52e0193a1db487838e8eed71a7f5f63d577aa18d1", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x5a9ede0d90dbc477abe646612f5a17623f0240999873853370a22c2dc486378e", - "txPointer": "03bd1aa60063", - "utxoId": "0x8fce79532799ce90a2bee927e1e209e0f9edec23d80dbda65f97437a401ade810001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70010", - "utxoId": "0x5eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec4090001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8c82963049b5f6aa8370b1600708421aecfd6eb1b56d2b13afd9bf4c64fee0cf", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x9233764cfdcc3021a0aced21a38cd6830a3552dcd7afd532c1e417db187b887d", - "txPointer": "03bd1aa60063", - "utxoId": "0x8fce79532799ce90a2bee927e1e209e0f9edec23d80dbda65f97437a401ade810003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "176039", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x00920d3794e7d44dec6bb852924d711ecf9c41f77235aeef61b6851db207092a", - "inputIndex": "1", - "stateRoot": "0x7d7834e14f49a271dfe99b5660ebb6461df727a4490e7c11dccd2f2890e8581b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x51eb7f8e15d4217f22251cb7b395b01fd53e7917dfd259676f374f95bead826b", - "inputIndex": "3", - "stateRoot": "0x31e4df805074e44494cb141be0cfa87461169d261a3e5933c1ce04f67eb36c75" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ec0dd07086689afd75673b89452d80ad2e87290342951b75497d19ec05f350fb0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000d734f9f7148669d9ea2f2a2ebd4fec242f6dbab6bd2baec1ffe0ef3f2697d4cf0a5747b07a65cc014b4623b8dee708c9c94f69052568b4b53424fb30e018c6500000000000000000000006a91c5aa000000000000000000000000000251cf4a00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000200000000108c3b190000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000f589e78ff05835eaf5a722010880d992e11dff16016facc1b59fa29dca47013b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002b09ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000039000000000000000000000000000000000000000000000000000000000000000000000000000000018fce79532799ce90a2bee927e1e209e0f9edec23d80dbda65f97437a401ade810000000000000001427f90dce440617913f507f52e0193a1db487838e8eed71a7f5f63d577aa18d15a9ede0d90dbc477abe646612f5a17623f0240999873853370a22c2dc486378e0000000003bd1aa60000000000000063b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000015eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec4090000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018fce79532799ce90a2bee927e1e209e0f9edec23d80dbda65f97437a401ade8100000000000000038c82963049b5f6aa8370b1600708421aecfd6eb1b56d2b13afd9bf4c64fee0cf9233764cfdcc3021a0aced21a38cd6830a3552dcd7afd532c1e417db187b887d0000000003bd1aa600000000000000634added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002afa7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100920d3794e7d44dec6bb852924d711ecf9c41f77235aeef61b6851db207092a7d7834e14f49a271dfe99b5660ebb6461df727a4490e7c11dccd2f2890e8581b00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000351eb7f8e15d4217f22251cb7b395b01fd53e7917dfd259676f374f95bead826b31e4df805074e44494cb141be0cfa87461169d261a3e5933c1ce04f67eb36c7500000000000000401691ed3809794e7f35dcbcaf394f6a3a9b76e03f4206d30ca1ae2d05f1b0fe61d68cb5cc8f75b79d2f01f8efc48ea093b0b6ad83e50d292f68e71a3e3dc5b286", - "receiptsRoot": "0xec0dd07086689afd75673b89452d80ad2e87290342951b75497d19ec05f350fb", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000000d734f9f7148669d9ea2f2a2ebd4fec242f6dbab6bd2baec1ffe0ef3f2697d4cf0a5747b07a65cc014b4623b8dee708c9c94f69052568b4b53424fb30e018c6500000000000000000000006a91c5aa000000000000000000000000000251cf4a00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000200000000108c3b190000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000251cf4a", - "digest": "0xa808373b6f328cd8f023fa7455b716b4cbfc01caf6cafe88c595a9023341d90e", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4a", - "digest": "0x2dd0ef898fa053bc90ffb3ec94081dccc5b210995f1ee4a6bbd8a5884476a5ba", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "15510000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000200000000108c3b19000000000000000010000000000000001000000006a91c533", - "digest": "0x74248c574a3ec644ee0e9e414dd16e54bc018dfec6cc04bb49899d1fdb736536", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100114", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4a", - "digest": "0x2dd0ef898fa053bc90ffb3ec94081dccc5b210995f1ee4a6bbd8a5884476a5ba", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1876310", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098789", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132126", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "247", - "totalGas": "141758", - "transactionId": "0x0bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x1691ed3809794e7f35dcbcaf394f6a3a9b76e03f4206d30ca1ae2d05f1b0fe61d68cb5cc8f75b79d2f01f8efc48ea093b0b6ad83e50d292f68e71a3e3dc5b286" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xbf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "155246", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1003a", - "utxoId": "0x2b8aa9c8fc9d4e620f42020b3b0821543b5496a8d0dc85e95fb5cd786ebf02a90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9001bafc76e1bb726aa47084b62007925438724df23f7eb2aece398383c7fddb", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xd4697d4b2c19663fc119511bfdb62d154825b4830158ca6ff05d8c9760a79568", - "txPointer": "03bd1aa6005a", - "utxoId": "0xe81bd6e4b80785b1a4b4cc15febdf3d48de44c25a9e09a2af26eca2fe1b49e000002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcc64f4b9ecaad773bae6888d156909bba41fba8ef568f4559d8782569aaf609c", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xf6228ed20d915b9b95df301c69813843a29330d73c2f6a082e52e3e6c6c459ba", - "txPointer": "03bd1aa6005a", - "utxoId": "0xe81bd6e4b80785b1a4b4cc15febdf3d48de44c25a9e09a2af26eca2fe1b49e000003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70011", - "utxoId": "0x0bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "155010", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2e50bcfab196d308b7a36cdabfbe6ea6fa8e0512a709849445cefa71b742d6ba", - "inputIndex": "1", - "stateRoot": "0x64e5f0aea79e3163ccf30252e0fac2c66b73cc36e606c84f5bdad6ce54b8bfee" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0f7425bd365285371358e693900a52e8bb8650516cd72bae62e45855a3ed558c", - "inputIndex": "2", - "stateRoot": "0x5af8af712afb5feb485337f47c75486986166ad2912bddb0c022991874cf694a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84803915891193d9a65658f81541efd5c2d52ccf86acfc68d7ab6788e4e80f8c61210000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000004f6d7c9aba73de13475f63e6f84ffda85e5213245e9eadabdcbb90a7eaeb744e0dcef43f39881e53e78758f902ad7532a17c67134d044f529fd311a85297889f00000000000000000000006a91c5aa00000000000000000000000000024e03740000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000ac00000002ac9cece000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aab00000000000000002b8aa9c8fc9d4e620f42020b3b0821543b5496a8d0dc85e95fb5cd786ebf02a90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025e6ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003a00000000000000000000000000000000000000000000000000000000000000000000000000000001e81bd6e4b80785b1a4b4cc15febdf3d48de44c25a9e09a2af26eca2fe1b49e0000000000000000029001bafc76e1bb726aa47084b62007925438724df23f7eb2aece398383c7fddbd4697d4b2c19663fc119511bfdb62d154825b4830158ca6ff05d8c9760a795680000000003bd1aa6000000000000005af356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001e81bd6e4b80785b1a4b4cc15febdf3d48de44c25a9e09a2af26eca2fe1b49e000000000000000003cc64f4b9ecaad773bae6888d156909bba41fba8ef568f4559d8782569aaf609cf6228ed20d915b9b95df301c69813843a29330d73c2f6a082e52e3e6c6c459ba0000000003bd1aa6000000000000005ac46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000010bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025d82f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000012e50bcfab196d308b7a36cdabfbe6ea6fa8e0512a709849445cefa71b742d6ba64e5f0aea79e3163ccf30252e0fac2c66b73cc36e606c84f5bdad6ce54b8bfee000000000000000100000000000000020f7425bd365285371358e693900a52e8bb8650516cd72bae62e45855a3ed558c5af8af712afb5feb485337f47c75486986166ad2912bddb0c022991874cf694a000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409972b3244857cf0ea761ccc96f93e7bed6174166bae8f731a13dc70a2b5c77aadf76fcef3633db2f4bb639b28d0002e95ecbd4cf85f568a4588e67214efbce87", - "receiptsRoot": "0x3915891193d9a65658f81541efd5c2d52ccf86acfc68d7ab6788e4e80f8c6121", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000004f6d7c9aba73de13475f63e6f84ffda85e5213245e9eadabdcbb90a7eaeb744e0dcef43f39881e53e78758f902ad7532a17c67134d044f529fd311a85297889f00000000000000000000006a91c5aa00000000000000000000000000024e03740000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000ac00000002ac9cece000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa00000000000000000000000000024e0374", - "digest": "0x7b76a07015b344f899d29b5f2c9e3283505cd2636e9bff9da977e6e1552bcdc3", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5aa00000000000000000000000000024e0374", - "digest": "0xa7acc30f0e73ae771b2b45019f62803f0e756309c09b7abac9ba7d7138826edd", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "241203900000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000ac00000002ac9cece000000000000000000000000000000001000000006a91c533", - "digest": "0x3e40413590fd74d93e1d603cfeef23adce7a7feaafa7f831bc5c983636742168", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100898", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100273", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5aa00000000000000000000000000024e0374", - "digest": "0xa7acc30f0e73ae771b2b45019f62803f0e756309c09b7abac9ba7d7138826edd", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100045", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882552", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099573", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125884", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "236", - "totalGas": "135516", - "transactionId": "0xbf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9972b3244857cf0ea761ccc96f93e7bed6174166bae8f731a13dc70a2b5c77aadf76fcef3633db2f4bb639b28d0002e95ecbd4cf85f568a4588e67214efbce87" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c25", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "321290", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10037", - "utxoId": "0x01e91069ca59c1a4c9bbbb434b9fc28497bea64dc3bf5c7f0ad99c343152f7380000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x51eb7f8e15d4217f22251cb7b395b01fd53e7917dfd259676f374f95bead826b", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x3c0e52404a84ada6c499a829652cc1aa9c9b8fb33f55080bc45893efdcd12965", - "txPointer": "03bd1aa70011", - "utxoId": "0x0bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x00920d3794e7d44dec6bb852924d711ecf9c41f77235aeef61b6851db207092a", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x531db84c80e9da555307c9a8bc6bd5c1beb23b7833bf045d41951c6cf1fb08c5", - "txPointer": "03bd1aa70011", - "utxoId": "0x0bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70012", - "utxoId": "0xbf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "321042", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4ccd4f9bcb5cdc14b86022a99b82cba7121656fba1901aedc319b946c578d9c2", - "inputIndex": "1", - "stateRoot": "0x07d7d3f43c5b569b24c3d22e369d1b48e4cff84ebda0f1a851dcc3f6fb3553b7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd591acee2af10c6220e962899bacf671d485cb8970c1e7781c2f9daf6f2251a5", - "inputIndex": "2", - "stateRoot": "0x66f14feec8560ddda2105c6af8ec9f3cc108071c0cdbafd0f3d49b0cdbbe50b1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480c1a67e29bf31b04c21a5f2f40c0e55af6ce22f28339471e4fc7b56d6b09548a10000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000098971474578344bfe1480728b07452327fc0d924cea703f8fe27b4a34f0cfc0784d36740e1ea5fe14b4074b9f5f21930c637655fe52bd50011096265dbe96ddf00000000000000000000006a91c5aa000000000000000000000000000251cf4b00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001e0000000108e08860000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab000000000000000001e91069ca59c1a4c9bbbb434b9fc28497bea64dc3bf5c7f0ad99c343152f7380000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004e70af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000037000000000000000000000000000000000000000000000000000000000000000000000000000000010bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e000000000000000351eb7f8e15d4217f22251cb7b395b01fd53e7917dfd259676f374f95bead826b3c0e52404a84ada6c499a829652cc1aa9c9b8fb33f55080bc45893efdcd129650000000003bd1aa700000000000000114added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000010bb29a53509ddca07a3d543ca21752a59a6ec426217ecb5d8b14b4b3e85c419e000000000000000100920d3794e7d44dec6bb852924d711ecf9c41f77235aeef61b6851db207092a531db84c80e9da555307c9a8bc6bd5c1beb23b7833bf045d41951c6cf1fb08c50000000003bd1aa70000000000000011b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001bf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004e612f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000014ccd4f9bcb5cdc14b86022a99b82cba7121656fba1901aedc319b946c578d9c207d7d3f43c5b569b24c3d22e369d1b48e4cff84ebda0f1a851dcc3f6fb3553b700000000000000010000000000000002d591acee2af10c6220e962899bacf671d485cb8970c1e7781c2f9daf6f2251a566f14feec8560ddda2105c6af8ec9f3cc108071c0cdbafd0f3d49b0cdbbe50b100000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a7a718a35b2f3ee283162c04c76047c4f92d287e6579acf77fba40d7d8d8a6c6da24a8ac23ed4c1fffa22ab1ca23e19ed6a5904cff3470166d8b7ee2a4383950", - "receiptsRoot": "0xc1a67e29bf31b04c21a5f2f40c0e55af6ce22f28339471e4fc7b56d6b09548a1", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000098971474578344bfe1480728b07452327fc0d924cea703f8fe27b4a34f0cfc0784d36740e1ea5fe14b4074b9f5f21930c637655fe52bd50011096265dbe96ddf00000000000000000000006a91c5aa000000000000000000000000000251cf4b00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001e0000000108e08860000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000251cf4b", - "digest": "0x6c44ea9275bec5bad30a0fe2ec422c30ee6d7480053a58a73b4c4af5fd3b080d", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4b", - "digest": "0xd93ae132a15f6115a46ae0069d025d77bdb2325dbb7d9a123f5c59ae52729604", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "11330000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001e0000000108e0886000000000000000010000000000000001000000006a91c533", - "digest": "0xff0011cac8d2ed0380f963635341987ab3e4234042a1638528232683542a505a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100210", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099585", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4b", - "digest": "0xd93ae132a15f6115a46ae0069d025d77bdb2325dbb7d9a123f5c59ae52729604", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099357", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875852", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098885", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "132584", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "248", - "totalGas": "142216", - "transactionId": "0x8f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c25" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xa7a718a35b2f3ee283162c04c76047c4f92d287e6579acf77fba40d7d8d8a6c6da24a8ac23ed4c1fffa22ab1ca23e19ed6a5904cff3470166d8b7ee2a4383950" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168858", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1003b", - "utxoId": "0x6c268244c29f224ad57d87cefdf0f209a15bdb0041708e8acd7b3cf4ede79a360000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70013", - "utxoId": "0x8f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c250003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x246aaf5535a8d45bd4491105d4ca0cb93b9622aee68bf38cd51b64f38d5cd1a4", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0xa79f1eb8e89121c411b6196853682f0cbde408552cfa36afc37961a197e97205", - "txPointer": "03bd1aa6005d", - "utxoId": "0x410fb2cba196e427ea68b07541ff7d1682c3f4a213d441037f791ec9ec9312310001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0a977a8815a3607921e26595c62c15e94d5bcd824d6e00f4060892a996f7d199", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x20e6211b2aa494e662aed2b1f96c0e4d7f06dc160868472d02ce9165d62d8ed8", - "txPointer": "03bd1aa6005d", - "utxoId": "0x410fb2cba196e427ea68b07541ff7d1682c3f4a213d441037f791ec9ec9312310003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "168631", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe7bfe352ef7159a416a6674577fd29e80df41f4ca05c56535584a9cad7f53a1e", - "inputIndex": "2", - "stateRoot": "0x1019a30a0ce05ea07030e857f058e44dff0b2da30412daec137a862e1fcbd881" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4bc8abcfff55d59f78002ed94ec9d3956a8dad0eea8ba2cb70873ff8f78ec8c2", - "inputIndex": "3", - "stateRoot": "0xc74041d7751c8e3e8c17828bf912ec43a3dcf3d534e1105f6bd563db98410aab" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ddd2e5e4f3430f2aca140e53106c7bc8b6fa559ebb006b40440624228baa824c00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000498ce515707f2faf80787d06522e80e6dba359198af92271a8a2a4f08a6cdc26bbbec730d948a2949775f63b6459a2eb2aae177a032b9eb503e358e2e1326a4a00000000000000000000006a91c5aa00000000000000000000000000023dd5480000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000a5fc26b900f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff000000000000000100000000000000180000000015520db8000000a5fc26b900000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000006c268244c29f224ad57d87cefdf0f209a15bdb0041708e8acd7b3cf4ede79a360000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002939af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003b000000000000000000000000000000000000000000000000000000000000000000000000000000018f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c250000000000000003b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001410fb2cba196e427ea68b07541ff7d1682c3f4a213d441037f791ec9ec9312310000000000000001246aaf5535a8d45bd4491105d4ca0cb93b9622aee68bf38cd51b64f38d5cd1a4a79f1eb8e89121c411b6196853682f0cbde408552cfa36afc37961a197e972050000000003bd1aa6000000000000005de2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001410fb2cba196e427ea68b07541ff7d1682c3f4a213d441037f791ec9ec93123100000000000000030a977a8815a3607921e26595c62c15e94d5bcd824d6e00f4060892a996f7d19920e6211b2aa494e662aed2b1f96c0e4d7f06dc160868472d02ce9165d62d8ed80000000003bd1aa6000000000000005dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000292b7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e7bfe352ef7159a416a6674577fd29e80df41f4ca05c56535584a9cad7f53a1e1019a30a0ce05ea07030e857f058e44dff0b2da30412daec137a862e1fcbd881000000000000000100000000000000034bc8abcfff55d59f78002ed94ec9d3956a8dad0eea8ba2cb70873ff8f78ec8c2c74041d7751c8e3e8c17828bf912ec43a3dcf3d534e1105f6bd563db98410aab0000000000000040cfde3d8f0e2c10fed9cc061c78be3d54543736d9af3a9d756da7c521d5f09830ce8d7d5485db8fe0b9aa943bbaefa0f9dbaef1e05f914f92971bf198c809924f", - "receiptsRoot": "0xddd2e5e4f3430f2aca140e53106c7bc8b6fa559ebb006b40440624228baa824c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000498ce515707f2faf80787d06522e80e6dba359198af92271a8a2a4f08a6cdc26bbbec730d948a2949775f63b6459a2eb2aae177a032b9eb503e358e2e1326a4a00000000000000000000006a91c5aa00000000000000000000000000023dd5480000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000a5fc26b900f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff000000000000000100000000000000180000000015520db8000000a5fc26b9000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa00000000000000000000000000023dd548", - "digest": "0x0f452c0f5383d24b4b98977d4763f92416f11f2162788655701b19dd9bd1c753", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5aa00000000000000000000000000023dd548", - "digest": "0xfbafca30b458092d63a9cd70250d3fc6439bac50d90ff92c344de4b8920c2dd0", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5aa00000000000000000000000000023dd548", - "digest": "0xfbafca30b458092d63a9cd70250d3fc6439bac50d90ff92c344de4b8920c2dd0", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "712900000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000560000000015520db8000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000010000000000000001000000a5fc26b9000000000015520db8000000006a91c533", - "digest": "0xc697c01d527fc8b364d0916476e7af18b075eb8450aae5858ea9f778c80e2962", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000560000000015520db800000000000000010000000000000001", - "digest": "0x368f0d45fbbd2f274bad58ed3ddd022c85359e32270e6c327e4af793880d3281", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100678", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120598", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "227", - "totalGas": "130219", - "transactionId": "0x619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xcfde3d8f0e2c10fed9cc061c78be3d54543736d9af3a9d756da7c521d5f09830ce8d7d5485db8fe0b9aa943bbaefa0f9dbaef1e05f914f92971bf198c809924f" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c5014", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "326527", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1003c", - "utxoId": "0xcd7bef329f10e2ae6c9b6c147418e5870e87afef97ea96454258e427becdfffa0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xc8b21c35017d05489861fa8f1e6f6744ddae4e830866a00a06d2cc1589b87427", - "txPointer": "03bd1aa7000f", - "utxoId": "0xb3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xeca65a6fc813e9e4e768ac01385339926d4a0e43f1286a8d7bbe210b2505cd6f", - "txPointer": "03bd1aa7000f", - "utxoId": "0xb3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70014", - "utxoId": "0x619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "326407", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0xe1d48fd84587017fa12f97d6fe3fac8fe82fb96bc3436efa092f6cbbe53d06a7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0xa5489cc88482c2dc34f70b43fafeb97715f7cba1bf1e43741a4a9d6e9156c587" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40cce2d140465b4b15be201195ae86521e15d6adc478fa01d725481a2d9042e2f70000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000083ca2d37de73c81d65b78c7d935027dbdd2280b8ea616ad8eb4d180ad99ce1cb6b72595b56e75f6cc0938bb35c3e0d17a31f678c70ad4a065435fc08f1e0c62a00000000000000000000006a91c5aa000000000000000000000000000a759f1b0000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000490000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000006400000000000210ac0000000003bd1aab0000000000000000cd7bef329f10e2ae6c9b6c147418e5870e87afef97ea96454258e427becdfffa0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004fb7ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003c00000000000000000000000000000000000000000000000000000000000000000000000000000001b3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a00000000000000010000000000000000000000000000000000000000000000000000000000000000c8b21c35017d05489861fa8f1e6f6744ddae4e830866a00a06d2cc1589b874270000000003bd1aa7000000000000000f9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001b3a45a33922e95e4827868b903514880840d8cde68b492a08f7c6df5e84ac16a00000000000000030000000000000000000000000000000000000000000000000000000000000000eca65a6fc813e9e4e768ac01385339926d4a0e43f1286a8d7bbe210b2505cd6f0000000003bd1aa7000000000000000ff31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000001619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004fb07f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000e1d48fd84587017fa12f97d6fe3fac8fe82fb96bc3436efa092f6cbbe53d06a7000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000a5489cc88482c2dc34f70b43fafeb97715f7cba1bf1e43741a4a9d6e9156c58700000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e9e0adc94289280efd93ba4964ac26a99ba4a506a63cd80fc9c5456453eff96c9b895a5adb318543c277a1251a4dce692b046710c4f9e468d2a31d16a58159a8", - "receiptsRoot": "0xcce2d140465b4b15be201195ae86521e15d6adc478fa01d725481a2d9042e2f7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000083ca2d37de73c81d65b78c7d935027dbdd2280b8ea616ad8eb4d180ad99ce1cb6b72595b56e75f6cc0938bb35c3e0d17a31f678c70ad4a065435fc08f1e0c62a00000000000000000000006a91c5aa000000000000000000000000000a759f1b0000000000000002f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000490000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000a759f1b", - "digest": "0x2bd1c3a863acc95d803a25b55e9e3a6209cf861948b4f094d12c45faae5a8240", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147424", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f1b", - "digest": "0xd9f3bb3c7b2a51dcc305b4405bd4d5dc1ed4880b783e023da90de9aa49366a01", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4964626", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379596", - "ptr": "67105489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5aa000000000000000000000000000a759f1b", - "digest": "0xd9f3bb3c7b2a51dcc305b4405bd4d5dc1ed4880b783e023da90de9aa49366a01", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166192", - "ptr": "67105261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4949905", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306400", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306400", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462328", - "ptr": "67104789", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306400", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375324", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57228", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "59237", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "120", - "totalGas": "68869", - "transactionId": "0x1deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c5014" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe9e0adc94289280efd93ba4964ac26a99ba4a506a63cd80fc9c5456453eff96c9b895a5adb318543c277a1251a4dce692b046710c4f9e468d2a31d16a58159a8" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x22bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed8", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "184168", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1003e", - "utxoId": "0x5dd672b162826137efa3560d8f28907deb99b5c709802d488ffb98c0022fe6d80000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbcbc11676150fa2f31c67226e99ed04e8ca98b7041e3e20f983343795257f7b3", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x0e7ae4bddff65b0349554bf61cd014b178cfe6c3454af4f24e68683ef91f6ae7", - "txPointer": "03bd1aa70013", - "utxoId": "0x8f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c250002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4e91106236e3cda8ba1fc1300f020bec4089b56baab4ef184d7afe9300c3126f", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x63f2331c5febe8dcf45e4e3689da957eddd792e9dfa9c1948f6725d76c9344ad", - "txPointer": "03bd1aa70013", - "utxoId": "0x8f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c250001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70015", - "utxoId": "0x1deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c50140003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "183923", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x12599925dcfde905dd94dd506e87d07b2b04ca917c2816f7bb6da3a9019751fe", - "inputIndex": "1", - "stateRoot": "0xa9db9b64bfbdf6701259bb95466dcc051cc2eea713e3fc6e98ead7668cf049ed" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2b704307c07bb581b8c3dd3e7c2309128cb6f3b5e27e3132ecdd73c24e4827ca", - "inputIndex": "2", - "stateRoot": "0x356c925b42d9931ba3a32761091ba2ff5361faac19219ccdd3e48cd50c3afe50" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848021f03cd72f044eb8f2c0bfdbabafc65c8d97e707dcfa58976baca85d109d7cdf00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000012e2ee43a8a8adc2de08808e9e70f1c46aae8666dabea822cc26011a1a0dd579f22af95342d832242f7c59918b81b1987e7d4061576628f604f5071c54a128eb00000000000000000000006a91c5aa000000000000000000000000000251cf4d00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000000db72767986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000010897e6a00000000316f42180000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000005dd672b162826137efa3560d8f28907deb99b5c709802d488ffb98c0022fe6d80000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002cf68f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003e000000000000000000000000000000000000000000000000000000000000000000000000000000018f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c250000000000000002bcbc11676150fa2f31c67226e99ed04e8ca98b7041e3e20f983343795257f7b30e7ae4bddff65b0349554bf61cd014b178cfe6c3454af4f24e68683ef91f6ae70000000003bd1aa70000000000000013b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000018f513ba56cf585df27bd515fc7b29f73b4d0af9ea7e9bb58f2e846e601300c2500000000000000014e91106236e3cda8ba1fc1300f020bec4089b56baab4ef184d7afe9300c3126f63f2331c5febe8dcf45e4e3689da957eddd792e9dfa9c1948f6725d76c9344ad0000000003bd1aa700000000000000134added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000011deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c50140000000000000003ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002ce73f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000112599925dcfde905dd94dd506e87d07b2b04ca917c2816f7bb6da3a9019751fea9db9b64bfbdf6701259bb95466dcc051cc2eea713e3fc6e98ead7668cf049ed000000000000000100000000000000022b704307c07bb581b8c3dd3e7c2309128cb6f3b5e27e3132ecdd73c24e4827ca356c925b42d9931ba3a32761091ba2ff5361faac19219ccdd3e48cd50c3afe500000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004062861ad3b8472b7705e90d93faa520bd815344b2df3d1bf07f3a4052de9ae9058fa7a34f5623afdb28a458483173a0d72f4749ac424e11bdd2c99887f0aac1f4", - "receiptsRoot": "0x21f03cd72f044eb8f2c0bfdbabafc65c8d97e707dcfa58976baca85d109d7cdf", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000012e2ee43a8a8adc2de08808e9e70f1c46aae8666dabea822cc26011a1a0dd579f22af95342d832242f7c59918b81b1987e7d4061576628f604f5071c54a128eb00000000000000000000006a91c5aa000000000000000000000000000251cf4d00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000000db72767986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000010897e6a00000000316f421800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000251cf4d", - "digest": "0x68d2f1d9977a6cdba51b9b9aad1482177357827299a86bc3a3aca8ee67785eb6", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4d", - "digest": "0x7f2d3195864ba1ffe218cb063776e4165fd2d4e0df82aba0f8e287675b825426", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4d", - "digest": "0x7f2d3195864ba1ffe218cb063776e4165fd2d4e0df82aba0f8e287675b825426", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "58907387800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000016000000010897e6a0000000000000000000000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571000000000000000000000000000000010000000316f42180000000010897e6a0000000006a91c533", - "digest": "0xd484bad66424c2d86023e3e29a418b4d58759f24efe1a7d022d209496cc83657", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000016000000010897e6a000000000000000000000000000000001", - "digest": "0xd2b91c771cce86a92bc68abf30d1f689ddd906196e717b778409e7ddfa1e8144", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099526", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130918", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "245", - "totalGas": "140539", - "transactionId": "0x22bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed8" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x62861ad3b8472b7705e90d93faa520bd815344b2df3d1bf07f3a4052de9ae9058fa7a34f5623afdb28a458483173a0d72f4749ac424e11bdd2c99887f0aac1f4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be9850206", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151556", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1003d", - "utxoId": "0xc5ee1c32bfac5c5c249e248bcb7fa35b9f5927cf595f6f7a061b445915a86e250000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2b704307c07bb581b8c3dd3e7c2309128cb6f3b5e27e3132ecdd73c24e4827ca", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xe31b309fdd5a03de01701db1d17c2d2a757d6dcf859d6f72a3b7e5c0830f5c95", - "txPointer": "03bd1aa70016", - "utxoId": "0x22bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed80002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x12599925dcfde905dd94dd506e87d07b2b04ca917c2816f7bb6da3a9019751fe", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x4e14ec122b6b67542bfedf67951ecdfceb86c9311f53ddd09065a85ea114ad0c", - "txPointer": "03bd1aa70016", - "utxoId": "0x22bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed80001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70016", - "utxoId": "0x22bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed80003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151312", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1b2e7cc66a85af590bd548602b6c15bd8fada16f248bfa60db77eb8f15bfe874", - "inputIndex": "1", - "stateRoot": "0xc0222190e3f46478edcf5649d6631255995a7e873de86e958ca3c27842745fd0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd754bf2f46fa2bbae47652d2f9e411ad05818a08ca1eb433fdc64b68193afa32", - "inputIndex": "2", - "stateRoot": "0xa11bf0954238b6d9dc42044b466195eeee519f7d2b4d44dfe69e7bc9e7f3186f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848029137dc68f5cc1d814bf42601e67464b01637fe3c414448edba5b532ac03cfed00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000087a3e62019128fdd0a688b9d599e204ce1dcce1325b13b9abd8b58b93eaf2f1cc998c1cef8708e91629c1a5f7deb36852aed839082449fed88c35cb73c5f23e00000000000000000000006a91c5aa000000000000000000000000000251cf4c00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f7264657200000014b65afda06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000010896ae2000000004aa7a2200000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000c5ee1c32bfac5c5c249e248bcb7fa35b9f5927cf595f6f7a061b445915a86e250000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025004f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000000122bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed800000000000000022b704307c07bb581b8c3dd3e7c2309128cb6f3b5e27e3132ecdd73c24e4827cae31b309fdd5a03de01701db1d17c2d2a757d6dcf859d6f72a3b7e5c0830f5c950000000003bd1aa700000000000000164added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939000000000000000122bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed8000000000000000112599925dcfde905dd94dd506e87d07b2b04ca917c2816f7bb6da3a9019751fe4e14ec122b6b67542bfedf67951ecdfceb86c9311f53ddd09065a85ea114ad0c0000000003bd1aa70000000000000016b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571000000000000000122bf95f6c7f623a14ca6db050c81154641149d719507460c715562d588b26ed80000000000000003ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024f10f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000011b2e7cc66a85af590bd548602b6c15bd8fada16f248bfa60db77eb8f15bfe874c0222190e3f46478edcf5649d6631255995a7e873de86e958ca3c27842745fd000000000000000010000000000000002d754bf2f46fa2bbae47652d2f9e411ad05818a08ca1eb433fdc64b68193afa32a11bf0954238b6d9dc42044b466195eeee519f7d2b4d44dfe69e7bc9e7f3186f000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407fdb3495b621df1a30e3bc37079e6b4bd530d92d3e5be3d8087fba7e9e3e02cd4f646df1470ca4e057d28c912765eb99a24e12fc84e4cbf86db263eb6a098be4", - "receiptsRoot": "0x29137dc68f5cc1d814bf42601e67464b01637fe3c414448edba5b532ac03cfed", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000087a3e62019128fdd0a688b9d599e204ce1dcce1325b13b9abd8b58b93eaf2f1cc998c1cef8708e91629c1a5f7deb36852aed839082449fed88c35cb73c5f23e00000000000000000000006a91c5aa000000000000000000000000000251cf4c00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f7264657200000014b65afda06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000010896ae2000000004aa7a22000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5aa000000000000000000000000000251cf4c", - "digest": "0x52a11d21f41d2ff0f2e48d95e43b55110cb0689d3084ddb23c5bd9dd65981508", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4c", - "digest": "0x12c8f5b1e0b16565f57b3ab9045e13e00bcece50e43c347b258640833ea9b0cd", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5aa000000000000000000000000000251cf4c", - "digest": "0x12c8f5b1e0b16565f57b3ab9045e13e00bcece50e43c347b258640833ea9b0cd", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "88958762400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000000010896ae20000000000000000000000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000000000000000000000100000004aa7a2200000000010896ae20000000006a91c533", - "digest": "0x5f8d0976c55d178b06543d251cc8426e0d381c83ddd1aabd4e29319d55462a79", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000000010896ae2000000000000000000000000000000001", - "digest": "0x20826469f1c865625295c05bce8ad68f8f0a928e211a6e771f3ee6e71a6eae5b", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099654", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130656", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "244", - "totalGas": "140277", - "transactionId": "0x661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be9850206" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7fdb3495b621df1a30e3bc37079e6b4bd530d92d3e5be3d8087fba7e9e3e02cd4f646df1470ca4e057d28c912765eb99a24e12fc84e4cbf86db263eb6a098be4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x07ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149906", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1003f", - "utxoId": "0x354224a3bf40b9d8ae1d2cfece3c49430338f91f4f34d9254c8f7139735992780000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x125cf94037a5cf8c10935f7da2188ee9db232135764c145dcac0a57de33fc961", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x423ef1e93090614469bccd32d68ecbabb963d038d1bc0f9c246a4ed9d59a74d6", - "txPointer": "03bd1aa70015", - "utxoId": "0x1deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c50140002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef4", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70017", - "utxoId": "0x661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be98502060003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xba90881981853b68da822a121e4e142ed77cb6bf505434bc16da6eaff43f10b0", - "contractId": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "stateRoot": "0x923e158217e475c0a41f17c8222d70eacecd5789aeea81602e219c357e582ccd", - "txPointer": "03bd1aa6005b", - "utxoId": "0x030660310d4f1ff853afce5a932a0920ef01d80e61a16e084521cfb90535df650001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149553", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xba07ea3a7813214cbfa268ee877f2e4c043fbdea912fe0bb71ef450503d1f7de", - "inputIndex": "1", - "stateRoot": "0x4c637601fb903acb65d0416e76b9301be4f9ad92c32a970ff3655d9252b58e11" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6e721ba894a5e07f2d0301c470176ac09c0b5b8c44aa1bfa22bcae80e1ab535f", - "inputIndex": "3", - "stateRoot": "0x0d60f078fcbbb00999995ec63f07c25741b8129cbd4665ad57df6fa30fc244f6" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480369650746b4da8c99e630acf395833e4328393655a82fb1ceef868add5c53d4a000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bc855f1d35c46e9cc827fd105a6408af22fe84b76ef202bbb8846a61586868f6026d57e67531b114b02e3232b37780c3a2e4de5c5e0c53320198d8fe317d734400000000000000000000006a91c5ab00000000000000000000000000022436240000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000021000004116b3b3f0000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000c28a00fe686c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000004114e9f0700000000000b22ad700000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000354224a3bf40b9d8ae1d2cfece3c49430338f91f4f34d9254c8f7139735992780000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024992f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000003f000000000000000000000000000000000000000000000000000000000000000000000000000000011deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c50140000000000000002125cf94037a5cf8c10935f7da2188ee9db232135764c145dcac0a57de33fc961423ef1e93090614469bccd32d68ecbabb963d038d1bc0f9c246a4ed9d59a74d60000000003bd1aa70000000000000015f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000001661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be985020600000000000000032644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef400000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001030660310d4f1ff853afce5a932a0920ef01d80e61a16e084521cfb90535df650000000000000001ba90881981853b68da822a121e4e142ed77cb6bf505434bc16da6eaff43f10b0923e158217e475c0a41f17c8222d70eacecd5789aeea81602e219c357e582ccd0000000003bd1aa6000000000000005b9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024831f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001ba07ea3a7813214cbfa268ee877f2e4c043fbdea912fe0bb71ef450503d1f7de4c637601fb903acb65d0416e76b9301be4f9ad92c32a970ff3655d9252b58e110000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000036e721ba894a5e07f2d0301c470176ac09c0b5b8c44aa1bfa22bcae80e1ab535f0d60f078fcbbb00999995ec63f07c25741b8129cbd4665ad57df6fa30fc244f600000000000000405284aa00b79b282064c73e41661910fb7448aefe024dc2ff3b19ca837a3b9dd7f6b1e8c267478f7f2c85983f9eeffbfe0a2777a23ec9b166c60cec0ef385a884", - "receiptsRoot": "0x369650746b4da8c99e630acf395833e4328393655a82fb1ceef868add5c53d4a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000bc855f1d35c46e9cc827fd105a6408af22fe84b76ef202bbb8846a61586868f6026d57e67531b114b02e3232b37780c3a2e4de5c5e0c53320198d8fe317d734400000000000000000000006a91c5ab00000000000000000000000000022436240000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000021000004116b3b3f0000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000c28a00fe686c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000004114e9f0700000000000b22ad700000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002243624", - "digest": "0xef8c57dcbc4923c6b3b55abe64aa650aef87e883a54b24b90f766047f7feaed5", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243624", - "digest": "0x0282bb510c1e6d80087c02e288ae3b363651a2b8ff7d2fd4ebfc50884a001884", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963079", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "714494656400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "401592", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000021000004116b3b3f0000000000000000000000000000000003000000006a91c533", - "digest": "0x336dffec45635fdfe0934ea17459781d0892ee730f7ceca58c27e126a0c28061", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "395940", - "ptr": "67100570", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "373108", - "ptr": "67099945", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243624", - "digest": "0x0282bb510c1e6d80087c02e288ae3b363651a2b8ff7d2fd4ebfc50884a001884", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099717", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881846", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000000", - "digest": "0x71c2674e8d8b35ad161cfd1915bb382fb6b8209e2ef9dd0e5883ab0dbbce7a4b", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "455840", - "ptr": "67099245", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "368836", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243624", - "digest": "0x0282bb510c1e6d80087c02e288ae3b363651a2b8ff7d2fd4ebfc50884a001884", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099017", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "835538976360", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1870441", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000017000004114e9f07000000000000000000000000000000000300000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000003000000000b22ad70000004114e9f0700000000006a91c533", - "digest": "0xedfad3a9899379abcb22b611f98b19b10c53fdfa45129fd3922452de9e12e0e7", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "426572", - "ptr": "67097625", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000017000004114e9f070000000000000000000000000000000003", - "digest": "0x4708897b426371467ce3c09ba71afdc6e23c101c567aab592962ccd3bee1960f", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "372804", - "ptr": "67094153", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "193028", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "353", - "totalGas": "202856", - "transactionId": "0x07ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5284aa00b79b282064c73e41661910fb7448aefe024dc2ff3b19ca837a3b9dd7f6b1e8c267478f7f2c85983f9eeffbfe0a2777a23ec9b166c60cec0ef385a884" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x7e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d87", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "187796", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10040", - "utxoId": "0x350730d6424d6fdcb21d62d633b114f368e8bd464ce835a8fa6004208adf81fa0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa974f66c0f7860a36a50dd41cd832ce03f4f1e5fa1cc13341839786886a2a083", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x1c0894d9112ee93b1b993485bc8b572d4f190dcbb4fe2533d520f132a3ecf67e", - "txPointer": "03bd1aa60069", - "utxoId": "0x6a54f3441ed8dd4f14963f2aaadd8c296873b0b8b08a66e1d8d1ed954c8ed14a0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70018", - "utxoId": "0x07ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f40002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x65469018a0dedd794d0cc1540b4600ae02423817cfc1e1354af7380e08b0369d", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x15d7d2ec56ba2b3ba2de0625a55ad64ea1c13c1c17950c612fd64ffc4f48e099", - "txPointer": "03bd1aa60069", - "utxoId": "0x6a54f3441ed8dd4f14963f2aaadd8c296873b0b8b08a66e1d8d1ed954c8ed14a0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "187580", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x772b39cce720673bf6327f86c1d9a9763bb7ec9a147987ca6653557550744fe9", - "inputIndex": "1", - "stateRoot": "0xaea1ce54c8316491d4e4b206897ab1301c836fd34a98373ca20c176bd37b1ca9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xaba7555733aedd044f1c2ecbad918ef22cd5e23fc263e08255b48f55f886206d", - "inputIndex": "3", - "stateRoot": "0xab2c3eff4e6ad231d893f20ab1a4d68791564cda1b1ee73b41b93ad83f1397ee" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809b130d4a308277bc5878764d83825067383bc826e31707733c07ee3528a6e21700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f07d17e747b3efe565da3416a8cd9b0a1586d1780647f4dd1079c80622df8e1f6aa50b76da8c708f8569e8dd2dc016f042bbe581341fff44f04acb8c7b0ec0b000000000000000000000006a91c5ab000000000000000000000000000249f4460000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000001c5d5bb087c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000173f01080000048baa0ddb00000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000350730d6424d6fdcb21d62d633b114f368e8bd464ce835a8fa6004208adf81fa0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002dd94f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000016a54f3441ed8dd4f14963f2aaadd8c296873b0b8b08a66e1d8d1ed954c8ed14a0000000000000003a974f66c0f7860a36a50dd41cd832ce03f4f1e5fa1cc13341839786886a2a0831c0894d9112ee93b1b993485bc8b572d4f190dcbb4fe2533d520f132a3ecf67e0000000003bd1aa600000000000000699789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d000000000000000107ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f400000000000000023c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000016a54f3441ed8dd4f14963f2aaadd8c296873b0b8b08a66e1d8d1ed954c8ed14a000000000000000265469018a0dedd794d0cc1540b4600ae02423817cfc1e1354af7380e08b0369d15d7d2ec56ba2b3ba2de0625a55ad64ea1c13c1c17950c612fd64ffc4f48e0990000000003bd1aa60000000000000069295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002dcbcf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001772b39cce720673bf6327f86c1d9a9763bb7ec9a147987ca6653557550744fe9aea1ce54c8316491d4e4b206897ab1301c836fd34a98373ca20c176bd37b1ca9000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003aba7555733aedd044f1c2ecbad918ef22cd5e23fc263e08255b48f55f886206dab2c3eff4e6ad231d893f20ab1a4d68791564cda1b1ee73b41b93ad83f1397ee0000000000000040e63f3a894bdbe5170d1481f30c1dfb1a1fc7bece20e234c26a6ef61eac8082382fae88f1e1eac7c18a0491b7f6acf49adec949b73bfc44f8ac39c79729d6a2d6", - "receiptsRoot": "0x9b130d4a308277bc5878764d83825067383bc826e31707733c07ee3528a6e217", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f07d17e747b3efe565da3416a8cd9b0a1586d1780647f4dd1079c80622df8e1f6aa50b76da8c708f8569e8dd2dc016f042bbe581341fff44f04acb8c7b0ec0b000000000000000000000006a91c5ab000000000000000000000000000249f4460000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f72646572000001c5d5bb087c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000173f01080000048baa0ddb000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000249f446", - "digest": "0x49d4213c7a313eae3604f6322cf472d5f2529125b0f63da5283a8de5efcf3676", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f446", - "digest": "0x858134ccccf28fcf2dbea4ba51bd944baa8b032ac9e02a1175ad4faf152389d2", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f446", - "digest": "0x858134ccccf28fcf2dbea4ba51bd944baa8b032ac9e02a1175ad4faf152389d2", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1949205989500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c00000000173f01080000000000000000000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d000000000000000000000000000000010000048baa0ddb0000000000173f0108000000006a91c533", - "digest": "0xe3f8399e36780d0771c6eeb8a0b709d3fa71ceef7f70871b4ab2a644ed3c11e7", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c00000000173f010800000000000000000000000000000001", - "digest": "0x509ab7ce69019906fe700c87436927fa0392db1eacf70d331349b5ec02315b20", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101174", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "114274", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "216", - "totalGas": "123895", - "transactionId": "0x7e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d87" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe63f3a894bdbe5170d1481f30c1dfb1a1fc7bece20e234c26a6ef61eac8082382fae88f1e1eac7c18a0491b7f6acf49adec949b73bfc44f8ac39c79729d6a2d6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x31030a365712b2c7ff68b301132cf9c3ce33399db65110bd937d8390df2905b3", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "284070", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10041", - "utxoId": "0x826fd05477ccce3f9f355fea9bde0003dc0fce5176d0c9099fc790b63175ad480000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xad38b35b6e562df84576363a35c58223ac41d4108e3bb9362306f8a8f1c5ae81", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xf3f2c42ecdf18824f17c289a2e9d81ed4b7c1aed579189982d63aa066b9151c2", - "txPointer": "03bd1aa70014", - "utxoId": "0x619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x82583fe7b29847c2514f9ef185df7950bd41e1f6ad5933782974bfac01c21328", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70019", - "utxoId": "0x7e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d870002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcc34b3c0ffa518ab402cc5707eeaa6af6d22e983a515c42cb52df87157cb704a", - "contractId": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "stateRoot": "0x4ccce24b7ef6375862de9a110e57ca666734fe22ce9fd838f950241642dfdfaf", - "txPointer": "03bd1aa5003a", - "utxoId": "0x51b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f290002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "283826", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfbb9cad93ac998843e14d1b61ee4214b49068edd6f08712c08f3bdd717d3d96a", - "inputIndex": "1", - "stateRoot": "0x7c9a0e63fc2fa416ac6a87a51813e7e7141f47e37e5eee23a748c369fd16ed45" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xac12fc4f64862cfaa335499aa339904fd38d74bb00f80de6ca34f480326bb16a", - "inputIndex": "3", - "stateRoot": "0x0ba912fbc89c43780228387925d7779dc69c3b918d3ba4caffe826abcb2b7f0d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848084bcc0a9693a3515f7bfdc5a92d5abea2079167091e423101759bb7b6ec2fa7100000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad077393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000024990737e60dc749227d884e37042b6ba8b5ee1df4c947e602645b07089db4adb3a491a356ef23779e7834b04ab41537f30065302a028c877b9f8e856975eff100000000000000000000006a91c5ab00000000000000000000000000000ddc0c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000484168b86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000015406a1800000000caa7e200000000000000000300000000000000000000006400000000000210ac0000000003bd1aab0000000000000000826fd05477ccce3f9f355fea9bde0003dc0fce5176d0c9099fc790b63175ad480000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000455a6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004100000000000000000000000000000000000000000000000000000000000000000000000000000001619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc0000000000000003ad38b35b6e562df84576363a35c58223ac41d4108e3bb9362306f8a8f1c5ae81f3f2c42ecdf18824f17c289a2e9d81ed4b7c1aed579189982d63aa066b9151c20000000003bd1aa70000000000000014ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000017e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d87000000000000000282583fe7b29847c2514f9ef185df7950bd41e1f6ad5933782974bfac01c2132800000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000151b96db97a78cb1f8441ff73ae10597fa91391a88e6021c14780df5360553f290000000000000002cc34b3c0ffa518ab402cc5707eeaa6af6d22e983a515c42cb52df87157cb704a4ccce24b7ef6375862de9a110e57ca666734fe22ce9fd838f950241642dfdfaf0000000003bd1aa5000000000000003a7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000454b2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001fbb9cad93ac998843e14d1b61ee4214b49068edd6f08712c08f3bdd717d3d96a7c9a0e63fc2fa416ac6a87a51813e7e7141f47e37e5eee23a748c369fd16ed45000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003ac12fc4f64862cfaa335499aa339904fd38d74bb00f80de6ca34f480326bb16a0ba912fbc89c43780228387925d7779dc69c3b918d3ba4caffe826abcb2b7f0d000000000000004052ffdd47c7ac842edc8bfd20737e13ec8c8a50a96728b65481d0340c9d20916fcbc471ecc1d693306471378ccfe932f85affcf7065dd89aed1947eb59428bb9a", - "receiptsRoot": "0x84bcc0a9693a3515f7bfdc5a92d5abea2079167091e423101759bb7b6ec2fa71", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad077393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000024990737e60dc749227d884e37042b6ba8b5ee1df4c947e602645b07089db4adb3a491a356ef23779e7834b04ab41537f30065302a028c877b9f8e856975eff100000000000000000000006a91c5ab00000000000000000000000000000ddc0c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7dba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000484168b86c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000015406a1800000000caa7e2000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000000ddc0c", - "digest": "0x39a90cdaaca6cc25014ea97f3c0e2b3117137071f138fbc054302a74293ee357", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b0c638ded9019780974b6d2313e7cb0f3b625d3a3c57c4e2a3d020e7a32f99e2ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000000ddc0c", - "digest": "0xe9abbfb3763feb170fb99dd041e67da69fdb3d8b2dfc3664ffe570158797ff59", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d00000000000000000000000000000000", - "digest": "0xf1d1da087c07fb5bf880f51c2489bc896c44be554808f39a048b434355105d72", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b0c638ded9019780974b6d2313e7cb0f3b625d3a3c57c4e2a3d020e7a32f99e2ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000000ddc0c", - "digest": "0xe9abbfb3763feb170fb99dd041e67da69fdb3d8b2dfc3664ffe570158797ff59", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1212246200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1950981", - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f0000000015406a180000000000000000000000000000000300000000000000017393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d0000000000000000000000000000000300000000caa7e2000000000015406a18000000006a91c533", - "digest": "0x1168cb1316ec39171ebbd9207324989e507cd9134402fc556c3c460b9b81c50a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f0000000015406a1800000000000000000000000000000003", - "digest": "0x8a999c6769ce5fd0d0d1147113069c8ab4830b833b9bad03c698de4de0bfd6f3", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099606", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x7393566231964101f106aa7642a7bcbcb7b4b2394226631a33db5f55975b2f7d", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130652", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "244", - "totalGas": "140273", - "transactionId": "0x31030a365712b2c7ff68b301132cf9c3ce33399db65110bd937d8390df2905b3" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x52ffdd47c7ac842edc8bfd20737e13ec8c8a50a96728b65481d0340c9d20916fcbc471ecc1d693306471378ccfe932f85affcf7065dd89aed1947eb59428bb9a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x85c1daa2f0bc64c00dbd208930e4c63424549e56335aa38914f43475d2758890", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "165676", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10042", - "utxoId": "0xfc31fbc160c2eebb790135d16e8e0286bad17264cdc06088837fbb9fe06754400000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xea69072bf9f00c8745a1d47dc728ceb37c7847418ffa2049a395c13fd25627af", - "contractId": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "stateRoot": "0xfd06b2cd8a156778aae62f3479069f5d2b42a8e2e53f7ec5bab4b004be6535c5", - "txPointer": "03bd1aa50037", - "utxoId": "0x963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe5a0a6ed6d8747d301a98c92d619dfbabc8ec5ab00156971fa6503d2cf613273", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7001a", - "utxoId": "0x31030a365712b2c7ff68b301132cf9c3ce33399db65110bd937d8390df2905b30002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4bc8abcfff55d59f78002ed94ec9d3956a8dad0eea8ba2cb70873ff8f78ec8c2", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x98a9b891f3e75432afdf7ab49cc76581b7fe61c0a17167831534575fb6d16846", - "txPointer": "03bd1aa7001a", - "utxoId": "0x31030a365712b2c7ff68b301132cf9c3ce33399db65110bd937d8390df2905b30001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "165398", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4b5c7ac3d8435dab9eb8a09989e1a293269d2ff9bcb24634040ceb3595153b26", - "inputIndex": "1", - "stateRoot": "0x2522e84284bc0bf632ac99311ec470b9023089a96e341a1aabbb987ba8f0ec78" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x31a80c081f5186b53c53b91c1c2b14f9d9b652f52d312ab7a897c2f00310b983", - "inputIndex": "3", - "stateRoot": "0x567c309f95e90631aa0dd6ec84214ceff30957112ff62614f74a197d9ba2056c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d5e9087fd82016c3dd120ce629bcc7bc7f32ebae8c3c8eac2c3eeb185251372f00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0739cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a8900000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006b8d315a9bcb41c1f250638b615fd6d7b990c3bbc386b34f7d2976b99440afebc518ac3b9ee91e7b665f6f99cd39d1dcc405cb3ab327ba08933fbb88a6cf6c6400000000000000000000006a91c5ab00000000000000000000000000000dd94d0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000caa7e200f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff000000000000000100000000000000180000000015406a1800000000caa7e200000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000fc31fbc160c2eebb790135d16e8e0286bad17264cdc06088837fbb9fe06754400000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002872cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004200000000000000000000000000000000000000000000000000000000000000000000000000000001963c58e24e7134a8bcb8939e004f35938fbb7e590f5b1624455ec8569430dedb0000000000000002ea69072bf9f00c8745a1d47dc728ceb37c7847418ffa2049a395c13fd25627affd06b2cd8a156778aae62f3479069f5d2b42a8e2e53f7ec5bab4b004be6535c50000000003bd1aa5000000000000003739cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89000000000000000131030a365712b2c7ff68b301132cf9c3ce33399db65110bd937d8390df2905b30000000000000002e5a0a6ed6d8747d301a98c92d619dfbabc8ec5ab00156971fa6503d2cf61327300000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000131030a365712b2c7ff68b301132cf9c3ce33399db65110bd937d8390df2905b300000000000000014bc8abcfff55d59f78002ed94ec9d3956a8dad0eea8ba2cb70873ff8f78ec8c298a9b891f3e75432afdf7ab49cc76581b7fe61c0a17167831534575fb6d168460000000003bd1aa7000000000000001aba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028616f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000014b5c7ac3d8435dab9eb8a09989e1a293269d2ff9bcb24634040ceb3595153b262522e84284bc0bf632ac99311ec470b9023089a96e341a1aabbb987ba8f0ec7800000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000331a80c081f5186b53c53b91c1c2b14f9d9b652f52d312ab7a897c2f00310b983567c309f95e90631aa0dd6ec84214ceff30957112ff62614f74a197d9ba2056c00000000000000405aad0cb8cc77383037e3e981a586b047f2d7fb858e2eef0c8355983b50e08b8bbb2144525258371e21ed06aaf2d8ba88663fe3c1a4796f1e8e0ab997cf10fa7a", - "receiptsRoot": "0xd5e9087fd82016c3dd120ce629bcc7bc7f32ebae8c3c8eac2c3eeb185251372f", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0739cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a8900000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006b8d315a9bcb41c1f250638b615fd6d7b990c3bbc386b34f7d2976b99440afebc518ac3b9ee91e7b665f6f99cd39d1dcc405cb3ab327ba08933fbb88a6cf6c6400000000000000000000006a91c5ab00000000000000000000000000000dd94d0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f7264657200000000caa7e200f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff000000000000000100000000000000180000000015406a1800000000caa7e2000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000000dd94d", - "digest": "0xe49b88346bf3cbfa8defd4f932487fcacf3fad60eb58bdfe8eb6e71e5773dfe4", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000069962080a316af926a8a969477fff533d8495d85bbf7900d2f68eaa58b87aebbba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000000dd94d", - "digest": "0xd88321ee7d698a018890c14ca49ae25fc76d9dce858444c226c2b5f45ba8a49d", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "3399660000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a8900000000caa2b1e00000000000000000", - "digest": "0x1b7b93cf2476a4c45a4b3a677ce98349fbfff3bf1817851eb66cf839dddeac44", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000069962080a316af926a8a969477fff533d8495d85bbf7900d2f68eaa58b87aebbba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000000dd94d", - "digest": "0xd88321ee7d698a018890c14ca49ae25fc76d9dce858444c226c2b5f45ba8a49d", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000330000000015406a1800000000000000010000000000000001000000000000000139cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a890000000000000001000000000000000100000000caa7e2000000000015406a18000000006a91c533", - "digest": "0x2d379f190f18c0a6da8a8a297ef93914e4ee1a9ad08684023afac61979b273ef", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f0000000015406a180000000000000000000000000000000300000000000000330000000015406a180000000000000001000000000000000100000000caa7e2000000000015406a18000000006a91c533", - "digest": "0x4e567c483d76565d0c80bfd218af99ceafc6d49f1e3f61636fffb4fce0908191", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000000000000001d988", - "digest": "0x0ee045e774ef15e97cb4b6c3b81b51191e01537dc41c8411e6af397d206f6a38", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67098430", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000330000000015406a1800000000000000010000000000000001", - "digest": "0x6ff7846f8875d36bfe890c764c0a3144b2eaa4e316e9017650a1d5b6520866f4", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67097470", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x39cc3707dda4ef0d2a2655275eebfcb98b063cf20d7d06d63c89653ccc4c9a89", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "150223", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "278", - "totalGas": "159844", - "transactionId": "0x85c1daa2f0bc64c00dbd208930e4c63424549e56335aa38914f43475d2758890" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5aad0cb8cc77383037e3e981a586b047f2d7fb858e2eef0c8355983b50e08b8bbb2144525258371e21ed06aaf2d8ba88663fe3c1a4796f1e8e0ab997cf10fa7a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xbc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149857", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10043", - "utxoId": "0x8ec634b24f03491e26562f51114cfa20189c76ca36541b05f382d611c99d766a0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe6b41abe375d544f2a092e5b250d9fcf37d05bd170ff46a82493c9069d4d8465", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xb288bbef4a8ba23503ad33caa44a23183cd5eb1601e38e583a12f273c122b666", - "txPointer": "03bd1aa70003", - "utxoId": "0x21857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb360003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7001b", - "utxoId": "0x85c1daa2f0bc64c00dbd208930e4c63424549e56335aa38914f43475d27588900002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8edec0eb3596ae109c03cbfc2e64774cb6655e0add00135f6e1d284ab3aa2302", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xa7e86b622a707c5af46445c7bc15654f5b27b1ff879c4af49f2cd45ac5f3eba2", - "txPointer": "03bd1aa70003", - "utxoId": "0x21857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb360001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149491", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb25ca30a041e0ada9a5f5eb0cf7adf1ea96cca0fead53fde316c4c8dd717a900", - "inputIndex": "1", - "stateRoot": "0xf868d9bfbe958ff652db619ae4420990282d924b3204c061319a74747ac58267" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc67ae2b1e77bce9bff016d4c5dfa2086dcd198c5414e620e5a62ba372322ce6e", - "inputIndex": "3", - "stateRoot": "0xd289a679aed1060a36a0ff6915470f7c21020823969b3b72285cfa23034963d2" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ce498cbf3970b04a1d2778d665ba03abcdf52c13ae81bfb32571d93e994892be000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000937a1a6408b1bb65f4e4b5fe9a5c60bfee3a3a287a0ac0b42117bf3f6a4706013ea4e191c7b0f008fb7f1c89fd02ea240247bf18fcd47a9a1ab026037e6087f200000000000000000000006a91c5ab000000000000000000000000000313570400000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000110000001ca47c64e0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000000b6bf728013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001ca266562000000000b6bf72800000000000000001000000000000006400000000000210ac0000000003bd1aab00000000000000008ec634b24f03491e26562f51114cfa20189c76ca36541b05f382d611c99d766a0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024961f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000430000000000000000000000000000000000000000000000000000000000000000000000000000000121857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb360000000000000003e6b41abe375d544f2a092e5b250d9fcf37d05bd170ff46a82493c9069d4d8465b288bbef4a8ba23503ad33caa44a23183cd5eb1601e38e583a12f273c122b6660000000003bd1aa70000000000000003c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000185c1daa2f0bc64c00dbd208930e4c63424549e56335aa38914f43475d27588900000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000121857f4e7b9ff1c5281c366c4bf4d1f22ed1f4dfd88447a7e76a7d639050cb3600000000000000018edec0eb3596ae109c03cbfc2e64774cb6655e0add00135f6e1d284ab3aa2302a7e86b622a707c5af46445c7bc15654f5b27b1ff879c4af49f2cd45ac5f3eba20000000003bd1aa700000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000247f3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001b25ca30a041e0ada9a5f5eb0cf7adf1ea96cca0fead53fde316c4c8dd717a900f868d9bfbe958ff652db619ae4420990282d924b3204c061319a74747ac58267000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003c67ae2b1e77bce9bff016d4c5dfa2086dcd198c5414e620e5a62ba372322ce6ed289a679aed1060a36a0ff6915470f7c21020823969b3b72285cfa23034963d200000000000000400519c77a7c18f693fb0984bba0b050a75d5d63b0928925c8e6e3badb5cdbb56d07f4269d74d002f2b216f5732276ae62e8cdb87ecdab366fb8c5361bd38017f4", - "receiptsRoot": "0xce498cbf3970b04a1d2778d665ba03abcdf52c13ae81bfb32571d93e994892be", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000937a1a6408b1bb65f4e4b5fe9a5c60bfee3a3a287a0ac0b42117bf3f6a4706013ea4e191c7b0f008fb7f1c89fd02ea240247bf18fcd47a9a1ab026037e6087f200000000000000000000006a91c5ab000000000000000000000000000313570400000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000110000001ca47c64e0000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000000b6bf728013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001ca266562000000000b6bf72800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000003135704", - "digest": "0xb774611de7f3d089993bb0f345ba97615c43dc5ca37e9a1df88ce5eb9c3c5e7d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135704", - "digest": "0x15769252e3d5d6881378fb275f11e2f49880a130beb852b54d6f24e6c27f610e", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "4536000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000110000001ca47c64e000000000000000010000000000000001000000006a91c533", - "digest": "0x0e10ffc752d6f98f8ac136a86d6e56e110386257a3de0e132c3559b1a47f11b2", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100018", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67099393", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135704", - "digest": "0x15769252e3d5d6881378fb275f11e2f49880a130beb852b54d6f24e6c27f610e", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099165", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1868646", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67098693", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135704", - "digest": "0x15769252e3d5d6881378fb275f11e2f49880a130beb852b54d6f24e6c27f610e", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67098465", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "3066000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1857241", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001f0000001ca2665620000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001000000000000000100000000b6bf72800000001ca2665620000000006a91c533", - "digest": "0x66cf5a38be4d17861dfa0e74386c24a6f315598aaada655f5e6aca975827c300", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097073", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001f0000001ca266562000000000000000010000000000000001", - "digest": "0x29175e0d957af235b1f665f8fa70cf84d84be6154a606f0c0c7ca20b2ba88cb7", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67094385", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "200442", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "366", - "totalGas": "210270", - "transactionId": "0xbc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x0519c77a7c18f693fb0984bba0b050a75d5d63b0928925c8e6e3badb5cdbb56d07f4269d74d002f2b216f5732276ae62e8cdb87ecdab366fb8c5361bd38017f4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x04d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe31", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "446027", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10044", - "utxoId": "0x9d4d42b18f846f02a212754b3d484c73f2a0fb3807e1d47e520f6b160ab888bd0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7001c", - "utxoId": "0xbc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xea59428a111112f556bc28d81b7ed6e65f88c400b54a8b6cb3ed4119cde08c7d", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x91c1967ea736ccda82efdf01831f1707f6dddc295df96455cddccfe1f676d4cb", - "txPointer": "03bd1aa60065", - "utxoId": "0xe9c5c4297317f2fd96b85c8369a07337283870afee745e1572bfa2b0b7e1e6e00002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd88df1df129e9d5e605728e6a4fee0a7a74e96bf9456e30fc4cc2d50ba96d88a", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xd7213dedfea58132f7a2f05dff9f457a3645aeec9835393ad66ca467fe00e566", - "txPointer": "03bd1aa60065", - "utxoId": "0xe9c5c4297317f2fd96b85c8369a07337283870afee745e1572bfa2b0b7e1e6e00003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "445808", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6ec94cac9adf66557956b6c433889e69463b6ff2a25bb43eff9f0a3312d50ca9", - "inputIndex": "2", - "stateRoot": "0xd0a5723a876f86e30102ad5d7e5e1a960bc0940b905845f742a3ddc97999586b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf0f50e67ceaa29cfe8aaad7ec58a385b976c93cb3ab6bc7904f7b242c6d6b236", - "inputIndex": "3", - "stateRoot": "0xf30e31df8e50c3fb79f2d3ae65f1773877c45869ff8724335bf7ba56f4f618c0" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848070df0c53143b01e0603d1786c85c9132cd71898dfb8d6803a7356c33c4bfb33900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002ed9f2938f29d5e0d5a0beb2867cd060d0da1848fefc4c270432e5964bfe50a076294e0a41157e773410bc90732f31d3322e7577b713d72ff097068be759de7200000000000000000000006a91c5ab00000000000000000000000000023a365f00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000400a123f780dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009ddaa5000000400a123f780000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000009d4d42b18f846f02a212754b3d484c73f2a0fb3807e1d47e520f6b160ab888bd0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006ce4bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000001bc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e0000000000000002b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e9c5c4297317f2fd96b85c8369a07337283870afee745e1572bfa2b0b7e1e6e00000000000000002ea59428a111112f556bc28d81b7ed6e65f88c400b54a8b6cb3ed4119cde08c7d91c1967ea736ccda82efdf01831f1707f6dddc295df96455cddccfe1f676d4cb0000000003bd1aa600000000000000650a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000001e9c5c4297317f2fd96b85c8369a07337283870afee745e1572bfa2b0b7e1e6e00000000000000003d88df1df129e9d5e605728e6a4fee0a7a74e96bf9456e30fc4cc2d50ba96d88ad7213dedfea58132f7a2f05dff9f457a3645aeec9835393ad66ca467fe00e5660000000003bd1aa60000000000000065ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006cd70f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000026ec94cac9adf66557956b6c433889e69463b6ff2a25bb43eff9f0a3312d50ca9d0a5723a876f86e30102ad5d7e5e1a960bc0940b905845f742a3ddc97999586b00000000000000010000000000000003f0f50e67ceaa29cfe8aaad7ec58a385b976c93cb3ab6bc7904f7b242c6d6b236f30e31df8e50c3fb79f2d3ae65f1773877c45869ff8724335bf7ba56f4f618c0000000000000004029da9817119466ec07108c9e5e30094da3a9b86e1fc1b3e5b8f0e003a824c2b725f706063b706b390f0accdcb951efe1113dc3ec20d50ee94accb7449d4cd2b6", - "receiptsRoot": "0x70df0c53143b01e0603d1786c85c9132cd71898dfb8d6803a7356c33c4bfb339", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002ed9f2938f29d5e0d5a0beb2867cd060d0da1848fefc4c270432e5964bfe50a076294e0a41157e773410bc90732f31d3322e7577b713d72ff097068be759de7200000000000000000000006a91c5ab00000000000000000000000000023a365f00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000400a123f780dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009ddaa5000000400a123f7800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023a365f", - "digest": "0xc580c856d111931e31f564c0c3de786f1354ac1a4fe57e3446ed3b33b5a396a5", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a365f", - "digest": "0x6aeaa2d3aa24fae3656872d9e181303fab6b12a1be13a254a1e04932ee48f8e2", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a365f", - "digest": "0x6aeaa2d3aa24fae3656872d9e181303fab6b12a1be13a254a1e04932ee48f8e2", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "4400750000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000070000000009ddaa50000000000000000100000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001000000000000000100000400a123f7800000000009ddaa50000000006a91c533", - "digest": "0x35d103b39833c607b1e9462475c517c51bcae02fd41105baa29c70b5fe2d5e68", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000070000000009ddaa5000000000000000010000000000000001", - "digest": "0x61ed660c7c54cf27c01f43e633aa329de65e973e69a7a26cd1fa5923ba2a3225", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101014", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "116192", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "219", - "totalGas": "125813", - "transactionId": "0x04d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe31" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x29da9817119466ec07108c9e5e30094da3a9b86e1fc1b3e5b8f0e003a824c2b725f706063b706b390f0accdcb951efe1113dc3ec20d50ee94accb7449d4cd2b6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xadbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd34", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "440502", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10045", - "utxoId": "0x709edf21d0ecf542ac7cdd8a4fa8ea2b399c0af22fa3a031a88a8f13180c1ab90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe81af8efb62e34cffd4f046a3246ced5ef51503acbe25f253e085dad1a7e2ec0", - "contractId": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "stateRoot": "0x4b3df165c173c0f8f3d22b4cc900a7dd60ae70b04930220120debf4471daba46", - "txPointer": "03bd1aa70009", - "utxoId": "0x6ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d20003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xeaa49e2eb6014104c2b8e43e899f2a4250c921abede1ecef9ae1c3c4132ca637", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x6967a075a45b9117fb2201cde567e82195cd326cf65c9b34003fb6568479fcce", - "txPointer": "03bd1aa70009", - "utxoId": "0x6ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d20002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdb0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7001d", - "utxoId": "0x04d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe310001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "440250", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbdd78956b70fc3bd378b343ed3c7cb15f40b81a7613a8b24e4ab0d14b39e2c74", - "inputIndex": "1", - "stateRoot": "0x2d63ee567ade88c267923df61c49db0f4f3d8ff691ee331532d231560db0da6b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd86b6c50f734b21a663964cb9347334f946e98729e03b0e97eaf4910bab5b0af", - "inputIndex": "2", - "stateRoot": "0xf08598118e155308f7cc690f45038bf6fc62dbeddc9f88ef84213f26cf316fc9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805b536f8d97b1f607e5756d9ff69d7c8a26e5393477d48d52ecc596809781f2e200000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005db78aa223b3ebf528ca99990171cd04afd6fcca636f723fba4eef70a0ab8e7f7e312eb578154137e50fedbe531a809e08d9aad589a5d7279ef9180b80546ca200000000000000000000006a91c5ab00000000000000000000000000029da7330000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000008eb810bb1a6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046d8ddea4c800000000000781248000000000000000300000000000000000000006400000000000210ac0000000003bd1aab0000000000000000709edf21d0ecf542ac7cdd8a4fa8ea2b399c0af22fa3a031a88a8f13180c1ab90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006b8b6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000045000000000000000000000000000000000000000000000000000000000000000000000000000000016ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d20000000000000003e81af8efb62e34cffd4f046a3246ced5ef51503acbe25f253e085dad1a7e2ec04b3df165c173c0f8f3d22b4cc900a7dd60ae70b04930220120debf4471daba460000000003bd1aa70000000000000009e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000016ed08f95083fa553549490e8ccbee8aae44f13df8fb211ad6cbb8f9809a850d20000000000000002eaa49e2eb6014104c2b8e43e899f2a4250c921abede1ecef9ae1c3c4132ca6376967a075a45b9117fb2201cde567e82195cd326cf65c9b34003fb6568479fcce0000000003bd1aa70000000000000009132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc000000000000000104d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe310000000000000001db0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006b7baf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001bdd78956b70fc3bd378b343ed3c7cb15f40b81a7613a8b24e4ab0d14b39e2c742d63ee567ade88c267923df61c49db0f4f3d8ff691ee331532d231560db0da6b00000000000000010000000000000002d86b6c50f734b21a663964cb9347334f946e98729e03b0e97eaf4910bab5b0aff08598118e155308f7cc690f45038bf6fc62dbeddc9f88ef84213f26cf316fc9000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000409d25e3d98098e9a51964be760e014e84c487deba1cc3b68d60060ec1db50de036bf1db55d60a2d68de00fc2fe5230191fd4ad482c379bc1674623ef5c2fb6659", - "receiptsRoot": "0x5b536f8d97b1f607e5756d9ff69d7c8a26e5393477d48d52ecc596809781f2e2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005db78aa223b3ebf528ca99990171cd04afd6fcca636f723fba4eef70a0ab8e7f7e312eb578154137e50fedbe531a809e08d9aad589a5d7279ef9180b80546ca200000000000000000000006a91c5ab00000000000000000000000000029da7330000000000000002132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f726465720000008eb810bb1a6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000046d8ddea4c8000000000007812480000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000029da733", - "digest": "0xc7d007062a17a994ffc0f2015840d6564665b2c7b3aa9600e0148328a1155c96", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140784", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5ab00000000000000000000000000029da733", - "digest": "0x2019b6062800f0ee7d3bdc0648201ed2484f69fb9b917daf5664f271d0d8d56c", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964708", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000000", - "digest": "0x60ac9d69fe81ca4d4e5a181ff68c21eb015cb5f23c223d4ce6423a6dee90aab2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299760", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457296", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370292", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5ab00000000000000000000000000029da733", - "digest": "0x2019b6062800f0ee7d3bdc0648201ed2484f69fb9b917daf5664f271d0d8d56c", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "612973460250", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1950316", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000a000046d8ddea4c80000000000000000000000000000000030000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a000000000000000000000000000000030000000000781248000046d8ddea4c80000000006a91c533", - "digest": "0x5b17c29305d8fc0e1d4624f634cc0d1b17951b4fdd108c47be282fc3244766f8", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299760", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428028", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000a000046d8ddea4c8000000000000000000000000000000003", - "digest": "0x30e88379c215aeb8a6393dd1f23fc28c0a94e1f744373b63a07a285535ec9471", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374260", - "ptr": "67098374", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50588", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134825", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "252", - "totalGas": "144446", - "transactionId": "0xadbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd34" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x9d25e3d98098e9a51964be760e014e84c487deba1cc3b68d60060ec1db50de036bf1db55d60a2d68de00fc2fe5230191fd4ad482c379bc1674623ef5c2fb6659" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x78092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "182835", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10046", - "utxoId": "0x210e7f3055b2e058f3607a53e77e148615b61d3657b01cd810a973d0d7f0fd350000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6e721ba894a5e07f2d0301c470176ac09c0b5b8c44aa1bfa22bcae80e1ab535f", - "contractId": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "stateRoot": "0x1cc2699e2dbed9bcbcbb91781ef7a4353fffd51a424c02fb026996297c291342", - "txPointer": "03bd1aa70018", - "utxoId": "0x07ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f40003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef4", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7001e", - "utxoId": "0xadbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd340003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xba07ea3a7813214cbfa268ee877f2e4c043fbdea912fe0bb71ef450503d1f7de", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xf6ee9c0bb3e59a20d1567af4a85760835882f49343a05087f8dafa2047edb709", - "txPointer": "03bd1aa70018", - "utxoId": "0x07ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f40001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "182472", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1ecdfa21174f8fa72a70a64d56822560ccec30305b731597f1045a31d6f4e42a", - "inputIndex": "1", - "stateRoot": "0x62be5f78bb348e4465e8f535b53ca189e40cadcb7e1b9cf8e52f6497d683b496" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0fa00bf9862097d9b78e2b25048d42ed44a8bc70a397c1b4587a5bf4429700be", - "inputIndex": "3", - "stateRoot": "0x2d39f425612a2b894bccd35b19819ecc76323d8a80bc2ceca5a53e77f3d9248d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84808728acdc2851a6939c12ed37440716d353322d5155929c6df134a636b1ffd60e000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000023242e2961e580b53af994db028ff723cdb8e334f9cb282dd644033d34751f0c917b3d19a9935424b57d947486120bf0ea4ac6a3c568753738ac368dd483b87900000000000000000000006a91c5ab00000000000000000000000000022436250000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000260000041169717b8000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000002a79469239e6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041158c105800000000026e5d7080000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000210e7f3055b2e058f3607a53e77e148615b61d3657b01cd810a973d0d7f0fd350000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002ca33f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000460000000000000000000000000000000000000000000000000000000000000000000000000000000107ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f400000000000000036e721ba894a5e07f2d0301c470176ac09c0b5b8c44aa1bfa22bcae80e1ab535f1cc2699e2dbed9bcbcbb91781ef7a4353fffd51a424c02fb026996297c2913420000000003bd1aa700000000000000189e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b0000000000000001adbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd3400000000000000032644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef400000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000107ab7e810b382328bdbccc6808fe5a01eae3d2cd1bb0fcdf3a27bd79b1d054f40000000000000001ba07ea3a7813214cbfa268ee877f2e4c043fbdea912fe0bb71ef450503d1f7def6ee9c0bb3e59a20d1567af4a85760835882f49343a05087f8dafa2047edb7090000000003bd1aa70000000000000018f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002c8c8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000011ecdfa21174f8fa72a70a64d56822560ccec30305b731597f1045a31d6f4e42a62be5f78bb348e4465e8f535b53ca189e40cadcb7e1b9cf8e52f6497d683b4960000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000030fa00bf9862097d9b78e2b25048d42ed44a8bc70a397c1b4587a5bf4429700be2d39f425612a2b894bccd35b19819ecc76323d8a80bc2ceca5a53e77f3d9248d0000000000000040ea011d26800ce1e51bd02b1b21e3fb2bd53b4245272bd60e4c66db318ed44fa73f37691aa8f246d09e09d93bd1e6442d22e54a2d09dd84844abf5420d47809f1", - "receiptsRoot": "0x8728acdc2851a6939c12ed37440716d353322d5155929c6df134a636b1ffd60e", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000023242e2961e580b53af994db028ff723cdb8e334f9cb282dd644033d34751f0c917b3d19a9935424b57d947486120bf0ea4ac6a3c568753738ac368dd483b87900000000000000000000006a91c5ab00000000000000000000000000022436250000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000260000041169717b8000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000002a79469239e6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000041158c105800000000026e5d7080000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002243625", - "digest": "0xfd0a1958bc912d3ae0e67903f1b244aede04aaf4e5d7aa26f64866784bd4d31c", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243625", - "digest": "0x5a5e16fc954328f9ad2dd0a7e66f272ef1ac98a238aab2e96b09c7d34ca65ce4", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963079", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "2892100568190", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "401592", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000260000041169717b8000000000000000000000000000000003000000006a91c533", - "digest": "0x6abe6dd6237e36da50225f87aa8b5a1ed199f6afa9f62402e34e26ff94986fd3", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "395940", - "ptr": "67100570", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "373108", - "ptr": "67099945", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243625", - "digest": "0x5a5e16fc954328f9ad2dd0a7e66f272ef1ac98a238aab2e96b09c7d34ca65ce4", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099717", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881846", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000000", - "digest": "0x71c2674e8d8b35ad161cfd1915bb382fb6b8209e2ef9dd0e5883ab0dbbce7a4b", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "455840", - "ptr": "67099245", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "368836", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243625", - "digest": "0x5a5e16fc954328f9ad2dd0a7e66f272ef1ac98a238aab2e96b09c7d34ca65ce4", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099017", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2918772712350", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1870441", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000440000041158c105800000000000000000000000000000000300000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b000000000000000000000000000000030000000026e5d7080000041158c10580000000006a91c533", - "digest": "0xfddb5de7f46fee82459321699b76b4832e06a39e756cf2be86abba3a5ee160df", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "426572", - "ptr": "67097625", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000440000041158c1058000000000000000000000000000000003", - "digest": "0xf486bd4c84c3965664cacdf3ef51bb5e3608984ffaaaef8469107225dcc14d0d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "372804", - "ptr": "67093529", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "198343", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "363", - "totalGas": "208171", - "transactionId": "0x78092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xea011d26800ce1e51bd02b1b21e3fb2bd53b4245272bd60e4c66db318ed44fa73f37691aa8f246d09e09d93bd1e6442d22e54a2d09dd84844abf5420d47809f1" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d9808232", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "157833", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10047", - "utxoId": "0x50ad65e354171f5873f34a17ed8e226f76fa8f2ac728c3998e787e7c797052870000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9e4a9362f223c526624ebc2e80d22feb7258baf3a09ac0feaeb6ea59e2130d1e", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xe97f942d5a25e5959e046bbd23f6c16a8a6344086f62cd3ee3035874d0e9ccf1", - "txPointer": "03bd1aa70015", - "utxoId": "0x1deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c50140001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xee20e7ec5c380e062624d51138b012c4fd45f91da3f38ea4fa8bb5271a1a6a37", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x5d564ca9556c989779975106d7a95d0fd8f22b65dc30a03b12209e3a0374aaf2", - "txPointer": "03bd1aa7001f", - "utxoId": "0x78092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7001f", - "utxoId": "0x78092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e50002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157457", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1a93dc434425d331fa2b9be9e81272ed7d0eea46a11d1f48dc6c8bbbfaea6b49", - "inputIndex": "1", - "stateRoot": "0x62ccc25b57981e737869309e3705750c757ed258dbae0d997e2f87410c5cd5ee" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x72b1581ea3c58d9c3949a385fefc995c7268e5940fbfd7a8208890a64c43b8c6", - "inputIndex": "2", - "stateRoot": "0x51398c4495857533a9cc9bb679d2f828ec56a8c191aa33ab3ae6b911ec3913c8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40b4e7e5ebb5e641c4643c6509d76e7c5cffbc49126709e852b21b5893417570bf000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d5645d1a98dbe4e7ce1fc0956ae83178390773e719ec919c872c28fdc5099dfcbc406ce0e23f3a25d2faff5b4fff8ad8aa3fe3019d34a7a852d2fea5b4d2b0a700000000000000000000006a91c5ab000000000000000000000000000a759f1c0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004a0000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000000a0e2860e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041196be2980000000000a0e28600000000000000003000000000000006400000000000210ac0000000003bd1aab000000000000000050ad65e354171f5873f34a17ed8e226f76fa8f2ac728c3998e787e7c797052870000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026889f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000047000000000000000000000000000000000000000000000000000000000000000000000000000000011deb76924b37702db5900b1787f706e6dfd8bb6ae506fbc83d96a91bc86c501400000000000000019e4a9362f223c526624ebc2e80d22feb7258baf3a09ac0feaeb6ea59e2130d1ee97f942d5a25e5959e046bbd23f6c16a8a6344086f62cd3ee3035874d0e9ccf10000000003bd1aa700000000000000159423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6000000000000000178092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e50000000000000003ee20e7ec5c380e062624d51138b012c4fd45f91da3f38ea4fa8bb5271a1a6a375d564ca9556c989779975106d7a95d0fd8f22b65dc30a03b12209e3a0374aaf20000000003bd1aa7000000000000001ff31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6000000000000000178092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e500000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000001f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026711f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000011a93dc434425d331fa2b9be9e81272ed7d0eea46a11d1f48dc6c8bbbfaea6b4962ccc25b57981e737869309e3705750c757ed258dbae0d997e2f87410c5cd5ee0000000000000001000000000000000272b1581ea3c58d9c3949a385fefc995c7268e5940fbfd7a8208890a64c43b8c651398c4495857533a9cc9bb679d2f828ec56a8c191aa33ab3ae6b911ec3913c800000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040aef9c2501df179633de3987068249d05fd5f6b0dc44f02994611f4adc9d58fa55e4b86ff957cebb5233bc4fde8d3ed8eeb57d19521a8a9edd8d761ffb00c2020", - "receiptsRoot": "0xb4e7e5ebb5e641c4643c6509d76e7c5cffbc49126709e852b21b5893417570bf", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d5645d1a98dbe4e7ce1fc0956ae83178390773e719ec919c872c28fdc5099dfcbc406ce0e23f3a25d2faff5b4fff8ad8aa3fe3019d34a7a852d2fea5b4d2b0a700000000000000000000006a91c5ab000000000000000000000000000a759f1c0000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004a0000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000000a0e2860e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff000000000000000100000000000000180000041196be2980000000000a0e28600000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000a759f1c", - "digest": "0xa6719d945b932a7312ce823780b5ef247a29ce1aff53de3acda4103114820be1", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147568", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1c", - "digest": "0xb1e7b4f0f2b515292d4cb042526adf0815779d5e033fed919b73bb6114507186", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4962975", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "320700000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408224", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004a0000041196be298000000000000000010000000000000003000000006a91c533", - "digest": "0x995ef5a1b58299896f1fb5a88a98ae1bc7f7a3d845dd1394c7c4bdd191cfc421", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402572", - "ptr": "67100458", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67099833", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1c", - "digest": "0xb1e7b4f0f2b515292d4cb042526adf0815779d5e033fed919b73bb6114507186", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67099605", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4878188", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462472", - "ptr": "67099133", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375468", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1c", - "digest": "0xb1e7b4f0f2b515292d4cb042526adf0815779d5e033fed919b73bb6114507186", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166336", - "ptr": "67098905", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "168700000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4866782", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306544", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306544", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004b0000041196be29800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000010000000000000003000000000a0e28600000041196be2980000000006a91c533", - "digest": "0x607c62ae07432c785558c8aaa676668b083373fd50af7bb6e2e13f62d9c245b6", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433204", - "ptr": "67097513", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004b0000041196be298000000000000000010000000000000003", - "digest": "0xcf0773799d35fc5cb2722eb9eda7b64d1b13ffc135770e08347cf0d4f5c0d6e1", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306544", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379436", - "ptr": "67093209", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57372", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "206153", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "376", - "totalGas": "215981", - "transactionId": "0xb487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d9808232" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xaef9c2501df179633de3987068249d05fd5f6b0dc44f02994611f4adc9d58fa55e4b86ff957cebb5233bc4fde8d3ed8eeb57d19521a8a9edd8d761ffb00c2020" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154887", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10048", - "utxoId": "0x1d4ebdb0a5296380b7dd1cdd51e94eabc334e7bc53f18fef5de718156099ac0c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70020", - "utxoId": "0xb487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d98082320003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1b2e7cc66a85af590bd548602b6c15bd8fada16f248bfa60db77eb8f15bfe874", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xb82f06bed5777e5abf724bf5311702d58d19416733d4299e57b546892f4e06bf", - "txPointer": "03bd1aa70017", - "utxoId": "0x661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be98502060001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd754bf2f46fa2bbae47652d2f9e411ad05818a08ca1eb433fdc64b68193afa32", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x07a4a8907c1b3aad801561025e06a3787c27c878b2ef28cf852678e914273157", - "txPointer": "03bd1aa70017", - "utxoId": "0x661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be98502060002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154645", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb0471c1761315cfd1b7083cd3fb7c98b95831c31be870ab19fad9a65a1ca267a", - "inputIndex": "2", - "stateRoot": "0x462dbd9e628c6c605b9209106a885654cf0eb5fc21ad07dac34a44469a0eff6f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8394325142d405585b32f4890196ea0ed21ffede1b40a430a7d3207a2909946c", - "inputIndex": "3", - "stateRoot": "0x9f62591d0fccf36323b86073965c5c9a6fe7879faac5ff64d24ed953a82cd064" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480071f85c0b75884038d6237e2c4d73a530c5e7d388b07921786f2afcc1d6973a90000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a9f34ccc9bb54eaa94f8db5ee95c2883c9b6ea106de3c53d5a7cb21fcf0529ff66158aa326c59fdcdeab4045e67203f32dc057a63d7c62e34b775cac02d84dea00000000000000000000006a91c5ab000000000000000000000000000251cf4e00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000016000000010897e6a0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab00000000000000001d4ebdb0a5296380b7dd1cdd51e94eabc334e7bc53f18fef5de718156099ac0c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025d07f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004800000000000000000000000000000000000000000000000000000000000000000000000000000001b487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d98082320000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be985020600000000000000011b2e7cc66a85af590bd548602b6c15bd8fada16f248bfa60db77eb8f15bfe874b82f06bed5777e5abf724bf5311702d58d19416733d4299e57b546892f4e06bf0000000003bd1aa700000000000000174added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001661536aa2517fe43a8fe542b55a30f5a765ddc09d43bc30f7e1a573be98502060000000000000002d754bf2f46fa2bbae47652d2f9e411ad05818a08ca1eb433fdc64b68193afa3207a4a8907c1b3aad801561025e06a3787c27c878b2ef28cf852678e9142731570000000003bd1aa70000000000000017b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025c15f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002b0471c1761315cfd1b7083cd3fb7c98b95831c31be870ab19fad9a65a1ca267a462dbd9e628c6c605b9209106a885654cf0eb5fc21ad07dac34a44469a0eff6f000000000000000100000000000000038394325142d405585b32f4890196ea0ed21ffede1b40a430a7d3207a2909946c9f62591d0fccf36323b86073965c5c9a6fe7879faac5ff64d24ed953a82cd0640000000000000040e09acfc064b20ec63213e7ee864824936b0d9eabc39f8c5d04985940df1296c0b70e0bd5d1381dd9189d0ed8079b10b618bbd31d4a3cb97beb2310810062770d", - "receiptsRoot": "0x071f85c0b75884038d6237e2c4d73a530c5e7d388b07921786f2afcc1d6973a9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a9f34ccc9bb54eaa94f8db5ee95c2883c9b6ea106de3c53d5a7cb21fcf0529ff66158aa326c59fdcdeab4045e67203f32dc057a63d7c62e34b775cac02d84dea00000000000000000000006a91c5ab000000000000000000000000000251cf4e00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000016000000010897e6a0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf4e", - "digest": "0xe64facf5ab580a39df040bec10e3c1c3741072de432d731e6066ed6d5342f774", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf4e", - "digest": "0xd53074430ac7cd030e3c32fb02f798c5216b8d24c1769ce96ef651e36a6e3332", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "58907387800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000016000000010897e6a000000000000000000000000000000001000000006a91c533", - "digest": "0x497e8b4540ba597fb5e9447faee2031fead21f13d791307a9e7444850e163543", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100754", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100129", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf4e", - "digest": "0xd53074430ac7cd030e3c32fb02f798c5216b8d24c1769ce96ef651e36a6e3332", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099901", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879017", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099429", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129419", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "242", - "totalGas": "139051", - "transactionId": "0xd9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe09acfc064b20ec63213e7ee864824936b0d9eabc39f8c5d04985940df1296c0b70e0bd5d1381dd9189d0ed8079b10b618bbd31d4a3cb97beb2310810062770d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef44", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "147930", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10049", - "utxoId": "0x72d44d4abf00550d7df6791da4afbcd2f0dd6d4257007cb6722ab92d87a1789b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb0471c1761315cfd1b7083cd3fb7c98b95831c31be870ab19fad9a65a1ca267a", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xf300c1c608e7ed7dfeb51fd03f5c17f9b0958e362452955edf31eb4c6a5686d5", - "txPointer": "03bd1aa70021", - "utxoId": "0xd9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8394325142d405585b32f4890196ea0ed21ffede1b40a430a7d3207a2909946c", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0xa23a6e3fe6a8be0947a2e513302eaa61604361ae7d888822785d003677e66ebb", - "txPointer": "03bd1aa70021", - "utxoId": "0xd9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70021", - "utxoId": "0xd9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "147689", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe2147fff78e29db7cc5cf6d5c3c1f2338a2e67047a7f4a6b91aa826ee6ab3e94", - "inputIndex": "1", - "stateRoot": "0x68b91d56a4dfbc1917aaec6918b138b2505be176f05af89b42c37138b66902fc" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x910dc8ca3f61c01d913a598f98267f55aabe71981627b4d5150cd18ea9117e6c", - "inputIndex": "2", - "stateRoot": "0xb97026ce0ca256a734cd70714af2368bd20bb6e553033cdb3f780e951d942acf" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848002ad2726e7e456ee2d9597e2b04c74f25cff182c133f2620b58623de511921160000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b93173d93bf5afcd6a0291e9a12a0d1588714bd5a297c33b6566b54498d2360dc77ecadfa1d578880b3d4a824917088bc955bf864628be930cbe85831312394c00000000000000000000006a91c5ab000000000000000000000000000251cf4f00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000e00000001085649c0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab000000000000000072d44d4abf00550d7df6791da4afbcd2f0dd6d4257007cb6722ab92d87a1789b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000241daf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004900000000000000000000000000000000000000000000000000000000000000000000000000000001d9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae0000000000000002b0471c1761315cfd1b7083cd3fb7c98b95831c31be870ab19fad9a65a1ca267af300c1c608e7ed7dfeb51fd03f5c17f9b0958e362452955edf31eb4c6a5686d50000000003bd1aa700000000000000214added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001d9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae00000000000000038394325142d405585b32f4890196ea0ed21ffede1b40a430a7d3207a2909946ca23a6e3fe6a8be0947a2e513302eaa61604361ae7d888822785d003677e66ebb0000000003bd1aa70000000000000021b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001d9545e59c5a46a355d391dd0f12f28d6e6244d5bc0d24872f2c2d289daa808ae0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000240e9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001e2147fff78e29db7cc5cf6d5c3c1f2338a2e67047a7f4a6b91aa826ee6ab3e9468b91d56a4dfbc1917aaec6918b138b2505be176f05af89b42c37138b66902fc00000000000000010000000000000002910dc8ca3f61c01d913a598f98267f55aabe71981627b4d5150cd18ea9117e6cb97026ce0ca256a734cd70714af2368bd20bb6e553033cdb3f780e951d942acf00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040af612a2f7b5b4b339c866e9aeefd8938a1e1881a8b2520ecc5af1b83c574298583114810ad4eae3bf9daa3090d63b36ec22a13e7f4f9f3779c419859ac358ae7", - "receiptsRoot": "0x02ad2726e7e456ee2d9597e2b04c74f25cff182c133f2620b58623de51192116", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b93173d93bf5afcd6a0291e9a12a0d1588714bd5a297c33b6566b54498d2360dc77ecadfa1d578880b3d4a824917088bc955bf864628be930cbe85831312394c00000000000000000000006a91c5ab000000000000000000000000000251cf4f00000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000000e00000001085649c0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf4f", - "digest": "0x5177be8d2ff295987616975be242c55ae269cd39bc6233676922d9464d0fef4a", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf4f", - "digest": "0x11f2e143036148f165f38e9ed17696edebb561e28d8f999bbeae7afcf007864f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "209679235200", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000e00000001085649c000000000000000000000000000000001000000006a91c533", - "digest": "0x2b6eca0c7e35902c00000f229281218c405b5cd4714bff9cc5407d5139fa6d64", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101146", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100521", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf4f", - "digest": "0x11f2e143036148f165f38e9ed17696edebb561e28d8f999bbeae7afcf007864f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100293", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879525", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099821", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128911", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "241", - "totalGas": "138543", - "transactionId": "0x921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef44" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xaf612a2f7b5b4b339c866e9aeefd8938a1e1881a8b2520ecc5af1b83c574298583114810ad4eae3bf9daa3090d63b36ec22a13e7f4f9f3779c419859ac358ae7" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x3f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154990", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1004a", - "utxoId": "0xad580215d126b8d194face9501164e692083d7cbbe1c758efab396b20428f1730000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x910dc8ca3f61c01d913a598f98267f55aabe71981627b4d5150cd18ea9117e6c", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0xd9621629feebd181cf3ddca100d50e5c6e082214d3cac56441973aa3b8d2b3fb", - "txPointer": "03bd1aa70022", - "utxoId": "0x921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef440002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70022", - "utxoId": "0x921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef440003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe2147fff78e29db7cc5cf6d5c3c1f2338a2e67047a7f4a6b91aa826ee6ab3e94", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x425c23d0f578c303dddb20c3c401cd3f741f9231cee6522171f0460e0d950e90", - "txPointer": "03bd1aa70022", - "utxoId": "0x921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef440001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154749", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0b335ee4b4318dc7d529a1959fed8d411ddc4b50eccc336f49427b54f1c22753", - "inputIndex": "1", - "stateRoot": "0x81b7018213e8f95afc7ec3fa8716a9a3357d2cc21a0b807fe99d30ddc7738cb3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xee51b983bb144df5c50b181cabc4212e8516802c24c6ef79f5aec288d1beb4bb", - "inputIndex": "3", - "stateRoot": "0xe2b4be03b155a1ea4c6ab4aceaf2f630bd7e3f91e25f1e08ea46830e2686c477" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f50bed46f34cdfd61a13eabb9fa58f6cb6fc34da260cc335e4875aece5ac3b840000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000aed22e4fea7a919708910ad08febe84b75cc49c12a8a47a5216245d8acd81a2a6fb458fb4ab0f887fe18103b35d67eb6e927c84fa0cead51daca8b112beccba800000000000000000000006a91c5ab000000000000000000000000000251cf5000000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000034000000010896ae20000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000ad580215d126b8d194face9501164e692083d7cbbe1c758efab396b20428f1730000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025d6ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000001921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef440000000000000002910dc8ca3f61c01d913a598f98267f55aabe71981627b4d5150cd18ea9117e6cd9621629feebd181cf3ddca100d50e5c6e082214d3cac56441973aa3b8d2b3fb0000000003bd1aa70000000000000022b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000001921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef440000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001921a8c434f5f7e99e89cb232f0f9a2ce7a8f692533a017eca0fdceda505aef440000000000000001e2147fff78e29db7cc5cf6d5c3c1f2338a2e67047a7f4a6b91aa826ee6ab3e94425c23d0f578c303dddb20c3c401cd3f741f9231cee6522171f0460e0d950e900000000003bd1aa700000000000000224added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025c7df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010b335ee4b4318dc7d529a1959fed8d411ddc4b50eccc336f49427b54f1c2275381b7018213e8f95afc7ec3fa8716a9a3357d2cc21a0b807fe99d30ddc7738cb3000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003ee51b983bb144df5c50b181cabc4212e8516802c24c6ef79f5aec288d1beb4bbe2b4be03b155a1ea4c6ab4aceaf2f630bd7e3f91e25f1e08ea46830e2686c477000000000000004017147a233c467c6ac2c7f4c8ded18baad52148ef449863ebb63a5df4128107add90b9478b968a3bb4edaad87a677fe4f4c0530ebe66b207c327e26cb0eb6348e", - "receiptsRoot": "0xf50bed46f34cdfd61a13eabb9fa58f6cb6fc34da260cc335e4875aece5ac3b84", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000aed22e4fea7a919708910ad08febe84b75cc49c12a8a47a5216245d8acd81a2a6fb458fb4ab0f887fe18103b35d67eb6e927c84fa0cead51daca8b112beccba800000000000000000000006a91c5ab000000000000000000000000000251cf5000000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000034000000010896ae20000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf50", - "digest": "0x4679911bb247d4ec5a33587b0c5ec96942e0081778b2f0beda17d0287dc7c1ea", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf50", - "digest": "0x4f1776c7db80cd9bdf2d012b95acf6cf439a504a0b2365d66a58141869eb9d69", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "88958762400", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000034000000010896ae2000000000000000000000000000000001000000006a91c533", - "digest": "0x25833f1e390a59d2dde5672e7cbd6f4d764df233baf642b26ec93aae29864d88", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100786", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100161", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf50", - "digest": "0x4f1776c7db80cd9bdf2d012b95acf6cf439a504a0b2365d66a58141869eb9d69", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099933", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879744", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099461", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128692", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "241", - "totalGas": "138324", - "transactionId": "0x3f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x17147a233c467c6ac2c7f4c8ded18baad52148ef449863ebb63a5df4128107add90b9478b968a3bb4edaad87a677fe4f4c0530ebe66b207c327e26cb0eb6348e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x3b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b61", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "184443", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1004b", - "utxoId": "0x4c2f3aa307f9f0d737fd4592d7d08c0eaac033e65e91a37f393743a7bd6a182e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xce78862b8c22ef4f7914ddacdca9ba3b89264b68252d35e82e69bf1ee7afb67d", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x77d23af6efe34cec9b26c07e5dc8c644be5f000da126d700e5bb79f42392064d", - "txPointer": "03bd1aa70010", - "utxoId": "0x5eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec4090002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70023", - "utxoId": "0x3f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9de269112f335ad007fe8c5b4e6de17dabb7f6ee3e4003649a0c26d437a44f3a", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x28f1c460429c82e28ef23d6b45bbbd41541fb452d4fda12f7a68cae71af02b8e", - "txPointer": "03bd1aa70010", - "utxoId": "0x5eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec4090003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "184229", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd38c2a515dfefa57b890fe22202c58aec6f8a092d6c526a7b77d1ed3c78b7a3d", - "inputIndex": "1", - "stateRoot": "0xc0ebc6205f463f8be712e2a6ebd986cd61db36a9d0b485ded07ec04a48313bff" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe876da9b3fbfc1682b976c687e41bfcd1991822be6e79e51efc7529c0d963716", - "inputIndex": "3", - "stateRoot": "0x06377826680c441fe61435e417a97302042b354313972e49a91719d6b5edcf0a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480684b078ec1b0d7db5df1e37c1282a9745eef4383188cb0b2980d306e90baaddc0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b1af480abfe015c16a52811405c8e7e9cd6984ba8cf5971ba7129c34684bed59d3be474cc4b566c0f1f8c28d290047f3f0b8e74b62f66a7b22a5d37eb23b95b900000000000000000000006a91c5ab00000000000000000000000000022965620000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006000000000000cf02200000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000006400000000000210ac0000000003bd1aab00000000000000004c2f3aa307f9f0d737fd4592d7d08c0eaac033e65e91a37f393743a7bd6a182e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002d07bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004b000000000000000000000000000000000000000000000000000000000000000000000000000000015eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec4090000000000000002ce78862b8c22ef4f7914ddacdca9ba3b89264b68252d35e82e69bf1ee7afb67d77d23af6efe34cec9b26c07e5dc8c644be5f000da126d700e5bb79f42392064d0000000003bd1aa7000000000000001067131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000013f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015eac9ef85ff2d518728db501eadd692d2b03bb1decbccf6f7ee2880fc78ec40900000000000000039de269112f335ad007fe8c5b4e6de17dabb7f6ee3e4003649a0c26d437a44f3a28f1c460429c82e28ef23d6b45bbbd41541fb452d4fda12f7a68cae71af02b8e0000000003bd1aa70000000000000010df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002cfa5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d38c2a515dfefa57b890fe22202c58aec6f8a092d6c526a7b77d1ed3c78b7a3dc0ebc6205f463f8be712e2a6ebd986cd61db36a9d0b485ded07ec04a48313bff000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003e876da9b3fbfc1682b976c687e41bfcd1991822be6e79e51efc7529c0d96371606377826680c441fe61435e417a97302042b354313972e49a91719d6b5edcf0a000000000000004037aa94c4de4b94649e5dd26b0cc1a7bd00a7ffaa715d80c5b983c620f27d3b9e3e23e56b0da7dbe448cdaef2d90670901a9e623010535b95f77df60864f1b3ab", - "receiptsRoot": "0x684b078ec1b0d7db5df1e37c1282a9745eef4383188cb0b2980d306e90baaddc", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b1af480abfe015c16a52811405c8e7e9cd6984ba8cf5971ba7129c34684bed59d3be474cc4b566c0f1f8c28d290047f3f0b8e74b62f66a7b22a5d37eb23b95b900000000000000000000006a91c5ab00000000000000000000000000022965620000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006000000000000cf02200000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296562", - "digest": "0xbbab69f5e92dd4202228b405ee2d4753debc10bc86c1f62fc604f7a0a940530e", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140792", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296562", - "digest": "0x4328bfea8a1f0d86376149f904cd415aedbd6eef339e95817f0a074c2d3e501e", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964706", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "102108232144", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403056", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006000000000000cf02200000000000000000000000000000001000000006a91c533", - "digest": "0xd47a77857cbf8825737d966b51cb3644ad55a5a2048f31a72994718c0afe246b", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397404", - "ptr": "67101770", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374572", - "ptr": "67101145", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296562", - "digest": "0x4328bfea8a1f0d86376149f904cd415aedbd6eef339e95817f0a074c2d3e501e", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67100917", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1896194", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457304", - "ptr": "67099997", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370300", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50596", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "113087", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "214", - "totalGas": "122719", - "transactionId": "0x3b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b61" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x37aa94c4de4b94649e5dd26b0cc1a7bd00a7ffaa715d80c5b983c620f27d3b9e3e23e56b0da7dbe448cdaef2d90670901a9e623010535b95f77df60864f1b3ab" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x14d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce31", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "146669", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1004c", - "utxoId": "0x53b899bbfaa7c62c24efb6aeaccb72d91647c496aab0b9442c5948213b7aeb230000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70024", - "utxoId": "0x3b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b610002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe876da9b3fbfc1682b976c687e41bfcd1991822be6e79e51efc7529c0d963716", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0xcd8822efddfdca8b0e6aeb40756d2c401e9605a2357bc31fa18776fe90eb420f", - "txPointer": "03bd1aa70024", - "utxoId": "0x3b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b610003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd38c2a515dfefa57b890fe22202c58aec6f8a092d6c526a7b77d1ed3c78b7a3d", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x6957b767bf3af3ed4696bae31fe3c836cc2107fbcecb86d68ab7c59825b0bf7b", - "txPointer": "03bd1aa70024", - "utxoId": "0x3b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b610001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "146462", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x387e21f44c09abd9cf8392a0bffec7d3363b14e7e3f8436569f78d8c4db8b530", - "inputIndex": "2", - "stateRoot": "0x833ec6a7ddcf10944f818dfe7f79d5bd4cc3233b775a9cfde5fb33ae1224f800" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf2a8ee571f3b5b7b8c3aac1d6041b2663b90085142ba04d4bb03862066b6e2b3", - "inputIndex": "3", - "stateRoot": "0xa2da0837274655a08ea3c3df3b2557065dad16391eddfafc0776b39906e9a44e" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848075f367543345329cf832a6d5830c9996110a614e3130db6b33ee6e8fb708244f0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000125858fc40c3b6ca7f550bacf903306a26dc8d7aba94755f103cbedbd814a1916cb6aa7f0913ecc50ba80c8a3d0237ff9568e51f076f08526f787bb8bc60fcdd00000000000000000000006a91c5ab00000000000000000000000000022965630000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006000000000000ce94100000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000006400000000000210ac0000000003bd1aab000000000000000053b899bbfaa7c62c24efb6aeaccb72d91647c496aab0b9442c5948213b7aeb230000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023cedf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004c000000000000000000000000000000000000000000000000000000000000000000000000000000013b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b610000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000013b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b610000000000000003e876da9b3fbfc1682b976c687e41bfcd1991822be6e79e51efc7529c0d963716cd8822efddfdca8b0e6aeb40756d2c401e9605a2357bc31fa18776fe90eb420f0000000003bd1aa70000000000000024df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000013b0069ab6a845bd569faef094f28e482818aefc2611843f59f0733b768d06b610000000000000001d38c2a515dfefa57b890fe22202c58aec6f8a092d6c526a7b77d1ed3c78b7a3d6957b767bf3af3ed4696bae31fe3c836cc2107fbcecb86d68ab7c59825b0bf7b0000000003bd1aa7000000000000002467131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023c1ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002387e21f44c09abd9cf8392a0bffec7d3363b14e7e3f8436569f78d8c4db8b530833ec6a7ddcf10944f818dfe7f79d5bd4cc3233b775a9cfde5fb33ae1224f80000000000000000010000000000000003f2a8ee571f3b5b7b8c3aac1d6041b2663b90085142ba04d4bb03862066b6e2b3a2da0837274655a08ea3c3df3b2557065dad16391eddfafc0776b39906e9a44e000000000000004018f00aeb08fc642ec09b27a90a313c72c4f79e9902c97e37e8cdadcaeb371e369ed6550bd3212b5ffee2c857444ed46070f7f654a1dece1551a4e59ddf59ec75", - "receiptsRoot": "0x75f367543345329cf832a6d5830c9996110a614e3130db6b33ee6e8fb708244f", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000125858fc40c3b6ca7f550bacf903306a26dc8d7aba94755f103cbedbd814a1916cb6aa7f0913ecc50ba80c8a3d0237ff9568e51f076f08526f787bb8bc60fcdd00000000000000000000006a91c5ab00000000000000000000000000022965630000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006000000000000ce94100000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296563", - "digest": "0x710671041cae47c541ea90c2ed4f2533ed4b58b1c646416e28a3b8c98d676e4a", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140792", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296563", - "digest": "0x1bd1e7c514e707551ecc9bfaa0b29f7ddf486f1ab29068761a4cc4837a05f111", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964706", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "101083866280", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403056", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006000000000000ce94100000000000000000000000000000001000000006a91c533", - "digest": "0xe1a638b8d060057c2aca556c4f6349d7ef19d7c52eaf90571372262a0ca4a968", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397404", - "ptr": "67102106", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374572", - "ptr": "67101481", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296563", - "digest": "0x1bd1e7c514e707551ecc9bfaa0b29f7ddf486f1ab29068761a4cc4837a05f111", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159560", - "ptr": "67101253", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1899902", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299768", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "299768", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457304", - "ptr": "67100333", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299768", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370300", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50596", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "109379", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "207", - "totalGas": "119011", - "transactionId": "0x14d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce31" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x18f00aeb08fc642ec09b27a90a313c72c4f79e9902c97e37e8cdadcaeb371e369ed6550bd3212b5ffee2c857444ed46070f7f654a1dece1551a4e59ddf59ec75" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xacb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "452645", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1004d", - "utxoId": "0x8a3dbc8db0e59a665cae5979660c503832457f0f78d48f203f7384b952c5a2e30000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70025", - "utxoId": "0x14d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce310001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x31a80c081f5186b53c53b91c1c2b14f9d9b652f52d312ab7a897c2f00310b983", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0xff5e305d21e0285faed6de5b691b556e74c9cc0075026f683a67635f06c6f3f2", - "txPointer": "03bd1aa7001b", - "utxoId": "0x85c1daa2f0bc64c00dbd208930e4c63424549e56335aa38914f43475d27588900003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe7bfe352ef7159a416a6674577fd29e80df41f4ca05c56535584a9cad7f53a1e", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x5c19c63eeb028bc24efe1cef4894154233b9de282f0775cbceba7daafb7feb59", - "txPointer": "03bd1aa70014", - "utxoId": "0x619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "452429", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x84eaed06a0f56417e53f1d409409e65e42786035084782f41494c3e335a5cec7", - "inputIndex": "2", - "stateRoot": "0x0a92a0ba56eb21589400ae1099855b8ba11a65e3e991ae2dbddd605ad1b5588b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb00ee0bfca7aeae4f1172bfc7fcea3f7aa3e9d1d75720bbb9a77af2a4bdea752", - "inputIndex": "3", - "stateRoot": "0xb4654877fd430d26abaeac4538c9926315a5299737b62e3337b477efe8103207" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480fd1374190f9d4a380a5ecddf3d6f6a2c088437f10bf2c1a1383f981011b8e3f500000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a526db7d2781383cf1d1e35f89ea5a7c04023e6aecd9a2cc54b9dbce1e984272c1b17ceeb387170282c41f5368219e2c65ab288ba2cc4a43fe19311c69a5a5fb00000000000000000000006a91c5ab00000000000000000000000000023dd5490000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000006471719a00f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001553bf500000006471719a00000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000008a3dbc8db0e59a665cae5979660c503832457f0f78d48f203f7384b952c5a2e30000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006e825f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004d0000000000000000000000000000000000000000000000000000000000000000000000000000000114d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce310000000000000001b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000185c1daa2f0bc64c00dbd208930e4c63424549e56335aa38914f43475d2758890000000000000000331a80c081f5186b53c53b91c1c2b14f9d9b652f52d312ab7a897c2f00310b983ff5e305d21e0285faed6de5b691b556e74c9cc0075026f683a67635f06c6f3f20000000003bd1aa7000000000000001bba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000001619bd6b9c36f9d790912e060cbfaa4124d346989c3f54c522fe51b3b20a18ffc0000000000000002e7bfe352ef7159a416a6674577fd29e80df41f4ca05c56535584a9cad7f53a1e5c19c63eeb028bc24efe1cef4894154233b9de282f0775cbceba7daafb7feb590000000003bd1aa70000000000000014e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000006e74df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000284eaed06a0f56417e53f1d409409e65e42786035084782f41494c3e335a5cec70a92a0ba56eb21589400ae1099855b8ba11a65e3e991ae2dbddd605ad1b5588b00000000000000010000000000000003b00ee0bfca7aeae4f1172bfc7fcea3f7aa3e9d1d75720bbb9a77af2a4bdea752b4654877fd430d26abaeac4538c9926315a5299737b62e3337b477efe81032070000000000000040ead06b687147af258694401372c8b19ef1f8f8659408c4131bac8af8311dc831b9e4e17c4417099257d1099b91ac8b20e0d33cb3791c9a39d4f24f80a0f0de1b", - "receiptsRoot": "0xfd1374190f9d4a380a5ecddf3d6f6a2c088437f10bf2c1a1383f981011b8e3f5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a526db7d2781383cf1d1e35f89ea5a7c04023e6aecd9a2cc54b9dbce1e984272c1b17ceeb387170282c41f5368219e2c65ab288ba2cc4a43fe19311c69a5a5fb00000000000000000000006a91c5ab00000000000000000000000000023dd5490000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f726465720000006471719a00f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff00000000000000010000000000000018000000001553bf500000006471719a000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023dd549", - "digest": "0xb8b817128d3c7f5b3072f81bd57fd8c27cf2de8824faf1bc77b70e34e4806518", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd549", - "digest": "0x97e7bf0096a53637975b7ac85468ca571294ad6bcff2622f4256dfd28c105c30", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd549", - "digest": "0x97e7bf0096a53637975b7ac85468ca571294ad6bcff2622f4256dfd28c105c30", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "431400000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000000001553bf50000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000100000000000000010000006471719a00000000001553bf50000000006a91c533", - "digest": "0x1f063becf97325a8e9b6c81aa5a9588cce164dc8edf72971b6c7cc8036f51e0f", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002c000000001553bf5000000000000000010000000000000001", - "digest": "0x1a9273ed30a346d9da0deb18c707aadfaaa58ee36dc21f4973d36cc94f1fb871", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101270", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "114066", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "216", - "totalGas": "123687", - "transactionId": "0xacb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xead06b687147af258694401372c8b19ef1f8f8659408c4131bac8af8311dc831b9e4e17c4417099257d1099b91ac8b20e0d33cb3791c9a39d4f24f80a0f0de1b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xf9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "294655", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1004e", - "utxoId": "0x5df2bb4fe4a12c6714c9336732c0ff28b6249a59a0c975931de90f1298e390c20000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70026", - "utxoId": "0xacb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b50001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x387e21f44c09abd9cf8392a0bffec7d3363b14e7e3f8436569f78d8c4db8b530", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x7704db29c90813e955917007dacd324410e1cc3520d410f9311bbe5fe2b460f0", - "txPointer": "03bd1aa70025", - "utxoId": "0x14d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce310002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf2a8ee571f3b5b7b8c3aac1d6041b2663b90085142ba04d4bb03862066b6e2b3", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0xe6e7e39c89f41f32c6b361e6d071472f93fdd5c22c851deebf7a06b0fc10537b", - "txPointer": "03bd1aa70025", - "utxoId": "0x14d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce310003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "294427", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5885051e683d5f0566bd6c31c325fb74c4a8506eb7b9bedcbbd6a879cd616fa4", - "inputIndex": "2", - "stateRoot": "0x37fa38722ce7b9f3a5d6b0d605f1a95495595024fbf0443bd76e8e7d48ca6bd6" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb9d55b80547f6d1e6387488f4156c19f0f42a77adc92c4a21e91515d38054ddc", - "inputIndex": "3", - "stateRoot": "0x7c0f0329ba5e5043c4d51e999fa0465ba4db4991e216c57e2f25477e4adbadad" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848030a3aa1ee54f5762db6f7f75594e79691e91e93953b5ff87e4df2edf964cf52a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000026a2417118aa26d5105f8f8c1bf65a5d0b43b009720ae3e66d11519ef02777735b620d3d3249e407429e3e9b6b5c6257246b66bbfd4fafe48b1ff4c476ac44f800000000000000000000006a91c5ab00000000000000000000000000022965640000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f7264657200000027e7b8cc206c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000ceb240000b81e3c49d000000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000005df2bb4fe4a12c6714c9336732c0ff28b6249a59a0c975931de90f1298e390c20000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047efff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000001acb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b50000000000000001f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000114d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce310000000000000002387e21f44c09abd9cf8392a0bffec7d3363b14e7e3f8436569f78d8c4db8b5307704db29c90813e955917007dacd324410e1cc3520d410f9311bbe5fe2b460f00000000003bd1aa70000000000000025df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665000000000000000114d9e5d3be96b8e5888836c0a57d0184fac35288f0e489d3fcc24956a688ce310000000000000003f2a8ee571f3b5b7b8c3aac1d6041b2663b90085142ba04d4bb03862066b6e2b3e6e7e39c89f41f32c6b361e6d071472f93fdd5c22c851deebf7a06b0fc10537b0000000003bd1aa7000000000000002567131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047e1bf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000025885051e683d5f0566bd6c31c325fb74c4a8506eb7b9bedcbbd6a879cd616fa437fa38722ce7b9f3a5d6b0d605f1a95495595024fbf0443bd76e8e7d48ca6bd600000000000000010000000000000003b9d55b80547f6d1e6387488f4156c19f0f42a77adc92c4a21e91515d38054ddc7c0f0329ba5e5043c4d51e999fa0465ba4db4991e216c57e2f25477e4adbadad000000000000004090e87647a8bd899adfe122f02db82afd707a0717a38492fdb12f3ab702a65d2ab3d51cb44628688feaba7286e3382a27ecb45730d611599a0a35be387033ffeb", - "receiptsRoot": "0x30a3aa1ee54f5762db6f7f75594e79691e91e93953b5ff87e4df2edf964cf52a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000026a2417118aa26d5105f8f8c1bf65a5d0b43b009720ae3e66d11519ef02777735b620d3d3249e407429e3e9b6b5c6257246b66bbfd4fafe48b1ff4c476ac44f800000000000000000000006a91c5ab00000000000000000000000000022965640000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f7264657200000027e7b8cc206c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000ceb240000b81e3c49d0000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296564", - "digest": "0xfd3ca913d461f6d77fe71ac0da8efd489577dd6e86f565951f04f4e8aa4adaa2", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140784", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296564", - "digest": "0xae875ef5f87cf0bd2809224b6181262989c471ad406acdcbf1aaa52013cbc7da", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964708", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457296", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370292", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296564", - "digest": "0xae875ef5f87cf0bd2809224b6181262989c471ad406acdcbf1aaa52013cbc7da", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "171391372320", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1950316", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004e00000000000ceb2400000000000000000000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000000000000000000010000b81e3c49d00000000000000ceb24000000006a91c533", - "digest": "0x247fc6f4f84ec7fec0da39e8601721015acfdbaf4d520c738eaf574d93087d43", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428028", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004e00000000000ceb2400000000000000000000000000000001", - "digest": "0x1833fc4f9753769332d0081dca1088c024a86f39252492e1b7875fbc9ec3855b", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374260", - "ptr": "67099686", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50588", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "121297", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "228", - "totalGas": "130918", - "transactionId": "0xf9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x90e87647a8bd899adfe122f02db82afd707a0717a38492fdb12f3ab702a65d2ab3d51cb44628688feaba7286e3382a27ecb45730d611599a0a35be387033ffeb" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x14286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a90", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "431357", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10050", - "utxoId": "0x9e5963f6771c4c3c0f19268519854961876c51d0ab609062786452fc2346228d0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcad784e64bc1c849477484dc3a9d4cea76e0770c03656a703e903e9abfbf8cd9", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x6693d36bb0906a2e13acd1c918b15acd96a32974c4845600404bbf2f5599ed36", - "txPointer": "03bd1aa70027", - "utxoId": "0xf9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x145fc7d112b76f001fb16e17eecbe03ad30b09ec7d35b42858d12f0a28f288ff", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0xa829ae9afdb4905a173576a80b0b7e6d8775db1ddef7979d86d0ddc855d7db8e", - "txPointer": "03bd1aa70027", - "utxoId": "0xf9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70027", - "utxoId": "0xf9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "431036", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9b66ac43ed089546b10a9f31342d9f56dbcf665a078d4b8efbc7c7e25f9450ca", - "inputIndex": "1", - "stateRoot": "0xa1c484f15fa5f490e603a18eb6acabe913e799ac99c7f14e918009b2ed1ecdd1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x7dc145f91e5190afccd9c7eb708f087c064348d81e23c1ffc45074db3fb52218", - "inputIndex": "2", - "stateRoot": "0x06b79e6b73d57655b8c3301e384e6f4b2a20e3a45ef10f858919eab3e2f9b3fe" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480efd3a82965d60cd64f6bda9ed8415e527132d1b70900f939b06310f65480b605000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000038b66aa716eff259f6d51b03d0d299dab693cf7f72b2b42a4d5d84067805c808563b041ca059cf8a08bfa577c97eca1cf993d460ec3f7eb862241f9761425d0600000000000000000000006a91c5ab00000000000000000000000000022965660000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000026b00000000000d258600000000000000010000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000fa0be5622a0027821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5bffffffffffffffff0000000000000001000000000000001800000000000d25860000fa0be5622a000000000000000001000000000000006400000000000210ac0000000003bd1aab00000000000000009e5963f6771c4c3c0f19268519854961876c51d0ab609062786452fc2346228d0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000694fdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000001f9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec0000000000000002cad784e64bc1c849477484dc3a9d4cea76e0770c03656a703e903e9abfbf8cd96693d36bb0906a2e13acd1c918b15acd96a32974c4845600404bbf2f5599ed360000000003bd1aa70000000000000027df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000001f9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec0000000000000003145fc7d112b76f001fb16e17eecbe03ad30b09ec7d35b42858d12f0a28f288ffa829ae9afdb4905a173576a80b0b7e6d8775db1ddef7979d86d0ddc855d7db8e0000000003bd1aa7000000000000002767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000001f9bb8826b385fa4ba41b32fbf39070f7ec296d9af994f2f7098938b7d2357cec0000000000000001f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000693bcf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000019b66ac43ed089546b10a9f31342d9f56dbcf665a078d4b8efbc7c7e25f9450caa1c484f15fa5f490e603a18eb6acabe913e799ac99c7f14e918009b2ed1ecdd1000000000000000100000000000000027dc145f91e5190afccd9c7eb708f087c064348d81e23c1ffc45074db3fb5221806b79e6b73d57655b8c3301e384e6f4b2a20e3a45ef10f858919eab3e2f9b3fe000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400b8c0f83f6af5d73e78e061ce0382541f38be6fd5d56320f7f34a216f3b06832c8bfbb7d386668e989b43c3a40f76399bdf1a72ee5f35ef2d36e70a3d99e4442", - "receiptsRoot": "0xefd3a82965d60cd64f6bda9ed8415e527132d1b70900f939b06310f65480b605", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000038b66aa716eff259f6d51b03d0d299dab693cf7f72b2b42a4d5d84067805c808563b041ca059cf8a08bfa577c97eca1cf993d460ec3f7eb862241f9761425d0600000000000000000000006a91c5ab00000000000000000000000000022965660000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000026b00000000000d258600000000000000010000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000fa0be5622a0027821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5bffffffffffffffff0000000000000001000000000000001800000000000d25860000fa0be5622a000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296566", - "digest": "0x8896ba284fcbb5e23adc65a8b7eb807a675640d4ec79db5ede14399638414482", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296566", - "digest": "0x5de905fc804cb0fc5ccd79664e1d2304acca1d4cec7e31e86cde4c1e404011dd", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "321123000000000", - "assetId": "0x27821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000026b00000000000d258600000000000000010000000000000001000000006a91c533", - "digest": "0x2946781ee8abee79d15f0ece4dfc0158013976641a42e26a20b7ab0e9e17b58c", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67101418", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67100793", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296566", - "digest": "0x5de905fc804cb0fc5ccd79664e1d2304acca1d4cec7e31e86cde4c1e404011dd", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100565", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1890238", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67099645", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296566", - "digest": "0x5de905fc804cb0fc5ccd79664e1d2304acca1d4cec7e31e86cde4c1e404011dd", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099417", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "274929000000000", - "assetId": "0x27821a5432b60fb3e70c64d0a612c2c86218c1088dd0f0f1b0dd6ae5ae17bd5b", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877964", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000026c00000000000d258600000000000000010000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000100000000000000010000fa0be5622a0000000000000d2586000000006a91c533", - "digest": "0x3034df88da3ab087937411ab68b95082ba22c4576996df34c699090992b684d4", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67097577", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000026c00000000000d258600000000000000010000000000000001", - "digest": "0xddb1f9bb339595d0408c2e998bd06dc09255b3e45b97c9276228e90f21d75df3", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67095417", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "174361", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "321", - "totalGas": "184189", - "transactionId": "0x14286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a90" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x0b8c0f83f6af5d73e78e061ce0382541f38be6fd5d56320f7f34a216f3b06832c8bfbb7d386668e989b43c3a40f76399bdf1a72ee5f35ef2d36e70a3d99e4442" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x41059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e97", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "161064", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1004f", - "utxoId": "0x885e1d76ac28ba0c873e2df49e9a02e41a7c309caa55ac3d18bf7e86258045d80000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5885051e683d5f0566bd6c31c325fb74c4a8506eb7b9bedcbbd6a879cd616fa4", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0xaef81a29107464ddddfba51d0fe637d63231493a8461a518457fc884e691ac2a", - "txPointer": "03bd1aa70028", - "utxoId": "0x14286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a900001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb9d55b80547f6d1e6387488f4156c19f0f42a77adc92c4a21e91515d38054ddc", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x068393054c55e9d72010bb779c3b73724fb1c97b08e18df0626a95ccc33aa400", - "txPointer": "03bd1aa70028", - "utxoId": "0x14286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a900002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70028", - "utxoId": "0x14286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a900003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "160845", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x188afa7fc1fb64525be7a17a7c2754fe1db0ce2ac566958532d40df5b9bbcaeb", - "inputIndex": "1", - "stateRoot": "0x517c6b136487177a6e20bd66a335f3ccbcdca7db3e8342ec30e7e68a8b2a9114" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xdfd7eeafd5d96ba9f3fe3483855738fde82d630d6e8868edd80d2593ecbc891b", - "inputIndex": "2", - "stateRoot": "0x7848c02da7186db222ebfce18a9fc51d7a72e8fdb78308ac5360dbefeb9f5ac1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802382d4c6a002dffde765f0f78201df4fb76c545509c09524fa490f84508b03c600000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e544d1211b479a4292605101386b743179668bbced73e224ab59d5deb63fe150f59fda5d428c82c40358080fb02241275c30e85874cf237557e7c85b6b8a7ad000000000000000000000006a91c5ab00000000000000000000000000022965650000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f72646572000000291c4337a06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000ce57a0000be011d8ca000000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000885e1d76ac28ba0c873e2df49e9a02e41a7c309caa55ac3d18bf7e86258045d80000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027528f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000004f0000000000000000000000000000000000000000000000000000000000000000000000000000000114286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a9000000000000000015885051e683d5f0566bd6c31c325fb74c4a8506eb7b9bedcbbd6a879cd616fa4aef81a29107464ddddfba51d0fe637d63231493a8461a518457fc884e691ac2a0000000003bd1aa70000000000000028df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665000000000000000114286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a900000000000000002b9d55b80547f6d1e6387488f4156c19f0f42a77adc92c4a21e91515d38054ddc068393054c55e9d72010bb779c3b73724fb1c97b08e18df0626a95ccc33aa4000000000003bd1aa7000000000000002867131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000114286aece9071768b521fe3abee018a2a50c07ecb1d988e2fbc3828674c89a900000000000000003f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002744df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001188afa7fc1fb64525be7a17a7c2754fe1db0ce2ac566958532d40df5b9bbcaeb517c6b136487177a6e20bd66a335f3ccbcdca7db3e8342ec30e7e68a8b2a911400000000000000010000000000000002dfd7eeafd5d96ba9f3fe3483855738fde82d630d6e8868edd80d2593ecbc891b7848c02da7186db222ebfce18a9fc51d7a72e8fdb78308ac5360dbefeb9f5ac10000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004096cccef4489bf3dcfe121588dcbf78dd8b9f5d758924ea337f7e16d5403e40fc1f4db1dbc89bb058de12373233a4c623eddb38a3b2cb9ab357665a98fca27b2e", - "receiptsRoot": "0x2382d4c6a002dffde765f0f78201df4fb76c545509c09524fa490f84508b03c6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e544d1211b479a4292605101386b743179668bbced73e224ab59d5deb63fe150f59fda5d428c82c40358080fb02241275c30e85874cf237557e7c85b6b8a7ad000000000000000000000006a91c5ab00000000000000000000000000022965650000000000000002df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f72646572000000291c4337a06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000ce57a0000be011d8ca0000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296565", - "digest": "0xeb6e2ba91290f1007db76055b61c87fdae73e117d0fb0d379f5901542661b053", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140784", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296565", - "digest": "0x738a3559f97a7529f13c52d10f61bb947e67f3110441f8c6f74883ac2d8a4ce0", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964708", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457296", - "ptr": "67105002", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370292", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296565", - "digest": "0x738a3559f97a7529f13c52d10f61bb947e67f3110441f8c6f74883ac2d8a4ce0", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159552", - "ptr": "67104774", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "176567826336", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1950316", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299760", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "299760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003700000000000ce57a00000000000000000000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000000000000000000010000be011d8ca00000000000000ce57a000000006a91c533", - "digest": "0x395a8d520a7c15b430f647bd77f41e89cf038540fdba18d358135fac94fe0e3f", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428028", - "ptr": "67102934", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003700000000000ce57a00000000000000000000000000000001", - "digest": "0x98598f99f15dd6c8d3b66f050afc319dcff15518eeb5a3226a3ab285c1d70803", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374260", - "ptr": "67100246", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50588", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "116198", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "219", - "totalGas": "125819", - "transactionId": "0x41059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e97" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x96cccef4489bf3dcfe121588dcbf78dd8b9f5d758924ea337f7e16d5403e40fc1f4db1dbc89bb058de12373233a4c623eddb38a3b2cb9ab357665a98fca27b2e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "170945", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10051", - "utxoId": "0x3dd1882c91a0d6e4685daa8d536747384e6861759e9b49b8cbc6086d7c20a5830000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70029", - "utxoId": "0x41059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e970003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4ccd4f9bcb5cdc14b86022a99b82cba7121656fba1901aedc319b946c578d9c2", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x1faeedeb10df2b9aef22adcb0f5da6a801a2c221b54d59743801b9b2ad296ccb", - "txPointer": "03bd1aa70023", - "utxoId": "0x3f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd591acee2af10c6220e962899bacf671d485cb8970c1e7781c2f9daf6f2251a5", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x0871949baeb44248b51959ba795074c25b08ff8210c63a2710b84fdd48020e25", - "txPointer": "03bd1aa70023", - "utxoId": "0x3f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "170702", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8", - "inputIndex": "2", - "stateRoot": "0xc86d35a55f978fdaa9b8a18ac4bd2452fc077dbf5a72d04aa40408ac0d9b1af7" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c0", - "inputIndex": "3", - "stateRoot": "0x349271128845bad12432c3c4855037e87da18c16b4c699ad46a3443a4cfb480f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f23ee411167465ba32eebc208e8f8b43535f7ad364ef7df8416a72e9d4552fe900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000068a5635941848114c15b2afecb7578e0d267a63ee9f23f58e7e232451ef4217fd32d089598f5f00a64ec5919a902d718144d4ba698385c2c8e0fededc00000a100000000000000000000006a91c5ab000000000000000000000000000251cf5200000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f72646572000000095c1b5200cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108e23610000000095c1b5200000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000003dd1882c91a0d6e4685daa8d536747384e6861759e9b49b8cbc6086d7c20a5830000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029bc1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000510000000000000000000000000000000000000000000000000000000000000000000000000000000141059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e970000000000000003ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000013f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f00000000000000034ccd4f9bcb5cdc14b86022a99b82cba7121656fba1901aedc319b946c578d9c21faeedeb10df2b9aef22adcb0f5da6a801a2c221b54d59743801b9b2ad296ccb0000000003bd1aa700000000000000234added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000013f43f2ecc0354835fecb8538081e7319c6aa25b6d5d4d4330a8e1ea6a4b67c6f0000000000000001d591acee2af10c6220e962899bacf671d485cb8970c1e7781c2f9daf6f2251a50871949baeb44248b51959ba795074c25b08ff8210c63a2710b84fdd48020e250000000003bd1aa70000000000000023b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029acef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8c86d35a55f978fdaa9b8a18ac4bd2452fc077dbf5a72d04aa40408ac0d9b1af700000000000000010000000000000003060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c0349271128845bad12432c3c4855037e87da18c16b4c699ad46a3443a4cfb480f00000000000000406e014971c3501154ab5287c708bd6414767cd009fa307e6ba49671c12389ee9f4705d675c91a8cb99ad4135f8252cf04cde9592bdc3f803c145871f78702cdff", - "receiptsRoot": "0xf23ee411167465ba32eebc208e8f8b43535f7ad364ef7df8416a72e9d4552fe9", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000068a5635941848114c15b2afecb7578e0d267a63ee9f23f58e7e232451ef4217fd32d089598f5f00a64ec5919a902d718144d4ba698385c2c8e0fededc00000a100000000000000000000006a91c5ab000000000000000000000000000251cf5200000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f72646572000000095c1b5200cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108e23610000000095c1b52000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf52", - "digest": "0xe9d5b80e543b6183f4e6e3b5f3e956eaa4f3dd1c77e051d4784ee5e2f19fb9d5", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf52", - "digest": "0x3d0bb5c298673c57219c2e26638a44f23e9b5c870879e80518905300cf9a00d5", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf52", - "digest": "0x3d0bb5c298673c57219c2e26638a44f23e9b5c870879e80518905300cf9a00d5", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "40200000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c0000000108e23610000000000000000100000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000010000000000000001000000095c1b52000000000108e23610000000006a91c533", - "digest": "0x53b5187378112ff428ae431cd243598e8af20893cd4806efbfcd14cbd52c0462", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c0000000108e2361000000000000000010000000000000001", - "digest": "0x672e0d2f2cded71e706bac396d17ffb2449befc02cfc39802fd9da9fb902642f", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099478", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129673", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "243", - "totalGas": "139294", - "transactionId": "0x0c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6e014971c3501154ab5287c708bd6414767cd009fa307e6ba49671c12389ee9f4705d675c91a8cb99ad4135f8252cf04cde9592bdc3f803c145871f78702cdff" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xdde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c20", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "157893", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10052", - "utxoId": "0x432a6222655f342719474197e2e7c4fd0d9c924045a7879f4b65ca900d68658b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xee51b983bb144df5c50b181cabc4212e8516802c24c6ef79f5aec288d1beb4bb", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xfef484cd0d9437964b829c9b312d8058b370ca9714043eea569eec58b85bd342", - "txPointer": "03bd1aa7002a", - "utxoId": "0x0c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0b335ee4b4318dc7d529a1959fed8d411ddc4b50eccc336f49427b54f1c22753", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x1af7def2d3d3791e46ffc08088f9a4d5bc666073a76d08491979117cf8d0c7c4", - "txPointer": "03bd1aa7002a", - "utxoId": "0x0c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7002a", - "utxoId": "0x0c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157513", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x635821567ce093739dfb0daa3fabfcca21d9761f25202b7861dcdd753e3e48d7", - "inputIndex": "1", - "stateRoot": "0x6258d00be3af21c2d82d5c2e1f0155772a777e5e6258d209062300cb307a4213" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x76aae23262d1b7776590dfedfd7d0168269100494ce1ba8566c72c68f23ab6e0", - "inputIndex": "2", - "stateRoot": "0x9d4cf0af2d6eeb9c8f0c0ee9b9b49b87e1fdaa55c9ce2c27099082abb2f7fbf2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d603e411eac8351d9d90a7f3116bfefb5c355a89010ae583a1e630dd3b6100e8000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002cf127d621aefaa2a17ea016903ba93609e17de93ad29004a050e11d259e4d2f02a55a427ed30019b842d85c9f36cca39a5e385cdf75494fd851028bdeabecd300000000000000000000006a91c5ab000000000000000000000000000251cf5100000000000000034added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002200000001088ee5f0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f72646572000000104360266c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000108ad6a7000000003a994c0800000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000432a6222655f342719474197e2e7c4fd0d9c924045a7879f4b65ca900d68658b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000268c5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000052000000000000000000000000000000000000000000000000000000000000000000000000000000010c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba0000000000000002ee51b983bb144df5c50b181cabc4212e8516802c24c6ef79f5aec288d1beb4bbfef484cd0d9437964b829c9b312d8058b370ca9714043eea569eec58b85bd3420000000003bd1aa7000000000000002a4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000010c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba00000000000000030b335ee4b4318dc7d529a1959fed8d411ddc4b50eccc336f49427b54f1c227531af7def2d3d3791e46ffc08088f9a4d5bc666073a76d08491979117cf8d0c7c40000000003bd1aa7000000000000002ab8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000010c0942f5e5979e2e6a3d9690727bef813af33da3bb88a3e6b77ad307012f9eba0000000000000001ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026749f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001635821567ce093739dfb0daa3fabfcca21d9761f25202b7861dcdd753e3e48d76258d00be3af21c2d82d5c2e1f0155772a777e5e6258d209062300cb307a42130000000000000001000000000000000276aae23262d1b7776590dfedfd7d0168269100494ce1ba8566c72c68f23ab6e09d4cf0af2d6eeb9c8f0c0ee9b9b49b87e1fdaa55c9ce2c27099082abb2f7fbf20000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004044ad4a026d94a14bacf3b320c3b24116aa7de7b4ed98aee666ec5a6f8a64190eee181ac3672deffad6c91c630dec1ff1a8ade45eef407f1eebf43825ccf14026", - "receiptsRoot": "0xd603e411eac8351d9d90a7f3116bfefb5c355a89010ae583a1e630dd3b6100e8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002cf127d621aefaa2a17ea016903ba93609e17de93ad29004a050e11d259e4d2f02a55a427ed30019b842d85c9f36cca39a5e385cdf75494fd851028bdeabecd300000000000000000000006a91c5ab000000000000000000000000000251cf5100000000000000034added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002200000001088ee5f0000000000000000000000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f72646572000000104360266c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000108ad6a7000000003a994c0800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf51", - "digest": "0x57bd3f9a76528ca95eea7359528670eae2ace3291060ea887d12ebd8dbeb2054", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf51", - "digest": "0xe4bf177dd08f877f7fb16655296ec841de86d1dbe3aff9400f7e93422d9d5ab4", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "131469851000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002200000001088ee5f000000000000000000000000000000001000000006a91c533", - "digest": "0x8f52f8bff2ae3126ad4d13175123072afbb9f92dd17fc7c5a6cb9c92f4f89a35", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67099914", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67099289", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf51", - "digest": "0xe4bf177dd08f877f7fb16655296ec841de86d1dbe3aff9400f7e93422d9d5ab4", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099061", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874137", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67098589", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf51", - "digest": "0xe4bf177dd08f877f7fb16655296ec841de86d1dbe3aff9400f7e93422d9d5ab4", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67098361", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "69849851500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1862732", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001f0000000108ad6a70000000000000000000000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000000000000000000000100000003a994c0800000000108ad6a70000000006a91c533", - "digest": "0xa0ced7fd0453196e373dad9292bb830cbdc17f8fac41f12e6c7e8397ab1e08a1", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67096969", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001f0000000108ad6a7000000000000000000000000000000001", - "digest": "0x94959936a613f5a03bddec339cee1e8d9e18eea9e62b4ffeb4974ba9e36d1f8c", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67092617", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "208117", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "380", - "totalGas": "217945", - "transactionId": "0xdde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c20" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x44ad4a026d94a14bacf3b320c3b24116aa7de7b4ed98aee666ec5a6f8a64190eee181ac3672deffad6c91c630dec1ff1a8ade45eef407f1eebf43825ccf14026" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153132", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10054", - "utxoId": "0xc96f36e51e67ed2962468549222eb3e1d964346a2214c214a2779267b437f29b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xb6f1038f27b46ad714545e5cd96b4d2446d6dca8285c2efc53255cadab67ff54", - "txPointer": "03bd1aa7002b", - "utxoId": "0xdde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c200001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7002b", - "utxoId": "0xdde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c200003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c0", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x4d99eb1f2941e869d4d732a8453e759c1da5bfa69f58a19cf59f91fd2690f67c", - "txPointer": "03bd1aa7002b", - "utxoId": "0xdde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c200002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "152889", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6c84e834bf2ec2e62ae767213846b257006a5533b62932851276c17ada168393", - "inputIndex": "1", - "stateRoot": "0xebf67395b93ff234bfa4b2188b65bf84dbe2111146912bdfe42ad886077864cd" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd4abd0700a76273465dcfc42dd4722d3f2b2ca1294cc2ae69740f923334abf24", - "inputIndex": "3", - "stateRoot": "0xddba99904cd8582f2d95ae331047c3ce864fc7c5663441f671f9464858e273f6" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848078fa861b9caaf0c7b2d0712889bf69ecc810d0d6726eb3bff3a7f5d3e0dcd16000000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000004183c6c0ac4d89d753fd135d422c817c1af27552705ce8141e87460d3d0b31e492841f695874a4a6e6bf00878d79d83c7618d6709cad975437cd5e3699ce862700000000000000000000006a91c5ab000000000000000000000000000251cf5300000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000007083593a00cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108eff1b00000007083593a00000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000c96f36e51e67ed2962468549222eb3e1d964346a2214c214a2779267b437f29b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002562cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005400000000000000000000000000000000000000000000000000000000000000000000000000000001dde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c200000000000000001e304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8b6f1038f27b46ad714545e5cd96b4d2446d6dca8285c2efc53255cadab67ff540000000003bd1aa7000000000000002b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001dde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c200000000000000003ebf492bcce6928bf30ece1b708ffa26e378feba3146f696f06f2dd28da6f973b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001dde2072065f911c441f37019b25c64e30d7846967f7f21db99497ac6c58f4c200000000000000002060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c04d99eb1f2941e869d4d732a8453e759c1da5bfa69f58a19cf59f91fd2690f67c0000000003bd1aa7000000000000002bb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025539f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016c84e834bf2ec2e62ae767213846b257006a5533b62932851276c17ada168393ebf67395b93ff234bfa4b2188b65bf84dbe2111146912bdfe42ad886077864cd000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003d4abd0700a76273465dcfc42dd4722d3f2b2ca1294cc2ae69740f923334abf24ddba99904cd8582f2d95ae331047c3ce864fc7c5663441f671f9464858e273f600000000000000407afe0d96148b3999c253bb45be737e798b9ce091cedb1e92f92e61b2321062f3e945630579e17db6446a157668cec703ca772403b0cee266fa6c9dd11a8abaf9", - "receiptsRoot": "0x78fa861b9caaf0c7b2d0712889bf69ecc810d0d6726eb3bff3a7f5d3e0dcd160", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000004183c6c0ac4d89d753fd135d422c817c1af27552705ce8141e87460d3d0b31e492841f695874a4a6e6bf00878d79d83c7618d6709cad975437cd5e3699ce862700000000000000000000006a91c5ab000000000000000000000000000251cf5300000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615714added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c6372656174655f6f726465720000007083593a00cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bbffffffffffffffff000000000000000100000000000000180000000108eff1b00000007083593a000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf53", - "digest": "0x904d0a6830447428b226b7ffc438bb724a8c87671745b89162ff29d20d5600e0", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf53", - "digest": "0x6fee49cf1f3620f028536d8b6c2be3d3e0abcc5b824874d9c518395a9ef38a00", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf53", - "digest": "0x6fee49cf1f3620f028536d8b6c2be3d3e0abcc5b824874d9c518395a9ef38a00", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "483240000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000110000000108eff1b0000000000000000100000000000000010000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571000000000000000100000000000000010000007083593a000000000108eff1b0000000006a91c533", - "digest": "0xa24e67ad780d1749756f2b5ef77ac7e0daafcf9181e899aa0e8c4ae950fd9d33", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000110000000108eff1b000000000000000010000000000000001", - "digest": "0x21e354c0c44b842c236d18876c6da288395785d645a38808c2df27a8052e4de2", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099782", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129554", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "243", - "totalGas": "139175", - "transactionId": "0xe87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7afe0d96148b3999c253bb45be737e798b9ce091cedb1e92f92e61b2321062f3e945630579e17db6446a157668cec703ca772403b0cee266fa6c9dd11a8abaf9" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "168600", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10053", - "utxoId": "0xeca63af5c8947f6db0c72ab3635e908754f9db35a0f0785783aa89735544cf030000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7002c", - "utxoId": "0xe87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x990c44b2e0bcccb1eb479c2a5d3a93307ee9a6edd4595fc40139660b7494e658", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x66cd65b5cc69ac063295e07f686875c8fe949aec6182a199a582fab938242375", - "txPointer": "03bd1aa70012", - "utxoId": "0xbf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x26223e73f7ad49d2de50e4c564c83ef48153c459f87794dfd9d7a3ff35e62836", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x1d2e69c4f85cbb4e83ad702f883b1568eb4206bc482d40d3c52ea49e8d407392", - "txPointer": "03bd1aa70012", - "utxoId": "0xbf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "168377", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xad2d212a6ce80f4d46f836e517ce6facc7727303dd22a395827788de07412deb", - "inputIndex": "2", - "stateRoot": "0x0ff8bdb670ee848c6a25a0d98ab4055efaa0a6b1eba02a36450929629e9b16ee" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc4a2b41cef20b3549222545dfdf9766915e8ebc410bc73faa93ba876e00f8c3b", - "inputIndex": "3", - "stateRoot": "0x76561103c3d362531981f750f49e3ec48ce6b4b5e84d3d4ccaef80a4c5c34c5e" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ed4d15ab43e727078cf35a2aa47e74b31bd810e7f64441fe3f89b0d491db76830000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007907dccf05aeb6d31a70e1e1f5bdc63090f911547f9943b2dceba81a7293765ca3c70787f0cb6d7e02b27fc4e3982ed96146a405f64499bc0e0eecc47310771900000000000000000000006a91c5ab00000000000000000000000000024e03750000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006200000002ad427bb000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aab0000000000000000eca63af5c8947f6db0c72ab3635e908754f9db35a0f0785783aa89735544cf030000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000029298f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005300000000000000000000000000000000000000000000000000000000000000000000000000000001e87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001bf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a0000000000000001990c44b2e0bcccb1eb479c2a5d3a93307ee9a6edd4595fc40139660b7494e65866cd65b5cc69ac063295e07f686875c8fe949aec6182a199a582fab9382423750000000003bd1aa70000000000000012f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001bf13dd5083b1cb9c3f958f3cd5c8eea15311422eb4fb3f155ac5b566e3eb468a000000000000000226223e73f7ad49d2de50e4c564c83ef48153c459f87794dfd9d7a3ff35e628361d2e69c4f85cbb4e83ad702f883b1568eb4206bc482d40d3c52ea49e8d4073920000000003bd1aa70000000000000012c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000291b9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002ad2d212a6ce80f4d46f836e517ce6facc7727303dd22a395827788de07412deb0ff8bdb670ee848c6a25a0d98ab4055efaa0a6b1eba02a36450929629e9b16ee00000000000000010000000000000003c4a2b41cef20b3549222545dfdf9766915e8ebc410bc73faa93ba876e00f8c3b76561103c3d362531981f750f49e3ec48ce6b4b5e84d3d4ccaef80a4c5c34c5e0000000000000040f28e159b5c10a4fc9e9dab0b13d9a667e0dee2f168856c08f21dbe2d26c853d1b213664ad395f42edd225e8fc0fb16da43c086fc20e68caa87a41fc7b6075912", - "receiptsRoot": "0xed4d15ab43e727078cf35a2aa47e74b31bd810e7f64441fe3f89b0d491db7683", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007907dccf05aeb6d31a70e1e1f5bdc63090f911547f9943b2dceba81a7293765ca3c70787f0cb6d7e02b27fc4e3982ed96146a405f64499bc0e0eecc47310771900000000000000000000006a91c5ab00000000000000000000000000024e03750000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006200000002ad427bb000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e0375", - "digest": "0x03ad97e5fd4048c8b8a3007588bc266a5dc25482941677047b1c61aa83dbad0c", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0375", - "digest": "0x79a8739172500f2d5ca8fb8b4df48f5cbcd36fc6d7071600effbdc1cf30e4a1a", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "26560000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006200000002ad427bb000000000000000010000000000000001000000006a91c533", - "digest": "0x61864d3cc1ff5c71e1b4c09d813b2e5fd28766031125b5f42732a639872a1243", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101618", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100993", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0375", - "digest": "0x79a8739172500f2d5ca8fb8b4df48f5cbcd36fc6d7071600effbdc1cf30e4a1a", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100765", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1890194", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100293", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "118242", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "223", - "totalGas": "127874", - "transactionId": "0xa995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf28e159b5c10a4fc9e9dab0b13d9a667e0dee2f168856c08f21dbe2d26c853d1b213664ad395f42edd225e8fc0fb16da43c086fc20e68caa87a41fc7b6075912" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x6d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c86288", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151268", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10055", - "utxoId": "0x380de55e6eb73fe320d77ab431cd2c7eac0e17510aef6bf91276ae2f3d93d9b30000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xad2d212a6ce80f4d46f836e517ce6facc7727303dd22a395827788de07412deb", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x41a6cbbc4c4cb3bc788eeaa8fd6475f5de54a713c71f522cd93cb5e6f2f60ec0", - "txPointer": "03bd1aa7002d", - "utxoId": "0xa995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7002d", - "utxoId": "0xa995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc4a2b41cef20b3549222545dfdf9766915e8ebc410bc73faa93ba876e00f8c3b", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x03f5675f1e96f67bfafd28b9ba65e0d40c2a338276444def9a391c6c12e281a7", - "txPointer": "03bd1aa7002d", - "utxoId": "0xa995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151037", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd3f67ed4a47abe269afcb4ce6b37d2934a0e01cb3856e48b9e1414e1cc475d6f", - "inputIndex": "1", - "stateRoot": "0x10f27a5083e37fc14113624f15c8dc461e88a9cf6f475e75c116f61044b875bf" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x15b1187c06aec3aaac239304991c9466612ba3753b0e82051015b9f387a0c760", - "inputIndex": "3", - "stateRoot": "0x2db8fb3e3719e40ecfa2edec07ecf9682450e2745128e71c08800162c4164f9b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848099c079f9c5b24fadc9eb66d2406afd50a474b51c335fce7b5ea68246149e85980000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000025dcbd057a3d28d837614ec794d437b11de062f75077907f8509164585d7065c1aa98388a16e58efb5e3cba1b0ba6526c79f504fa07fb5337adf339ef0b854e00000000000000000000006a91c5ab00000000000000000000000000024e03760000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000d400000002ad17c23000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aab0000000000000000380de55e6eb73fe320d77ab431cd2c7eac0e17510aef6bf91276ae2f3d93d9b30000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024ee4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005500000000000000000000000000000000000000000000000000000000000000000000000000000001a995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae0000000000000002ad2d212a6ce80f4d46f836e517ce6facc7727303dd22a395827788de07412deb41a6cbbc4c4cb3bc788eeaa8fd6475f5de54a713c71f522cd93cb5e6f2f60ec00000000003bd1aa7000000000000002df356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001a995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a995b4072d069e773d8635838105a491d814392b043f01f5298bb9d00c2eeaae0000000000000003c4a2b41cef20b3549222545dfdf9766915e8ebc410bc73faa93ba876e00f8c3b03f5675f1e96f67bfafd28b9ba65e0d40c2a338276444def9a391c6c12e281a70000000003bd1aa7000000000000002dc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024dfdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001d3f67ed4a47abe269afcb4ce6b37d2934a0e01cb3856e48b9e1414e1cc475d6f10f27a5083e37fc14113624f15c8dc461e88a9cf6f475e75c116f61044b875bf00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000315b1187c06aec3aaac239304991c9466612ba3753b0e82051015b9f387a0c7602db8fb3e3719e40ecfa2edec07ecf9682450e2745128e71c08800162c4164f9b0000000000000040aaa2ff88eb97763f9bd994849caead3c7694d2604729aeecaaa80885c5e4c9202a501770038d61ffaaf00a184d92008d042731b2f1a5f2c6f8eb37ca3f0493bf", - "receiptsRoot": "0x99c079f9c5b24fadc9eb66d2406afd50a474b51c335fce7b5ea68246149e8598", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000025dcbd057a3d28d837614ec794d437b11de062f75077907f8509164585d7065c1aa98388a16e58efb5e3cba1b0ba6526c79f504fa07fb5337adf339ef0b854e00000000000000000000006a91c5ab00000000000000000000000000024e03760000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000d400000002ad17c23000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e0376", - "digest": "0xf99587782bb6f8aa0c40829a20772bfac251522ab80488be0d66bc59a4b54a43", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0376", - "digest": "0x71f0035e0bca2d222ef6662b33ae141aa6f663868c7c50bfd6603ebf536585c2", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "53140000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000d400000002ad17c23000000000000000010000000000000001000000006a91c533", - "digest": "0x84dbd473feadd74783b2b65af2a75be9df04f80b6edfc0028dedadea29c12b95", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101074", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100449", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0376", - "digest": "0x71f0035e0bca2d222ef6662b33ae141aa6f663868c7c50bfd6603ebf536585c2", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100221", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1885333", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099749", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123103", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "231", - "totalGas": "132735", - "transactionId": "0x6d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c86288" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xaaa2ff88eb97763f9bd994849caead3c7694d2604729aeecaaa80885c5e4c9202a501770038d61ffaaf00a184d92008d042731b2f1a5f2c6f8eb37ca3f0493bf" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xcb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "148171", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10056", - "utxoId": "0xe8fb4a5d03ea128a22f4ff7454b5f0b492b50c779798c950bbca128271a4724c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x82e5c7696161edaab17a67ecb40f74b61f67adaf5418bd9a83c953a90405ff42", - "contractId": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "stateRoot": "0x64f84f472ae8c13d8076ca1229fffde68e5802b5c178aa54c0c927b5dd423fd0", - "txPointer": "03bd1aa70000", - "utxoId": "0xcf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf56690003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x21b1d08ab226b5bf5c0346b85614a9ef73af0bed0e0058775da94e1977c12ef5", - "contractId": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "stateRoot": "0x640505af2d3e26a8d12b5e349b008608950a12e4dcba788ce592b10a9fb8eaee", - "txPointer": "03bd1aa70000", - "utxoId": "0xcf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf56690001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d565", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7002e", - "utxoId": "0x6d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c862880002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "147813", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc68ae8115c96be3a6688a39cafc51ab84db707bfd10dc5bfca9143b65cf58b0c", - "inputIndex": "1", - "stateRoot": "0x8954f642490c104d6df5a11430eda80c83141eaf2ec2e4609a476ebb4aa85944" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xae0013c3116340b04cf50db18046b83006ecc9526fbe1683b6b5d728c0fbc951", - "inputIndex": "2", - "stateRoot": "0xa9aa0d934fe4f99d7ec220d0cc5eee92a27b978dee13f09f8f260b3f63d41c30" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480104d95ccff46ac5f20a6148be56075d991c23d1a0cadf26cff10ca4da1eb3ad4000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009c3d046bebd4ac51c6b4c6ede6cc509081c38ad6115e8886d8151659f7240051bf2173d8b3b2efee010beb89879e34b79c6185686a72556a2338d70637e932c800000000000000000000006a91c5ab000000000000000000000000000099f05e000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000d526000000003b9636200000000000000001000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f7264657200000183c5bf6b8065e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715ffffffffffffffff00000000000000010000000000000018000000003b96362000000183c5bf6b800000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000e8fb4a5d03ea128a22f4ff7454b5f0b492b50c779798c950bbca128271a4724c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000242cbf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005600000000000000000000000000000000000000000000000000000000000000000000000000000001cf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf5669000000000000000382e5c7696161edaab17a67ecb40f74b61f67adaf5418bd9a83c953a90405ff4264f84f472ae8c13d8076ca1229fffde68e5802b5c178aa54c0c927b5dd423fd00000000003bd1aa7000000000000000030963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc50000000000000001cf7b46f7cf1ece77678481365e59416a7c1d51de103c0fc66af8a3f250bf5669000000000000000121b1d08ab226b5bf5c0346b85614a9ef73af0bed0e0058775da94e1977c12ef5640505af2d3e26a8d12b5e349b008608950a12e4dcba788ce592b10a9fb8eaee0000000003bd1aa7000000000000000097c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000016d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c8628800000000000000022f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d56500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024165f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001c68ae8115c96be3a6688a39cafc51ab84db707bfd10dc5bfca9143b65cf58b0c8954f642490c104d6df5a11430eda80c83141eaf2ec2e4609a476ebb4aa8594400000000000000010000000000000002ae0013c3116340b04cf50db18046b83006ecc9526fbe1683b6b5d728c0fbc951a9aa0d934fe4f99d7ec220d0cc5eee92a27b978dee13f09f8f260b3f63d41c300000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004038d167481e263880c306d6a13d76e02578663f28bfcaf6b97143e2232690e808bb32e3fdb55fac03ad0fa7bf94b3b8cd97e58ecbd2299a6ccaa200927649354d", - "receiptsRoot": "0x104d95ccff46ac5f20a6148be56075d991c23d1a0cadf26cff10ca4da1eb3ad4", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009c3d046bebd4ac51c6b4c6ede6cc509081c38ad6115e8886d8151659f7240051bf2173d8b3b2efee010beb89879e34b79c6185686a72556a2338d70637e932c800000000000000000000006a91c5ab000000000000000000000000000099f05e000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000d526000000003b9636200000000000000001000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f7264657200000183c5bf6b8065e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715ffffffffffffffff00000000000000010000000000000018000000003b96362000000183c5bf6b800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000099f05e", - "digest": "0xef53385e77f0b1c6d4227e8bab5b9e3587b2debc5e07974632b78731b3444292", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5ab000000000000000000000000000099f05e", - "digest": "0x7ada18fa49bdd0c4dabe94466fdc03105e9704cc163e37ff8b11c0aa2d2551aa", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": "2549880000000", - "assetId": "0x65e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000d526000000003b96362000000000000000010000000000000001000000006a91c533", - "digest": "0x3dfeab8a285854ae09bc6b9350bef8fc4f7a7f9f767be85a3e7ab61a8de7505d", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100634", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100009", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5ab000000000000000000000000000099f05e", - "digest": "0x7ada18fa49bdd0c4dabe94466fdc03105e9704cc163e37ff8b11c0aa2d2551aa", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099781", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882578", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000000000000000000000", - "digest": "0x067440636507a74b9e44f0abaf93b128c83ad6fdf343241b0720ac7f19169826", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099309", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5ab000000000000000000000000000099f05e", - "digest": "0x7ada18fa49bdd0c4dabe94466fdc03105e9704cc163e37ff8b11c0aa2d2551aa", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099081", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1665470000000", - "assetId": "0x65e788c0998164593ef504dc204533fc7c6bbe604da3fb9c5fb9a70949fb5715", - "contractId": null, - "data": null, - "digest": null, - "gas": "1871173", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000d527000000003b96362000000000000000010000000000000001000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc50000000000000001000000000000000100000183c5bf6b80000000003b963620000000006a91c533", - "digest": "0x8e7dcb8fee1c0891368cd1b586d654f4d0c4c5f7d723f3a0bea906494c75278d", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097689", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000d527000000003b96362000000000000000010000000000000001", - "digest": "0x4289222094fd285170a9da1e41ecd5cf525e589d10b05ea713b7292e0e55ed97", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67093721", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "195754", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "358", - "totalGas": "205582", - "transactionId": "0xcb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x38d167481e263880c306d6a13d76e02578663f28bfcaf6b97143e2232690e808bb32e3fdb55fac03ad0fa7bf94b3b8cd97e58ecbd2299a6ccaa200927649354d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd7", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "303945", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10057", - "utxoId": "0x78b98bd07214c3341a643e993837e5da5aa5f59e9ffd427f2cc9d463531d0a740000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a5", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7002f", - "utxoId": "0xcb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x44b33e344826529afc66207b62609edd3b1fc609538a36c972bc1a5e77a22197", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0x4bd2b82af5201701ad2f622efe2225a3fd1ac61a738d0b3bc6dca1ea2dccce27", - "txPointer": "03bd1aa7000c", - "utxoId": "0xa1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a70001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc4fe52455d8e546be6e42f7e86dfa2ce5e0432cc8605128a25637d9fc2f33551", - "contractId": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "stateRoot": "0x0b73b239e32ec001ac9f20e7ffc114d8a42edef7efa44c26467b8a980a6ccd98", - "txPointer": "03bd1aa7000c", - "utxoId": "0xa1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a70003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "303583", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb1a889bd8e4d7551b7fe9236c222b8b3d5404e3ab1dafee20c8563e4aaa6a56a", - "inputIndex": "2", - "stateRoot": "0x8a23aa2bc976246006861bdc395227ff5719f3a6d0b6e579e6eea3ee3cada655" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x80f1040737d4bef2bcd9e1cc1df18cb760d94daef54e145a2c93df1958446ade", - "inputIndex": "3", - "stateRoot": "0x2ce80ec93cfdbc021bc433da253b07fc032d9a78237911b4166fb1b250f4f826" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84800bfaf23955bc4003b94cacc3f63614f8dfa5f4778019f4a2e87c0282a07a23a6000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005b9dc7c31d0c2a3ba1fb8841c985f9c65dfd6f05b0414931cc66668aeaef63e12ddf25bee3e05bf13f68e822532e5074547862be070bce5b268fe98fc456451a00000000000000000000006a91c5ab00000000000000000000000000028d0d0600000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000fe00000237ecd77500000000000000000000000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f7264657200000086570ed7006c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000238463fa400000000000e172d800000000000000003000000000000006400000000000210ac0000000003bd1aab000000000000000078b98bd07214c3341a643e993837e5da5aa5f59e9ffd427f2cc9d463531d0a740000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004a349f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005700000000000000000000000000000000000000000000000000000000000000000000000000000001cb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce0000000000000003045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000002f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a7000000000000000144b33e344826529afc66207b62609edd3b1fc609538a36c972bc1a5e77a221974bd2b82af5201701ad2f622efe2225a3fd1ac61a738d0b3bc6dca1ea2dccce270000000003bd1aa7000000000000000c5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000001a1f52026d24da8ed213f793a2222625e8a94493c0dfb62bd216c4ca9bbfae2a70000000000000003c4fe52455d8e546be6e42f7e86dfa2ce5e0432cc8605128a25637d9fc2f335510b73b239e32ec001ac9f20e7ffc114d8a42edef7efa44c26467b8a980a6ccd980000000003bd1aa7000000000000000c66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004a1dff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002b1a889bd8e4d7551b7fe9236c222b8b3d5404e3ab1dafee20c8563e4aaa6a56a8a23aa2bc976246006861bdc395227ff5719f3a6d0b6e579e6eea3ee3cada6550000000000000001000000000000000380f1040737d4bef2bcd9e1cc1df18cb760d94daef54e145a2c93df1958446ade2ce80ec93cfdbc021bc433da253b07fc032d9a78237911b4166fb1b250f4f82600000000000000401bda0b7c1f1b728e2f66d01fd55248471f2c7f1c1e471f3661dd03c1848b8ef7f2c5b237370f5ca1823fd87be4402934c7a37593dfc701bb6562204695174765", - "receiptsRoot": "0x0bfaf23955bc4003b94cacc3f63614f8dfa5f4778019f4a2e87c0282a07a23a6", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005b9dc7c31d0c2a3ba1fb8841c985f9c65dfd6f05b0414931cc66668aeaef63e12ddf25bee3e05bf13f68e822532e5074547862be070bce5b268fe98fc456451a00000000000000000000006a91c5ab00000000000000000000000000028d0d0600000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000fe00000237ecd77500000000000000000000000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f7264657200000086570ed7006c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000238463fa400000000000e172d800000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000028d0d06", - "digest": "0xe1d7ef75836be63c48b63919f9b0564cfa048c896ca0e41dfa8af9e8330923a9", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5ab00000000000000000000000000028d0d06", - "digest": "0xe52c505612034e93a7e96554195296f022efb20ff4cdc5534bbf1af222fab771", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "1621593456000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000fe00000237ecd7750000000000000000000000000000000003000000006a91c533", - "digest": "0x9b4761c73e0d64599b0456d2943384a5a158c95bc7a6ffcb457d2e299dfc2505", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099866", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099241", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5ab00000000000000000000000000028d0d06", - "digest": "0xe52c505612034e93a7e96554195296f022efb20ff4cdc5534bbf1af222fab771", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099013", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1869644", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000000000000000000000", - "digest": "0x59ecf2f36962ef2a9ec90b6961021042caee97c9fbf3cc61e7799c9eb0d86806", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67098093", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5ab00000000000000000000000000028d0d06", - "digest": "0xe52c505612034e93a7e96554195296f022efb20ff4cdc5534bbf1af222fab771", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097865", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "576986208000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1857370", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000f100000238463fa40000000000000000000000000000000003000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000000000000000000003000000000e172d8000000238463fa400000000006a91c533", - "digest": "0x3d1aca41861c607578c8e48cbf20516f2422bc76268bef6c8becaea15e833550", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67096025", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000f100000238463fa40000000000000000000000000000000003", - "digest": "0xb30c489110d9b5d2b0b6070d043ebb8fa2f7cbc80ceb8493aa2debbf0456150a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67093865", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "197761", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "362", - "totalGas": "207589", - "transactionId": "0x183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd7" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x1bda0b7c1f1b728e2f66d01fd55248471f2c7f1c1e471f3661dd03c1848b8ef7f2c5b237370f5ca1823fd87be4402934c7a37593dfc701bb6562204695174765" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f3", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151780", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10059", - "utxoId": "0x8ac74efe3bf945cec92c8676da2850c8a80205fbf3d704c21fc42c0e2fe8c56c0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x15b1187c06aec3aaac239304991c9466612ba3753b0e82051015b9f387a0c760", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x567d4786bfb955eb320eb703181bf08e62ef5f67b8d48f7f3d2e6c2453d95fd2", - "txPointer": "03bd1aa7002e", - "utxoId": "0x6d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c862880003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd3f67ed4a47abe269afcb4ce6b37d2934a0e01cb3856e48b9e1414e1cc475d6f", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xe87d9418cb397d03522a746c0c21d71f13fb12b62ebbed2ef4f10b2651c98169", - "txPointer": "03bd1aa7002e", - "utxoId": "0x6d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c862880001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70030", - "utxoId": "0x183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd70001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151539", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xdf8a89b13fba5e08bebb1eebea704f164c47ef196949565b564b902b40ce772b", - "inputIndex": "1", - "stateRoot": "0x0843ac89dd09fd70059fcf198c268d9589627b13213e20ab66ebc16aa5125625" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8b125559a9446ed876b233d558429d2f81a917f647d4de9b8d21a781e7a9364d", - "inputIndex": "2", - "stateRoot": "0x2be56e6668c97a6e5bc543073d8bb1c5d026fa18cb700b626f360e9a0a4ae7b3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84803381dc6c4783d74aead2a1467f82495c008208b01ee104d33da2573827d4cd9a00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006877c55c9f6d44c5125c2fdae553f3a52b269351ac9f4b3f57378f7e2e8c407757aa952c2635d416dad08100aa75e64ec4240fef476fd95ad7b6a5aa12a3fd7000000000000000000000006a91c5ab00000000000000000000000000024e03780000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000000c9a6640807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad1b44a00000000c9a664080000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000008ac74efe3bf945cec92c8676da2850c8a80205fbf3d704c21fc42c0e2fe8c56c0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000250e4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000059000000000000000000000000000000000000000000000000000000000000000000000000000000016d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c86288000000000000000315b1187c06aec3aaac239304991c9466612ba3753b0e82051015b9f387a0c760567d4786bfb955eb320eb703181bf08e62ef5f67b8d48f7f3d2e6c2453d95fd20000000003bd1aa7000000000000002ec46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000016d89d128a9c8fa1a99ead96f4fbed5bf478a18f482339b1d7ede503424c862880000000000000001d3f67ed4a47abe269afcb4ce6b37d2934a0e01cb3856e48b9e1414e1cc475d6fe87d9418cb397d03522a746c0c21d71f13fb12b62ebbed2ef4f10b2651c981690000000003bd1aa7000000000000002ef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd7000000000000000102cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024ff3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001df8a89b13fba5e08bebb1eebea704f164c47ef196949565b564b902b40ce772b0843ac89dd09fd70059fcf198c268d9589627b13213e20ab66ebc16aa5125625000000000000000100000000000000028b125559a9446ed876b233d558429d2f81a917f647d4de9b8d21a781e7a9364d2be56e6668c97a6e5bc543073d8bb1c5d026fa18cb700b626f360e9a0a4ae7b300000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f6ea0e72af89ca4367abe122e2d8a1253724615c940651fc9896fd6b7bb140da1c675cc682843c1d14a2d3773f94995e7a25be5005b8b7658fac74d8ad7d3088", - "receiptsRoot": "0x3381dc6c4783d74aead2a1467f82495c008208b01ee104d33da2573827d4cd9a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006877c55c9f6d44c5125c2fdae553f3a52b269351ac9f4b3f57378f7e2e8c407757aa952c2635d416dad08100aa75e64ec4240fef476fd95ad7b6a5aa12a3fd7000000000000000000000006a91c5ab00000000000000000000000000024e03780000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000000c9a6640807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad1b44a00000000c9a6640800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e0378", - "digest": "0x3621102fb9303ed0b4e91b8fd54ffe78c0e78eea53e007c30d9bcde600464e52", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0378", - "digest": "0xcfe4f66349adf98c2d1a06efd26aef0d47592105ce5f9dd957ff43f799903522", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0378", - "digest": "0xcfe4f66349adf98c2d1a06efd26aef0d47592105ce5f9dd957ff43f799903522", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "54130000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005b00000002ad1b44a0000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000100000000000000010000000c9a66408000000002ad1b44a0000000006a91c533", - "digest": "0xc816fd02d853768962e104f9f4a637efaa9cc9de2e1009b07af6d3818561e3dd", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005b00000002ad1b44a000000000000000010000000000000001", - "digest": "0xabdcaa46955494e62841ccc7ed613565e68ce056de357a5e658c7ccd2d5f521d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128487", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "241", - "totalGas": "138108", - "transactionId": "0x8fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f3" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf6ea0e72af89ca4367abe122e2d8a1253724615c940651fc9896fd6b7bb140da1c675cc682843c1d14a2d3773f94995e7a25be5005b8b7658fac74d8ad7d3088" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae30", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153441", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1005a", - "utxoId": "0xdcf039fa9e2725d37ccad3cf6ddb6d27cc22c3e5930e64912945a2a82ed01fca0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdf8a89b13fba5e08bebb1eebea704f164c47ef196949565b564b902b40ce772b", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xb66f729b32154b1f6c75fd8fab0cb3d9cfd332df329f95a9d3b58b3cae731e5d", - "txPointer": "03bd1aa70031", - "utxoId": "0x8fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f30001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70031", - "utxoId": "0x8fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f30003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8b125559a9446ed876b233d558429d2f81a917f647d4de9b8d21a781e7a9364d", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0xdbe269d40a90b897adbcce253cde2f23568caef719cf523cea0a307748b2dc76", - "txPointer": "03bd1aa70031", - "utxoId": "0x8fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f30002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153200", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xae391677fafc8ab69092d5542dbc9e851d4af3c2890c7fc51760d7937269b6dd", - "inputIndex": "1", - "stateRoot": "0xf0f124196fe252c93cc81666bb2b2eaebe9c54a553390743b1d335b0c25dc9e5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf69c6a4bdcb7281d7f50af223688131a6623673eab68ffc3488ff4dc6cadcf36", - "inputIndex": "3", - "stateRoot": "0xcd327f00160ef96b4b45706a8a5267649fea144ceb343a941ad2ab7d390b41e5" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b902fa1ea3bfb3d12778a19f94b5e67eb9c3e03e4808525ad9265dd7efb420dd00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000fd5d1372dfd1b892359d896a20bffa8f887bc01a2c45de58af82a8f2fc827184b3838b9283c24d73ce3f0e6362bfcb67f6429a04ff794cedf992eee46023208e00000000000000000000006a91c5ab00000000000000000000000000024e03790000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000000220c955007ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad07e3b00000000220c95500000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000dcf039fa9e2725d37ccad3cf6ddb6d27cc22c3e5930e64912945a2a82ed01fca0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025761f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005a000000000000000000000000000000000000000000000000000000000000000000000000000000018fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f30000000000000001df8a89b13fba5e08bebb1eebea704f164c47ef196949565b564b902b40ce772bb66f729b32154b1f6c75fd8fab0cb3d9cfd332df329f95a9d3b58b3cae731e5d0000000003bd1aa70000000000000031c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000018fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f3000000000000000302cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018fb000428069cc67b1a0acaa67d9a54e0202dc6ee4a28646595063469f6556f300000000000000028b125559a9446ed876b233d558429d2f81a917f647d4de9b8d21a781e7a9364ddbe269d40a90b897adbcce253cde2f23568caef719cf523cea0a307748b2dc760000000003bd1aa70000000000000031f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025670f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001ae391677fafc8ab69092d5542dbc9e851d4af3c2890c7fc51760d7937269b6ddf0f124196fe252c93cc81666bb2b2eaebe9c54a553390743b1d335b0c25dc9e5000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003f69c6a4bdcb7281d7f50af223688131a6623673eab68ffc3488ff4dc6cadcf36cd327f00160ef96b4b45706a8a5267649fea144ceb343a941ad2ab7d390b41e50000000000000040f80fc0d42e0cf8c46b8769d34959bea9f4ae3bfbef20f9d9a6f1acb092289f7990c22e2af71e74e585056d5239076c2013aa4d9d9deb00f294fdf64feae8a9af", - "receiptsRoot": "0xb902fa1ea3bfb3d12778a19f94b5e67eb9c3e03e4808525ad9265dd7efb420dd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000fd5d1372dfd1b892359d896a20bffa8f887bc01a2c45de58af82a8f2fc827184b3838b9283c24d73ce3f0e6362bfcb67f6429a04ff794cedf992eee46023208e00000000000000000000006a91c5ab00000000000000000000000000024e03790000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000000220c955007ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad07e3b00000000220c955000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e0379", - "digest": "0xffc25a7ec3de83286e28515ba674fc02a6cfe3ff734801990ea29a8551254e38", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0379", - "digest": "0x0d8e7c51be7f986aeb59e7542d1d21cbb6dbdb96459e913058a8a84a32d9a786", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0379", - "digest": "0x0d8e7c51be7f986aeb59e7542d1d21cbb6dbdb96459e913058a8a84a32d9a786", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "9140000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006600000002ad07e3b0000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000100000000000000010000000220c9550000000002ad07e3b0000000006a91c533", - "digest": "0x6da98240a767fadd2ce50854e098c4d21464adcf111a2034975fd27f5ebb995e", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006600000002ad07e3b000000000000000010000000000000001", - "digest": "0x248a46dd9e4ed8882be44ef7b467b6026eacab88de5e9162435362c2f4c06395", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099606", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128543", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "241", - "totalGas": "138164", - "transactionId": "0x650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae30" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xf80fc0d42e0cf8c46b8769d34959bea9f4ae3bfbef20f9d9a6f1acb092289f7990c22e2af71e74e585056d5239076c2013aa4d9d9deb00f294fdf64feae8a9af" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x3e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce6", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "296366", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10058", - "utxoId": "0x3480e4c1af9be57691aef21a81176f186128bd70932c6a74c5db889566d8f37e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2e50bcfab196d308b7a36cdabfbe6ea6fa8e0512a709849445cefa71b742d6ba", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x0807da47d276aa28c9f1bd3211f5f0fee30df1ed8ea74f6e70256ebed9fd5d32", - "txPointer": "03bd1aa70032", - "utxoId": "0x650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae300003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70032", - "utxoId": "0x650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae300002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0f7425bd365285371358e693900a52e8bb8650516cd72bae62e45855a3ed558c", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xa3b976de3a3a2f470d9afc3edfcbc1c4200cba6656a93fbce511fd077c56250d", - "txPointer": "03bd1aa70032", - "utxoId": "0x650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae300001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "296125", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa53ab52cf2f877aaace76092abb1ea72b71731e2242045b78fc64351bec51b56", - "inputIndex": "1", - "stateRoot": "0x365589b1fdf59bf548c1f04bbfa280319195132f1986c94aa343a4d507b0ece9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x41e993c6c2aa54d143f8e27be1d8e5e0d79424317d40a0deb1f0232889ff4770", - "inputIndex": "3", - "stateRoot": "0xa9f92d776fb0733f5674c529aa227e810052b6791377b07d306b6d6f1e207547" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480cd5f8a5b23bdd60848e7429ac6ab54b5e3db9f61246aec76fc926cc0c8e2261c00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005eb90661cb1c099888734a30fd1ed9f3498857e3268255c6c60059321a13deca49f753ab12151b407d97c3fdc11ef8f881410282b460a5c1f9d8c28c1683aea300000000000000000000006a91c5ab00000000000000000000000000024e03770000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000002a632757086c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac9d892000000003b0bbce80000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000003480e4c1af9be57691aef21a81176f186128bd70932c6a74c5db889566d8f37e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000485aef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005800000000000000000000000000000000000000000000000000000000000000000000000000000001650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae3000000000000000032e50bcfab196d308b7a36cdabfbe6ea6fa8e0512a709849445cefa71b742d6ba0807da47d276aa28c9f1bd3211f5f0fee30df1ed8ea74f6e70256ebed9fd5d320000000003bd1aa70000000000000032f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae30000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001650461841f33f4415e5518a315cc2101a9ef54ce8d609d4cfae5a74db5c1ae3000000000000000010f7425bd365285371358e693900a52e8bb8650516cd72bae62e45855a3ed558ca3b976de3a3a2f470d9afc3edfcbc1c4200cba6656a93fbce511fd077c56250d0000000003bd1aa70000000000000032c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000484bdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001a53ab52cf2f877aaace76092abb1ea72b71731e2242045b78fc64351bec51b56365589b1fdf59bf548c1f04bbfa280319195132f1986c94aa343a4d507b0ece900000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000341e993c6c2aa54d143f8e27be1d8e5e0d79424317d40a0deb1f0232889ff4770a9f92d776fb0733f5674c529aa227e810052b6791377b07d306b6d6f1e2075470000000000000040106e5814a1baedd15b9c180985429452410e428a7e9f89ce458abc7a6b8025723449585152319f42a16a14d74194c50a6f8393ecf2d493ff6ab640c1c5f239bb", - "receiptsRoot": "0xcd5f8a5b23bdd60848e7429ac6ab54b5e3db9f61246aec76fc926cc0c8e2261c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005eb90661cb1c099888734a30fd1ed9f3498857e3268255c6c60059321a13deca49f753ab12151b407d97c3fdc11ef8f881410282b460a5c1f9d8c28c1683aea300000000000000000000006a91c5ab00000000000000000000000000024e03770000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f726465720000002a632757086c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac9d892000000003b0bbce800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e0377", - "digest": "0x616c62b74a56fa6d80555bfb3cdbced753cd9168c9c1e5400385cd59ddb543f9", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0377", - "digest": "0x767088069a1e06319781492d6006270400ba9d499a78540bfb7b6158b07ce4c6", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e0377", - "digest": "0x767088069a1e06319781492d6006270400ba9d499a78540bfb7b6158b07ce4c6", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "182052149000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f00000002ac9d8920000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000000000000000000000100000003b0bbce8000000002ac9d8920000000006a91c533", - "digest": "0x79e5e6d8e683e62c12a9b8e3181eb141ffa7c0163c984eef9a69701f42970f9e", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005f00000002ac9d892000000000000000000000000000000001", - "digest": "0xf6ba8ed234f5b101bc1d8bb7fbed3695956bade8e46bfc45a43343bf4b286324", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099670", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "128425", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "241", - "totalGas": "138046", - "transactionId": "0x3e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce6" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x106e5814a1baedd15b9c180985429452410e428a7e9f89ce458abc7a6b8025723449585152319f42a16a14d74194c50a6f8393ecf2d493ff6ab640c1c5f239bb" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f4", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "295922", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1005c", - "utxoId": "0xa24d62ec22e91c5041c3a3c29feaace5deba7e14308fc202ed2de96fb67ecfc10000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa53ab52cf2f877aaace76092abb1ea72b71731e2242045b78fc64351bec51b56", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x12b2b7ba242649ea12d50c2b2ae5ad755cd35ad10975d641449e7d323490bed3", - "txPointer": "03bd1aa70033", - "utxoId": "0x3e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce60001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x41e993c6c2aa54d143f8e27be1d8e5e0d79424317d40a0deb1f0232889ff4770", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x26b59ae060c71b4ae496b94efec9ebff2e7a27d8de76bcd108c67dcc043930dc", - "txPointer": "03bd1aa70033", - "utxoId": "0x3e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce60003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70033", - "utxoId": "0x3e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce60002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "295689", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x36399964892f466ca180b878bd5d05a23dffa90de463b91d992ff0242cf6af9b", - "inputIndex": "1", - "stateRoot": "0xcdaa28a0d52965cdf9b5433dffdc0759cea674e26f2ad18ae9fe35f29c6aecd4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb858978fc76edae1ed29099115eeac2f03594c33f44550bc6e6a6bdc25680100", - "inputIndex": "2", - "stateRoot": "0xc435029295f7b3787e4fd1ec80c324ed20e40d33d66a79e14e87244cece1b123" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480102a708bc8058c7299d92d3190a9d97a20b95b18f967c2f5e1759268048495110000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f77301cbf444c48cb399f74661d9984ede6268de00ab75e56cbc9e67448352f6b173e9e64e6d0cc55dc4b7d0d1e9ce5ae1861bd9304c5b94cdecce0a97a97e7700000000000000000000006a91c5ab00000000000000000000000000024e037b0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006400000002ac72336000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aab0000000000000000a24d62ec22e91c5041c3a3c29feaace5deba7e14308fc202ed2de96fb67ecfc10000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000483f2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005c000000000000000000000000000000000000000000000000000000000000000000000000000000013e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce60000000000000001a53ab52cf2f877aaace76092abb1ea72b71731e2242045b78fc64351bec51b5612b2b7ba242649ea12d50c2b2ae5ad755cd35ad10975d641449e7d323490bed30000000003bd1aa70000000000000033f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000013e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce6000000000000000341e993c6c2aa54d143f8e27be1d8e5e0d79424317d40a0deb1f0232889ff477026b59ae060c71b4ae496b94efec9ebff2e7a27d8de76bcd108c67dcc043930dc0000000003bd1aa70000000000000033c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000013e0f0f175a2ae57ef4d4151d74848302af5da86f2ccdeeeacb29a92863c1bce60000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048309f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000136399964892f466ca180b878bd5d05a23dffa90de463b91d992ff0242cf6af9bcdaa28a0d52965cdf9b5433dffdc0759cea674e26f2ad18ae9fe35f29c6aecd400000000000000010000000000000002b858978fc76edae1ed29099115eeac2f03594c33f44550bc6e6a6bdc25680100c435029295f7b3787e4fd1ec80c324ed20e40d33d66a79e14e87244cece1b1230000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004024fe67d32c0ba07452546c8dc6563dc00818616b6068beb257f708a02e5419f915ccf606f4e0ac3ef957287660b21564d8526271ad1dcdab0e45d59213047d1b", - "receiptsRoot": "0x102a708bc8058c7299d92d3190a9d97a20b95b18f967c2f5e175926804849511", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f77301cbf444c48cb399f74661d9984ede6268de00ab75e56cbc9e67448352f6b173e9e64e6d0cc55dc4b7d0d1e9ce5ae1861bd9304c5b94cdecce0a97a97e7700000000000000000000006a91c5ab00000000000000000000000000024e037b0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006400000002ac72336000000000000000000000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e037b", - "digest": "0x19ce3f69b957ef8b3d813f4dabc84b274e828fc5c52badd5a595374ac534da05", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037b", - "digest": "0x75fcd796f7ded64d23ab30345171fd4868bf86414772082f0d29b545a38e0a8d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "1668953754000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006400000002ac72336000000000000000000000000000000001000000006a91c533", - "digest": "0x611fbea69447c4112989f6f51cc5b6d9887944cb76996589843df8093f0b7a46", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101058", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100433", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037b", - "digest": "0x75fcd796f7ded64d23ab30345171fd4868bf86414772082f0d29b545a38e0a8d", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100205", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884398", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099733", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "124038", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "233", - "totalGas": "133670", - "transactionId": "0x863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f4" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x24fe67d32c0ba07452546c8dc6563dc00818616b6068beb257f708a02e5419f915ccf606f4e0ac3ef957287660b21564d8526271ad1dcdab0e45d59213047d1b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149490", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1005b", - "utxoId": "0xa9578e6ee44af66bce232c99696d2b1509a70775a7805547d4b6b9871133db550000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf69c6a4bdcb7281d7f50af223688131a6623673eab68ffc3488ff4dc6cadcf36", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x72c2f35bb9715e3e6aa402f559d2976bdfe478aac62abeb9c46b12cbbce0898b", - "txPointer": "03bd1aa70034", - "utxoId": "0x863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f40001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xae391677fafc8ab69092d5542dbc9e851d4af3c2890c7fc51760d7937269b6dd", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x06509d4981346028ad23abbd04ba031ef33392bcf41c8298e29696ef0b543049", - "txPointer": "03bd1aa70034", - "utxoId": "0x863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f40002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70034", - "utxoId": "0x863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f40003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149139", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3f6ba58a7980a49ed9d15c6c2af667526521f6e59da774fc74e0ee25de634b67", - "inputIndex": "1", - "stateRoot": "0x47dc71543c0e6808c50ba3f6aaa8aefb086ceec4a7268e71f76fbc4551ddd424" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbe16edbaf490d8382a23e7f3b5f29b584b9d7c418f7234bfd6afc0c507bc729a", - "inputIndex": "2", - "stateRoot": "0x4bf83513f76c120de21afc678e4442679ca32e272b776673e57245231a668128" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480a5281b49759d708aa6a074bb69f8ab157bca6998269ff4f946b9bc78c2f39878000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008a5d6d55c0e137c6ebf8e4a1c90a263be10a9c9794599079b1dc9b9be7a6dd5fdf262764cd10965a51f0123af4eef8f2c154683880b098c93da5e13b1907e6d700000000000000000000006a91c5ab00000000000000000000000000024e037a0000000000000003f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002f00000002ad7e4c3000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000212e4207807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad6768d0000000212e4207800000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000a9578e6ee44af66bce232c99696d2b1509a70775a7805547d4b6b9871133db550000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000247f2f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005b00000000000000000000000000000000000000000000000000000000000000000000000000000001863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f40000000000000001f69c6a4bdcb7281d7f50af223688131a6623673eab68ffc3488ff4dc6cadcf3672c2f35bb9715e3e6aa402f559d2976bdfe478aac62abeb9c46b12cbbce0898b0000000003bd1aa70000000000000034f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000001863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f40000000000000002ae391677fafc8ab69092d5542dbc9e851d4af3c2890c7fc51760d7937269b6dd06509d4981346028ad23abbd04ba031ef33392bcf41c8298e29696ef0b5430490000000003bd1aa70000000000000034c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001863aca4a8f03caad77f2dde2e851b2dafe38f5c76c0972982edfe25e1555c0f4000000000000000302cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024693f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000013f6ba58a7980a49ed9d15c6c2af667526521f6e59da774fc74e0ee25de634b6747dc71543c0e6808c50ba3f6aaa8aefb086ceec4a7268e71f76fbc4551ddd42400000000000000010000000000000002be16edbaf490d8382a23e7f3b5f29b584b9d7c418f7234bfd6afc0c507bc729a4bf83513f76c120de21afc678e4442679ca32e272b776673e57245231a668128000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400be0800a5f9609d7a9bddb9adf88390c44974786a08e027aa52e2275713b666dd1d32cce759c72b5f06752c1b7b42568b73dadc7856d730ff3c037d77a92ff05", - "receiptsRoot": "0xa5281b49759d708aa6a074bb69f8ab157bca6998269ff4f946b9bc78c2f39878", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008a5d6d55c0e137c6ebf8e4a1c90a263be10a9c9794599079b1dc9b9be7a6dd5fdf262764cd10965a51f0123af4eef8f2c154683880b098c93da5e13b1907e6d700000000000000000000006a91c5ab00000000000000000000000000024e037a0000000000000003f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002f00000002ad7e4c3000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000212e4207807ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58ffffffffffffffff0000000000000001000000000000001800000002ad6768d0000000212e4207800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e037a", - "digest": "0x648de372ccb57d7d1bd96587df5e4e90bc9437b5e30f1bf01cee98448f99d4f7", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037a", - "digest": "0x076ba951a3b0f97e8ceb51034445df7d85ad774921ee3751bc8bb537e0fa37a2", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "102820000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002f00000002ad7e4c3000000000000000010000000000000001000000006a91c533", - "digest": "0xb293d00ea071768a8cb40db318ed7a8aa52fee338f05b89e80eb1af4428a76bf", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100666", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100041", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037a", - "digest": "0x076ba951a3b0f97e8ceb51034445df7d85ad774921ee3751bc8bb537e0fa37a2", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099813", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877964", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099341", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037a", - "digest": "0x076ba951a3b0f97e8ceb51034445df7d85ad774921ee3751bc8bb537e0fa37a2", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099113", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "142510000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": "1866559", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002200000002ad6768d0000000000000000100000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000010000000000000001000000212e42078000000002ad6768d0000000006a91c533", - "digest": "0xefd4b79879fd0d99deeedf4ab00669992be6a1f3899f003fb9c3097c9a4e39d0", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097721", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002200000002ad6768d000000000000000010000000000000001", - "digest": "0x1941653d5ae1f6d1e8846933e38dc68da48c25d18efabbf9c71df1bb2d128150", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67095033", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "191824", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "351", - "totalGas": "201652", - "transactionId": "0x908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x0be0800a5f9609d7a9bddb9adf88390c44974786a08e027aa52e2275713b666dd1d32cce759c72b5f06752c1b7b42568b73dadc7856d730ff3c037d77a92ff05" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x3cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "335954", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1005d", - "utxoId": "0xfd7518587628fd60f92b2cd8eab43fb7fd24b22ad6f71b4b1e5d89453afc096f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70035", - "utxoId": "0x908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd62410e6e6e287eed1067f56c3eeb5d5a8d4e5e76713c9bd6bc0af184fdef499", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xe1711f8d2d1fc864fc9b53f2b3bf4b170a34feba09f13ae2d7407ecec66bf694", - "txPointer": "03bd1aa70020", - "utxoId": "0xb487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d98082320001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x14d0c488dbb12d03c1da382dbd6278509336c77eda1762ff0ec923b36b768c6e", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xe95cfae1a42add2a5dcb01d7e19659b0d1daf5bde039a5da9e4f87e1007d06d9", - "txPointer": "03bd1aa70020", - "utxoId": "0xb487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d98082320002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "335436", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc1ef95b705aeda3a1b5f317fc223f894d536c596fc240d4afb5e7027d0fbbec8", - "inputIndex": "2", - "stateRoot": "0x898dac8695b9baf2884c4bcdf784de5ff71307fc28ea2d301f639ba8ccd4dd85" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x473685898b966c044a038df94c2e03fd66b6936dddd5fee5ac2ec6d2a5abc888", - "inputIndex": "3", - "stateRoot": "0x7c7ca4ff9793bc9adc803293103be67ccc83b17f57435ce8b8173db3bd6cfa4c" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40f548d1b6afec893417ffa10a887e7c993c2259179b60ea8f9f862bf634188c680000000000000018000000000000035c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000004e8c19d72f50a6330db19f7c1f9b82eaad9edccba28c7b3ee5664deb84019f05d9dcaf958b29b91fc1f02485b87ac93b63285aceda03688759a52377b0d2ca5b00000000000000000000006a91c5ab000000000000000000000000000a759f1d0000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002b0000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004b0000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000000489ad740e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411a6d6090000000000489ad740000000000000000300000000000000000000006400000000000210ac0000000003bd1aab0000000000000000fd7518587628fd60f92b2cd8eab43fb7fd24b22ad6f71b4b1e5d89453afc096f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000052052f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005d00000000000000000000000000000000000000000000000000000000000000000000000000000001908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb00000000000000034a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001b487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d98082320000000000000001d62410e6e6e287eed1067f56c3eeb5d5a8d4e5e76713c9bd6bc0af184fdef499e1711f8d2d1fc864fc9b53f2b3bf4b170a34feba09f13ae2d7407ecec66bf6940000000003bd1aa700000000000000209423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001b487158fb50752060f7ee0e01c1415d1c6059fac5a11f1931c7f62c3d9808232000000000000000214d0c488dbb12d03c1da382dbd6278509336c77eda1762ff0ec923b36b768c6ee95cfae1a42add2a5dcb01d7e19659b0d1daf5bde039a5da9e4f87e1007d06d90000000003bd1aa70000000000000020f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000051e4cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c1ef95b705aeda3a1b5f317fc223f894d536c596fc240d4afb5e7027d0fbbec8898dac8695b9baf2884c4bcdf784de5ff71307fc28ea2d301f639ba8ccd4dd8500000000000000010000000000000003473685898b966c044a038df94c2e03fd66b6936dddd5fee5ac2ec6d2a5abc8887c7ca4ff9793bc9adc803293103be67ccc83b17f57435ce8b8173db3bd6cfa4c0000000000000040ad529d9c6decef8aa9533f18528622c95783834db27dca05901542d84a749b1ba6e23b0d626fd168bc9d5b3f6f4c2c0d3dcd2e2e3c42dd3a8db93317ecef2650", - "receiptsRoot": "0xf548d1b6afec893417ffa10a887e7c993c2259179b60ea8f9f862bf634188c68", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000004e8c19d72f50a6330db19f7c1f9b82eaad9edccba28c7b3ee5664deb84019f05d9dcaf958b29b91fc1f02485b87ac93b63285aceda03688759a52377b0d2ca5b00000000000000000000006a91c5ab000000000000000000000000000a759f1d0000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002b0000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004b0000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f7264657200000000489ad740e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411a6d6090000000000489ad7400000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12920", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12920", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000a759f1d", - "digest": "0x09d8eb817c6c615d75ba73ee99c0bfb898ae81f96aa2d3c71561df6ebf18c6ff", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147728", - "ptr": "67107518", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1d", - "digest": "0x4a754f65127a4e48101b5178388fb6baccfe14c7fdaa24e18bd717540909f594", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67105234", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4961322", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108172", - "param2": "67108140", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "5591887500000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408384", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002b0000041191f9758000000000000000000000000000000003000000006a91c533", - "digest": "0xdb2a04fef309243a265627cff66c4a8dfbb9cedaf4437a24778671fc930a0044", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402732", - "ptr": "67100066", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379900", - "ptr": "67099441", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1d", - "digest": "0x4a754f65127a4e48101b5178388fb6baccfe14c7fdaa24e18bd717540909f594", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67099213", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4878248", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108120", - "param2": "67108088", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "168700000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408384", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004b0000041196be298000000000000000010000000000000003000000006a91c533", - "digest": "0xf1c3cc2e15d4d49bc4e5b36eb5581c3c8467fc3c04b5c078e8531ba3b53bec32", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402732", - "ptr": "67094093", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379900", - "ptr": "67093468", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1d", - "digest": "0x4a754f65127a4e48101b5178388fb6baccfe14c7fdaa24e18bd717540909f594", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67093240", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4800520", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108066", - "param2": "67108026", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462632", - "ptr": "67092768", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375628", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1d", - "digest": "0x4a754f65127a4e48101b5178388fb6baccfe14c7fdaa24e18bd717540909f594", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67092540", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1218107200", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4788992", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108006", - "param2": "67107982", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003500000411a6d609000000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001000000000000000300000000489ad74000000411a6d60900000000006a91c533", - "digest": "0x673d677d39703280f42acd691b66421309aef96179988ce2dced1bdb1f3660ad", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433364", - "ptr": "67091148", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003500000411a6d6090000000000000000010000000000000003", - "digest": "0x154eebd4750a10b406dac48c5c7876375b3c30746d1ad9baeca4bad2c37b31ae", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379596", - "ptr": "67086844", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57532", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "287359", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "518", - "totalGas": "297404", - "transactionId": "0x3cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xad529d9c6decef8aa9533f18528622c95783834db27dca05901542d84a749b1ba6e23b0d626fd168bc9d5b3f6f4c2c0d3dcd2e2e3c42dd3a8db93317ecef2650" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154281", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1005e", - "utxoId": "0xec2d9caead808a022ad2d33355ae0f8a8c5228466ec4281ab283dd469e4642d20000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc1ef95b705aeda3a1b5f317fc223f894d536c596fc240d4afb5e7027d0fbbec8", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0xe8d14b7864e1e05cd16cdf58a1a447ae11ba2f3c0fffad3797fc440e8c709c6b", - "txPointer": "03bd1aa70036", - "utxoId": "0x3cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70036", - "utxoId": "0x3cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x473685898b966c044a038df94c2e03fd66b6936dddd5fee5ac2ec6d2a5abc888", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0xdaf6a3dc4e3a439a8e45a1395b2f5b7d3f9366598514e197c0cc0c03e00a97cc", - "txPointer": "03bd1aa70036", - "utxoId": "0x3cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153845", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2e27acd3a55013f6f3db38953d9331067bb2cc558d71b385013fcd7fd413a7b8", - "inputIndex": "1", - "stateRoot": "0x362c338717c2357f3fccac8d965d354ff1c45aa30d0d54e6196371c725dd48d4" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd84983f4f9b0f1636d18459b9f1af1cefc8e75000c407c611c14dfb95fe0902a", - "inputIndex": "3", - "stateRoot": "0x4f5e4cda2e6b2f2cf56f99e77fe5ae9ca81003fcdd02e446026fd71f728ea89b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b40c44ca25e4685d7f6a96076a30ed2f72e8a30ae168ec4f1d49fc9b5d0b9d6c7f0000000000000001800000000000003f0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000192eb2857f86b4b23d474483cd8f7e28ead0bc6186d5a680d9b207339d30057012215c518a26a32a1505db14204bf1e03fd399f261f36eb9aefe2630b282258e00000000000000000000006a91c5ab000000000000000000000000000a759f1e0000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002b0000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004b0000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000001b7e17345986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000411a178be8000000000192bc9600000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411a63d7280000000004a817c800000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000ec2d9caead808a022ad2d33355ae0f8a8c5228466ec4281ab283dd469e4642d20000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025aa9f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005e000000000000000000000000000000000000000000000000000000000000000000000000000000013cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f0000000000000002c1ef95b705aeda3a1b5f317fc223f894d536c596fc240d4afb5e7027d0fbbec8e8d14b7864e1e05cd16cdf58a1a447ae11ba2f3c0fffad3797fc440e8c709c6b0000000003bd1aa700000000000000369423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000013cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f00000000000000014a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000013cb546c49d219b348deeede6957320c5c085a4b1934553e43023f30a36daff9f0000000000000003473685898b966c044a038df94c2e03fd66b6936dddd5fee5ac2ec6d2a5abc888daf6a3dc4e3a439a8e45a1395b2f5b7d3f9366598514e197c0cc0c03e00a97cc0000000003bd1aa70000000000000036f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000258f5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000012e27acd3a55013f6f3db38953d9331067bb2cc558d71b385013fcd7fd413a7b8362c338717c2357f3fccac8d965d354ff1c45aa30d0d54e6196371c725dd48d4000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003d84983f4f9b0f1636d18459b9f1af1cefc8e75000c407c611c14dfb95fe0902a4f5e4cda2e6b2f2cf56f99e77fe5ae9ca81003fcdd02e446026fd71f728ea89b0000000000000040addd82211c7c7898d72c6db735d571d9081421821f1367e64456cc8f140973065f9f7a69f9c46bf7ea36aaba7c3babeff62dcf3a1c63afb5a8ac771d5a50a029", - "receiptsRoot": "0xc44ca25e4685d7f6a96076a30ed2f72e8a30ae168ec4f1d49fc9b5d0b9d6c7f0", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000192eb2857f86b4b23d474483cd8f7e28ead0bc6186d5a680d9b207339d30057012215c518a26a32a1505db14204bf1e03fd399f261f36eb9aefe2630b282258e00000000000000000000006a91c5ab000000000000000000000000000a759f1e0000000000000005f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002b0000041191f9758000000000000000000000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004b0000041196be298000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000001b7e17345986c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000411a178be8000000000192bc9600000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411a63d7280000000004a817c800000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "13064", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "13064", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000a759f1e", - "digest": "0x67ec1ea86b8656496c70568033d2b1fbcb964e1321f3731f8638efb87966b5e2", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147872", - "ptr": "67107338", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1e", - "digest": "0xf25edeabe7d7a8ec6795b8c369d84417f35e13d8ebd0649195c728ba4ba99de0", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67104906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4959672", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67108036", - "param2": "67108004", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380044", - "ptr": "67104489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1e", - "digest": "0xf25edeabe7d7a8ec6795b8c369d84417f35e13d8ebd0649195c728ba4ba99de0", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67104261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4944954", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107984", - "param2": "67107952", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00", - "digest": "0x6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "380044", - "ptr": "67103844", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1e", - "digest": "0xf25edeabe7d7a8ec6795b8c369d84417f35e13d8ebd0649195c728ba4ba99de0", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67103616", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4932350", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107930", - "param2": "67107890", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462776", - "ptr": "67103144", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375772", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1e", - "digest": "0xf25edeabe7d7a8ec6795b8c369d84417f35e13d8ebd0649195c728ba4ba99de0", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67102916", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1889273071000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "4920238", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107870", - "param2": "67107846", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a00000411a178be800000000000000000000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000000000000000000000300000000192bc96000000411a178be80000000006a91c533", - "digest": "0xddbdc02ae0f21459e37b1f8f8f2eaf4ad938a1e67eaf5b87cedd1e410380078e", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433508", - "ptr": "67101524", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a00000411a178be8000000000000000000000000000000003", - "digest": "0xa2e45be1800dea8e1ba77ca1ec9482c420b0ec733e4cae84f2aedcfc14707ef3", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67097172", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1e", - "digest": "0xf25edeabe7d7a8ec6795b8c369d84417f35e13d8ebd0649195c728ba4ba99de0", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166640", - "ptr": "67096944", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4837201", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306848", - "len": null, - "nonce": null, - "param1": "67107826", - "param2": "67107802", - "pc": "306848", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002600000411a63d72800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000010000000000000003000000004a817c8000000411a63d7280000000006a91c533", - "digest": "0x83fbb06684a9c870f529eb260630b3d21f8ffa538e0b1153ec6fae6b9ca8713e", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433508", - "ptr": "67095552", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002600000411a63d728000000000000000010000000000000003", - "digest": "0xb51e512958202d379f9fa4828d554d9b89b7916d9e4f10e4b66b631d81201369", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306848", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379740", - "ptr": "67091248", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "13064", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57676", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "239971", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "436", - "totalGas": "250212", - "transactionId": "0x745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xaddd82211c7c7898d72c6db735d571d9081421821f1367e64456cc8f140973065f9f7a69f9c46bf7ea36aaba7c3babeff62dcf3a1c63afb5a8ac771d5a50a029" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xb3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a9", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "288866", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1005f", - "utxoId": "0xc7df9bb720ab3a89f45ce602102e31fd8c0136843e16927fac9e86bb39badbce0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70037", - "utxoId": "0x745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf06d9d3e876d928670f6bbf237e443c7d8e7a632d603c07c48248f717aeccff4", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0x6e01b3c358c57d3e1ec4f721e46adaed3d79026dca105cdb46364e613c01f09a", - "txPointer": "03bd1aa70019", - "utxoId": "0x7e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d870003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x74908446930dec3c732afe0a090664939d7df4494690c2a9526abbcaed49a4c7", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x226808c14cf5f04b6934a83c60764dd351c16ec7989a00b3ee8c39f4e6d20533", - "txPointer": "03bd1aa70019", - "utxoId": "0x7e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d870001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "288639", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6c45ba6c5a134094c70636f5f888dbe096c72e543ee0657938dab17045bf32a9", - "inputIndex": "2", - "stateRoot": "0x7e980376424d02779dcd0fd439be52ce94a665300acb2f9a50cf5c1b858b0faf" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x56093e13c0c8372e9995c67c2a3a3e8a30f0596e145500f3e3ea5f5273148a4d", - "inputIndex": "3", - "stateRoot": "0x7526994366cad52cda52235f0ebce31468dd50b12bc3d938c79f8cf8eda04277" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d986a1493d138eb10ddb79e3e32a28042df3233336b943f972a4758ac7fcba480000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006fc62daf65bc8d624a83a09b7b02e6bc41b566d6c35877ea3dc6592f65241318aa3e32373aaf086c21f91d1aac13532ac2d3c80cb3cc951a0fa97ef7c2b0fc3e00000000000000000000006a91c5ab000000000000000000000000000249f4470000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001f0000000017487eb800000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000c7df9bb720ab3a89f45ce602102e31fd8c0136843e16927fac9e86bb39badbce0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000046862f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000005f00000000000000000000000000000000000000000000000000000000000000000000000000000001745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000017e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d870000000000000003f06d9d3e876d928670f6bbf237e443c7d8e7a632d603c07c48248f717aeccff46e01b3c358c57d3e1ec4f721e46adaed3d79026dca105cdb46364e613c01f09a0000000003bd1aa70000000000000019295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000017e6fb3ada7c8169484d1f31b1b6698de97e0b486a3a4754833d45436effb9d87000000000000000174908446930dec3c732afe0a090664939d7df4494690c2a9526abbcaed49a4c7226808c14cf5f04b6934a83c60764dd351c16ec7989a00b3ee8c39f4e6d205330000000003bd1aa700000000000000199789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004677ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000026c45ba6c5a134094c70636f5f888dbe096c72e543ee0657938dab17045bf32a97e980376424d02779dcd0fd439be52ce94a665300acb2f9a50cf5c1b858b0faf0000000000000001000000000000000356093e13c0c8372e9995c67c2a3a3e8a30f0596e145500f3e3ea5f5273148a4d7526994366cad52cda52235f0ebce31468dd50b12bc3d938c79f8cf8eda0427700000000000000403ff85ee9c88fa30dfbc8ba85b28071f759686beae94b860657988f50ab537fa3fc882e05d4f589e37a349cf18066bcc9427940287a8267ae44374260fedd8845", - "receiptsRoot": "0xd986a1493d138eb10ddb79e3e32a28042df3233336b943f972a4758ac7fcba48", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006fc62daf65bc8d624a83a09b7b02e6bc41b566d6c35877ea3dc6592f65241318aa3e32373aaf086c21f91d1aac13532ac2d3c80cb3cc951a0fa97ef7c2b0fc3e00000000000000000000006a91c5ab000000000000000000000000000249f4470000000000000002295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001f0000000017487eb800000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000249f447", - "digest": "0x420deed94cca500ee231004d9257cb90f61f4d1a582348f452be5e651704cc50", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f447", - "digest": "0x57e29819cea0b63777a5b260587f912ac32230096689941541283688ef9cb4b5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "377200000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001f0000000017487eb800000000000000010000000000000001000000006a91c533", - "digest": "0xcafbcf856051b273ec18a9fc03926255e6059df1bc7705bbe434c901251a17b9", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101362", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100737", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f447", - "digest": "0x57e29819cea0b63777a5b260587f912ac32230096689941541283688ef9cb4b5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100509", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1888034", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100037", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "120402", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "227", - "totalGas": "130034", - "transactionId": "0xb3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a9" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3ff85ee9c88fa30dfbc8ba85b28071f759686beae94b860657988f50ab537fa3fc882e05d4f589e37a349cf18066bcc9427940287a8267ae44374260fedd8845" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x5456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed42", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "293449", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10060", - "utxoId": "0x38a888835acfde59b45b022ce922b64bfdc78cb06ec080abaa0804aec9d44c180000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2c7218aaf15115f04cf6abbbff55a5375f45ee50c8aa00097d09ab3be3655877", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xe55dd2f9166be4d3543d76bd1ae820ab56eab00d578372031ddcb451ba8827aa", - "txPointer": "03bd1aa7001c", - "utxoId": "0xbc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x7ef30edfdca440a86583b7882f9fbf5abdd89d6112cb6279060d082f6930826e", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xa577f4b97bceb761d166238cb701cdca9ed49ebb990b14f4d79cae6c4a97270b", - "txPointer": "03bd1aa7001c", - "utxoId": "0xbc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70038", - "utxoId": "0xb3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a90001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "293198", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x59710cca7e7eb63fedf5a85a4fdd4309b5786f0f019dc483d5d8695cda41dbd1", - "inputIndex": "1", - "stateRoot": "0x9188a0d5b176719859143105e1aa1ef1e6f1b7d7ab7e5ee28f3be18b5f3b9bd2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3ae8fbfcc7067b1264c795d4b9091fd28e6d44afa363ee5956aded4bc7e78c1e", - "inputIndex": "2", - "stateRoot": "0x4cff911dc1b9610257ec2bd98a279b099fc89a0f70ce82f42c495ea0270db39d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848048dedeae64e5b9c126c5b40472ad8b28b78e76de204258aafa2e4dfa7aad1bfd0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b58e4a6637e2701dc6677d009b2780d700a9ef7111aea1f6ae2dd4ddd99f5f735f4a339b2d530682d61ad8ea9d328c179902669291273390ec7686c642ff8d5300000000000000000000006a91c5ab000000000000000000000000000313570500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000270000001c99187080000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aab000000000000000038a888835acfde59b45b022ce922b64bfdc78cb06ec080abaa0804aec9d44c180000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000047a49f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000001bc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e00000000000000032c7218aaf15115f04cf6abbbff55a5375f45ee50c8aa00097d09ab3be3655877e55dd2f9166be4d3543d76bd1ae820ab56eab00d578372031ddcb451ba8827aa0000000003bd1aa7000000000000001c8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001bc824d101b697baedcb5543131f3de8e7f8f75f81832b0650aec37e6e42e9c1e00000000000000017ef30edfdca440a86583b7882f9fbf5abdd89d6112cb6279060d082f6930826ea577f4b97bceb761d166238cb701cdca9ed49ebb990b14f4d79cae6c4a97270b0000000003bd1aa7000000000000001cc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001b3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a90000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004794ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000159710cca7e7eb63fedf5a85a4fdd4309b5786f0f019dc483d5d8695cda41dbd19188a0d5b176719859143105e1aa1ef1e6f1b7d7ab7e5ee28f3be18b5f3b9bd2000000000000000100000000000000023ae8fbfcc7067b1264c795d4b9091fd28e6d44afa363ee5956aded4bc7e78c1e4cff911dc1b9610257ec2bd98a279b099fc89a0f70ce82f42c495ea0270db39d00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040641a784f8e241a1d41c4ada6bad424afc119981fe25a4e0113ed6f584e2750e4b9bd0e6b889b43b9a79ac437ae03f28588d6e8ea2eefedda64789834baba1ad0", - "receiptsRoot": "0x48dedeae64e5b9c126c5b40472ad8b28b78e76de204258aafa2e4dfa7aad1bfd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b58e4a6637e2701dc6677d009b2780d700a9ef7111aea1f6ae2dd4ddd99f5f735f4a339b2d530682d61ad8ea9d328c179902669291273390ec7686c642ff8d5300000000000000000000006a91c5ab000000000000000000000000000313570500000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000270000001c99187080000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000003135705", - "digest": "0x12229989e6aecbe6832a9a379c2d493db70a6d19e4fd5bdbf0c5a9dc0940b9db", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135705", - "digest": "0x74e999fa4843baa2890d51cccfca4b79e31f0d003724d657bf2a86cc0d95b619", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "152429051600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000270000001c9918708000000000000000000000000000000001000000006a91c533", - "digest": "0x9e80b6d7d4ad3885ea9f4c851ff65f94c18ab5581aee1af519d82ff28d850b3f", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100130", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099505", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135705", - "digest": "0x74e999fa4843baa2890d51cccfca4b79e31f0d003724d657bf2a86cc0d95b619", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099277", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874015", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098805", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134421", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "251", - "totalGas": "144053", - "transactionId": "0x5456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed42" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x641a784f8e241a1d41c4ada6bad424afc119981fe25a4e0113ed6f584e2750e4b9bd0e6b889b43b9a79ac437ae03f28588d6e8ea2eefedda64789834baba1ad0" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x9980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb69", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149570", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10062", - "utxoId": "0xe5ae855f8a3f7d092ead04ad729ac103d70fda0105bff1d6884a380d72b503e90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x59710cca7e7eb63fedf5a85a4fdd4309b5786f0f019dc483d5d8695cda41dbd1", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x3d830fd21c9162ad6d3bbd1f2db5c44a70f0163fcf1c76c8d69d986c0d6ee235", - "txPointer": "03bd1aa70039", - "utxoId": "0x5456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed420001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70039", - "utxoId": "0x5456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed420003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3ae8fbfcc7067b1264c795d4b9091fd28e6d44afa363ee5956aded4bc7e78c1e", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xbcd19743ed812cceff0a4aa2b2ab8998ffc0c4dc9b89b6f3560b4c91b8e687b4", - "txPointer": "03bd1aa70039", - "utxoId": "0x5456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed420002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149338", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3a32d33325ff3b83a6fba4605d41a0776ef2a4d95e24168ab08676d8d0af74b1", - "inputIndex": "1", - "stateRoot": "0x3686142914d407e80ad839f4467369262c9f1608298eb8e8caf233a7f053cfb8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1493cd3e5b2f2562625a9b6de0b8eb4015c331cbe1cb67a8f8ea3c94cdb96858", - "inputIndex": "3", - "stateRoot": "0x7a3816fc0e6b37f1dba447f67020261cdc6cec5eee32fa3b5f89a5e3bc43343b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848079b2998d2dafa66c49bea6958e3e545df6ffbaed043f2819f65779999d379ca20000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003e2f6c15204bf07bd424d59829af6e651cf65159835a64d052db1390c8095d3d32fadeeac811c01cbfdbbd2feea913b457f0a9b7233ff9ce34502b35725b682400000000000000000000006a91c5ab000000000000000000000000000313570700000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000140000001c959eda20000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000e5ae855f8a3f7d092ead04ad729ac103d70fda0105bff1d6884a380d72b503e90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024842f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000062000000000000000000000000000000000000000000000000000000000000000000000000000000015456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed42000000000000000159710cca7e7eb63fedf5a85a4fdd4309b5786f0f019dc483d5d8695cda41dbd13d830fd21c9162ad6d3bbd1f2db5c44a70f0163fcf1c76c8d69d986c0d6ee2350000000003bd1aa700000000000000398d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000015456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed420000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000015456b3b653af3d30105a32235e0dc2e6a50f271d76689ce512e69c416866ed4200000000000000023ae8fbfcc7067b1264c795d4b9091fd28e6d44afa363ee5956aded4bc7e78c1ebcd19743ed812cceff0a4aa2b2ab8998ffc0c4dc9b89b6f3560b4c91b8e687b40000000003bd1aa70000000000000039c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002475af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000013a32d33325ff3b83a6fba4605d41a0776ef2a4d95e24168ab08676d8d0af74b13686142914d407e80ad839f4467369262c9f1608298eb8e8caf233a7f053cfb80000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000031493cd3e5b2f2562625a9b6de0b8eb4015c331cbe1cb67a8f8ea3c94cdb968587a3816fc0e6b37f1dba447f67020261cdc6cec5eee32fa3b5f89a5e3bc43343b00000000000000406bea40d223633e3dade91f5d6f67675e679d5d22629ee7db84adb0d29d17107f32cef2901ef3745afdbe395595124471543b3d7c7fde1abadb69fe762d9caed5", - "receiptsRoot": "0x79b2998d2dafa66c49bea6958e3e545df6ffbaed043f2819f65779999d379ca2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003e2f6c15204bf07bd424d59829af6e651cf65159835a64d052db1390c8095d3d32fadeeac811c01cbfdbbd2feea913b457f0a9b7233ff9ce34502b35725b682400000000000000000000006a91c5ab000000000000000000000000000313570700000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000140000001c959eda20000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000003135707", - "digest": "0x761317f426d1a438000cfc1d2b47f9682b894c5cb3171c449ba5bb361681c133", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135707", - "digest": "0x1045d17ee2c0bc5b86831f01eeac8af0d8e5edc48035a3d1b584d89eb3156c59", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "558232007100", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000140000001c959eda2000000000000000000000000000000001000000006a91c533", - "digest": "0x00dfd78195b9aec5e89114010a5aee2b85d7a502cbdb7c5ad8664755636b795f", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101314", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100689", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135707", - "digest": "0x1045d17ee2c0bc5b86831f01eeac8af0d8e5edc48035a3d1b584d89eb3156c59", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100461", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884926", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099989", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "123510", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "232", - "totalGas": "133142", - "transactionId": "0x9980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb69" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x6bea40d223633e3dade91f5d6f67675e679d5d22629ee7db84adb0d29d17107f32cef2901ef3745afdbe395595124471543b3d7c7fde1abadb69fe762d9caed5" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xfb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa26", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "180071", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10061", - "utxoId": "0x60c2feb9fe80c24633aaf1ea0580a7b953b9269d477b7cebecb85a16392a9e1b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3a32d33325ff3b83a6fba4605d41a0776ef2a4d95e24168ab08676d8d0af74b1", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xfc15ca8514cb904a1fad5a717ed833ced72a98ae6a60e1398999ee9ca1c2a43c", - "txPointer": "03bd1aa7003a", - "utxoId": "0x9980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb690001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1493cd3e5b2f2562625a9b6de0b8eb4015c331cbe1cb67a8f8ea3c94cdb96858", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x83380767b7d5ee880a14a06d49942bb54ae61a1f446162057554d45b5b2c0c2d", - "txPointer": "03bd1aa7003a", - "utxoId": "0x9980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb690003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7003a", - "utxoId": "0x9980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb690002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "179821", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x80eb2dffe6178d6ab658e105b25cfdd2b77c1cb9861385e04d535ec72f671cb2", - "inputIndex": "1", - "stateRoot": "0x72562191c35870e27af56df7d2acaa127472b385b98707826249e51abe2dc0fa" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xee45feba12808b228ef026e07c25e634e42e1def5aa88c1f6cc49626e0f7ae13", - "inputIndex": "2", - "stateRoot": "0xe30a9bbe0ad5d4d29ae4bc85687193d4cad317666d1c521988eb171f3c769586" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848099a95b2cf85f2047e58d130ca6a9a9b917ddb4c1be3633e1031c572158dfd84d0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007280117c9271bdc8bb3ccf5c54fd3782fcaae4b12820b7b71c2a29d8e366470061b10aeb6b6a72b7ddae6c6e21b2675330c3fbb67379497dc874b20c1b89fadf00000000000000000000006a91c5ab000000000000000000000000000313570600000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000290000001c97f37880000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aab000000000000000060c2feb9fe80c24633aaf1ea0580a7b953b9269d477b7cebecb85a16392a9e1b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002bf67f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000061000000000000000000000000000000000000000000000000000000000000000000000000000000019980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb6900000000000000013a32d33325ff3b83a6fba4605d41a0776ef2a4d95e24168ab08676d8d0af74b1fc15ca8514cb904a1fad5a717ed833ced72a98ae6a60e1398999ee9ca1c2a43c0000000003bd1aa7000000000000003a8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000019980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb6900000000000000031493cd3e5b2f2562625a9b6de0b8eb4015c331cbe1cb67a8f8ea3c94cdb9685883380767b7d5ee880a14a06d49942bb54ae61a1f446162057554d45b5b2c0c2d0000000003bd1aa7000000000000003ac7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000019980298df407deb4b14c8186e6059e18996abf6e197c3ecb4a1cc0d3417dbb690000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002be6df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000180eb2dffe6178d6ab658e105b25cfdd2b77c1cb9861385e04d535ec72f671cb272562191c35870e27af56df7d2acaa127472b385b98707826249e51abe2dc0fa00000000000000010000000000000002ee45feba12808b228ef026e07c25e634e42e1def5aa88c1f6cc49626e0f7ae13e30a9bbe0ad5d4d29ae4bc85687193d4cad317666d1c521988eb171f3c76958600000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b027117be6ef78f9352c886c9a74f880dac002af9a52b54af4256d138539694420621eb04b9c06e00c635a30af6fcc1c04ff16321638ddbc8c47bfc8b4ea2590", - "receiptsRoot": "0x99a95b2cf85f2047e58d130ca6a9a9b917ddb4c1be3633e1031c572158dfd84d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007280117c9271bdc8bb3ccf5c54fd3782fcaae4b12820b7b71c2a29d8e366470061b10aeb6b6a72b7ddae6c6e21b2675330c3fbb67379497dc874b20c1b89fadf00000000000000000000006a91c5ab000000000000000000000000000313570600000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000290000001c97f37880000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000003135706", - "digest": "0xd10b71f26e4e6f33e0e4fbeafc1519702c6b4ae50f93a9eecaf633ffecc32d38", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135706", - "digest": "0x9ba889174bb164d92f391fbbd20ffcab3f15a2ed676821dff87413c9895fc444", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "182616090800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000290000001c97f3788000000000000000000000000000000001000000006a91c533", - "digest": "0x8be728702c490e40f431ad34d67abc0585250feb1acce6c31d01d5a24736e37c", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100258", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099633", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135706", - "digest": "0x9ba889174bb164d92f391fbbd20ffcab3f15a2ed676821dff87413c9895fc444", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099405", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874842", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098933", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133594", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "250", - "totalGas": "143226", - "transactionId": "0xfb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa26" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb027117be6ef78f9352c886c9a74f880dac002af9a52b54af4256d138539694420621eb04b9c06e00c635a30af6fcc1c04ff16321638ddbc8c47bfc8b4ea2590" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed354", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "298905", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10063", - "utxoId": "0x9a2926eeabd096a6c030e9e383feb6869f5fe8333a1a9dbc7dd131073af593830000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc67ae2b1e77bce9bff016d4c5dfa2086dcd198c5414e620e5a62ba372322ce6e", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xd45d49fc75fc9e3a862f22d0d90b481140ae1420ac2eaa8f5e00411e47462ac8", - "txPointer": "03bd1aa7003b", - "utxoId": "0xfb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa260001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7003b", - "utxoId": "0xfb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa260003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb25ca30a041e0ada9a5f5eb0cf7adf1ea96cca0fead53fde316c4c8dd717a900", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x216f02fd6a4bb2ffe6f058ea296dfbbd01e810368645bbd96beedd21f2d73557", - "txPointer": "03bd1aa7003b", - "utxoId": "0xfb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa260002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "298660", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x9f8994e0a04f3a1326326c99e68d1fa4cf0bd86dd4bd26ef85b8271040143e60", - "inputIndex": "1", - "stateRoot": "0x3cb8b9b7603225f19519cc34f3f23cc7a24dac8e28135c653eab83d06cdb8940" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa0d2700d6b8a1255fb6f0ed6449541d1aefe5c99e79b92618369bf080ae8e511", - "inputIndex": "3", - "stateRoot": "0x788af3beac20fcbd6236885f9406cf7de68309305d439e7cb852ea0a23539d8a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801119cf9f0da706fbd6262ab0c44e845673b58db5c9f181c416873606fe6424660000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009d8d17ccb5a9bcaf128f91749b29b99869fa0473970eb2ff1277704baa9728eb9e32e770a8749ba11055874184503ef203bc49bd03f3f02ad1bb7f39d343abcc00000000000000000000006a91c5ab000000000000000000000000000313570800000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000001c9e034a20000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aab00000000000000009a2926eeabd096a6c030e9e383feb6869f5fe8333a1a9dbc7dd131073af593830000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048f99f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006300000000000000000000000000000000000000000000000000000000000000000000000000000001fb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa260000000000000001c67ae2b1e77bce9bff016d4c5dfa2086dcd198c5414e620e5a62ba372322ce6ed45d49fc75fc9e3a862f22d0d90b481140ae1420ac2eaa8f5e00411e47462ac80000000003bd1aa7000000000000003b8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001fb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa260000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001fb36d0bee9890cc2ed12a66a64ade15343d9d393a1a9d92c9765052ef1ebaa260000000000000002b25ca30a041e0ada9a5f5eb0cf7adf1ea96cca0fead53fde316c4c8dd717a900216f02fd6a4bb2ffe6f058ea296dfbbd01e810368645bbd96beedd21f2d735570000000003bd1aa7000000000000003bc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048ea4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000019f8994e0a04f3a1326326c99e68d1fa4cf0bd86dd4bd26ef85b8271040143e603cb8b9b7603225f19519cc34f3f23cc7a24dac8e28135c653eab83d06cdb8940000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003a0d2700d6b8a1255fb6f0ed6449541d1aefe5c99e79b92618369bf080ae8e511788af3beac20fcbd6236885f9406cf7de68309305d439e7cb852ea0a23539d8a0000000000000040b886b5b48363288ce20bcb516917a5e7dfae705d90a3c213c7aacbdc3e0c89e37521a08a089172ebfd7c0f92bfa2c71302d479f101054d028ee647008be278a5", - "receiptsRoot": "0x1119cf9f0da706fbd6262ab0c44e845673b58db5c9f181c416873606fe642466", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000009d8d17ccb5a9bcaf128f91749b29b99869fa0473970eb2ff1277704baa9728eb9e32e770a8749ba11055874184503ef203bc49bd03f3f02ad1bb7f39d343abcc00000000000000000000006a91c5ab000000000000000000000000000313570800000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001c0000001c9e034a20000000000000000100000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000003135708", - "digest": "0x4711333680a9bcd8a959644b8b04a96c04dca1e0086bca990cfd120db51e9e1d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135708", - "digest": "0xa567feb0f957d6b0e2653fd7c1a65d4f24e7adb6275394c65b4bd39554889f0d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "895000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001c0000001c9e034a2000000000000000010000000000000001000000006a91c533", - "digest": "0xbe23f2750b93b976303bd61a194beb0a88fa4205c895edfddca03c76f7e615d6", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100370", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099745", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135708", - "digest": "0xa567feb0f957d6b0e2653fd7c1a65d4f24e7adb6275394c65b4bd39554889f0d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099517", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877576", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099045", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130860", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "245", - "totalGas": "140492", - "transactionId": "0x811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed354" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb886b5b48363288ce20bcb516917a5e7dfae705d90a3c213c7aacbdc3e0c89e37521a08a089172ebfd7c0f92bfa2c71302d479f101054d028ee647008be278a5" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xda945f4366eda9e2aefe36f48645c674fec21d5ddab06305c0d42a457dc42ca2", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "164115", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10064", - "utxoId": "0xb7d6ca4ba76625fd6cd690f9ee0e3916d223cf67fc0d2b95f0d148772b871f290000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x66570f62707a9c4a0c59d94a4f86f5260664f5799df50f384a89d493fe030628", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x6c79f8e40d198aa7809becb869c4eb86e377bdff4846e88bc3e2569c0dd87735", - "txPointer": "03bd1aa70037", - "utxoId": "0x745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaf6e294b769dc502564df27ca07c2d00361936236d8f125b6891c850bb5da559", - "contractId": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "stateRoot": "0x36520587e1a861a23036e31e5b12caeb4769443b37d16e1b0d04f048d6586a48", - "txPointer": "03bd1aa70037", - "utxoId": "0x745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x4a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d916077", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7003c", - "utxoId": "0x811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed3540002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "163610", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8d44cb1084c87ad9aa57100325bd97c09d6dcd0bc875965294ec1ea71413738d", - "inputIndex": "1", - "stateRoot": "0xf3343a40fe93b4f4fd895e7438680f4b4ea34a3fc02340712a733272874ed8f8" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8c8acbcceaaf324d5c1c6f97a0add8d12d1fba3516bcbe2118aef469050ef69a", - "inputIndex": "2", - "stateRoot": "0x49d0283bf74e69adf2e08eaf3650dcf8b0da19ce7a1940f373c817895f06e617" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000004c4b406fa625f8cc66d4e1b51c2a389ea1ec907c4d644781d6b694b47da24b8f04f6ce0000000000000018000000000000035c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ad29f9304f57f20b72df0e22d8fc7a6953fdcf2ee84f50b45ed69af24a54b20a69f2419fbb5f24873aade5c9e70d8b0172dbed3cc9f7175fb66c53a1f3eaf4cb00000000000000000000006a91c5ab000000000000000000000000000a759f1f0000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003500000411a6d6090000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002600000411a63d728000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411a63d7280000000004a817c80000000000000000300000000000000000000006400000000000210ac0000000003bd1aab0000000000000000b7d6ca4ba76625fd6cd690f9ee0e3916d223cf67fc0d2b95f0d148772b871f290000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028113f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006400000000000000000000000000000000000000000000000000000000000000000000000000000001745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd000000000000000366570f62707a9c4a0c59d94a4f86f5260664f5799df50f384a89d493fe0306286c79f8e40d198aa7809becb869c4eb86e377bdff4846e88bc3e2569c0dd877350000000003bd1aa70000000000000037f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000001745a60afd6716c3d1d065b31bb683b828512981226f5bc1cfc3a3806db285fcd0000000000000001af6e294b769dc502564df27ca07c2d00361936236d8f125b6891c850bb5da55936520587e1a861a23036e31e5b12caeb4769443b37d16e1b0d04f048d6586a480000000003bd1aa700000000000000379423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d60000000000000001811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed35400000000000000024a4eb21006a58505c43f38263a91240f4a22df849813bd8a2756a4ce6d91607700000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027f1af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000018d44cb1084c87ad9aa57100325bd97c09d6dcd0bc875965294ec1ea71413738df3343a40fe93b4f4fd895e7438680f4b4ea34a3fc02340712a733272874ed8f8000000000000000100000000000000028c8acbcceaaf324d5c1c6f97a0add8d12d1fba3516bcbe2118aef469050ef69a49d0283bf74e69adf2e08eaf3650dcf8b0da19ce7a1940f373c817895f06e61700000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b1ec7a5d24c18fee9c3930afad4ad57602e029022e0fd76c25628a42a64f4b8250548c8b1f41b48e1251f132c5fd644d2adc0ab2f532519b03d5030f1e5a91e4", - "receiptsRoot": "0x6fa625f8cc66d4e1b51c2a389ea1ec907c4d644781d6b694b47da24b8f04f6ce", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ad29f9304f57f20b72df0e22d8fc7a6953fdcf2ee84f50b45ed69af24a54b20a69f2419fbb5f24873aade5c9e70d8b0172dbed3cc9f7175fb66c53a1f3eaf4cb00000000000000000000006a91c5ab000000000000000000000000000a759f1f0000000000000004f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003500000411a6d6090000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000002600000411a63d728000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f72646572000000004a817c80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411a63d7280000000004a817c800000000000000003", - "scriptGasLimit": "5000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "4998623", - "gasUsed": null, - "id": null, - "is": "12920", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12920", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000a759f1f", - "digest": "0x3c1e8261d310c917c1c3edf02d40203362aba106f904880f52e81463b1a24e11", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147728", - "ptr": "67107518", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1f", - "digest": "0x6432f25a3e23a885f6b6ec2c914e464dd001219315f8abf5578fefe963f6d98f", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67105234", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4961322", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108172", - "param2": "67108140", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "1218107200", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408384", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003500000411a6d6090000000000000000010000000000000003000000006a91c533", - "digest": "0xb5520095ba90a56b02239082227a008bf432514c625692506282b916a432df94", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402732", - "ptr": "67100170", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379900", - "ptr": "67099545", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1f", - "digest": "0x6432f25a3e23a885f6b6ec2c914e464dd001219315f8abf5578fefe963f6d98f", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67099317", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4876240", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108120", - "param2": "67108088", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408384", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002600000411a63d728000000000000000010000000000000003000000006a91c533", - "digest": "0xc69573a9889780f47dd561b3ac33269c55ca806aeb5c08a31ad31f291ff0cab1", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402732", - "ptr": "67094197", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379900", - "ptr": "67093572", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1f", - "digest": "0x6432f25a3e23a885f6b6ec2c914e464dd001219315f8abf5578fefe963f6d98f", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67093344", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "4804160", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108066", - "param2": "67108026", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000000000000000000000", - "digest": "0x91d5ecaa17f7ee8f7f01d9246239c7a9811538391c1dcbb1a164cd89505102c4", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462632", - "ptr": "67092872", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375628", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000baa03f2f12ff430c68d6acb9379d13c6aa0da868471f0907ba4011949ffe6d8f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab000000000000000000000000000a759f1f", - "digest": "0x6432f25a3e23a885f6b6ec2c914e464dd001219315f8abf5578fefe963f6d98f", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166496", - "ptr": "67092644", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1250000000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "4792754", - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "306704", - "len": null, - "nonce": null, - "param1": "67108006", - "param2": "67107982", - "pc": "306704", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002700000411a63d72800000000000000001000000000000000300000000000000019423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d600000000000000010000000000000003000000004a817c8000000411a63d7280000000006a91c533", - "digest": "0xb1b582a2631743e35a3166a159e6579d7040b61576db52fb93193252562c81a2", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433364", - "ptr": "67091252", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002700000411a63d728000000000000000010000000000000003", - "digest": "0x7709b482c1554b89ec6bd7e5b0e54b248d1c34403293ea5fac0ac4bcf65a1d92", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "306704", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379596", - "ptr": "67086948", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9423658cc5c65c586208bedd70f1cc11af5120858df6c6ba128b6ac4e1e6a9d6", - "is": "12920", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57532", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "280181", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "505", - "totalGas": "290226", - "transactionId": "0xda945f4366eda9e2aefe36f48645c674fec21d5ddab06305c0d42a457dc42ca2" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb1ec7a5d24c18fee9c3930afad4ad57602e029022e0fd76c25628a42a64f4b8250548c8b1f41b48e1251f132c5fd644d2adc0ab2f532519b03d5030f1e5a91e4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "302368", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10065", - "utxoId": "0xb81f0e88796c686502dffc8e9e80e948990de1a9fac3afe2e6d572226d5b7aad0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x56093e13c0c8372e9995c67c2a3a3e8a30f0596e145500f3e3ea5f5273148a4d", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0xf98a4cdb8bc67f683f3f772895426190908e9891cecff3437669fe48a7fb845b", - "txPointer": "03bd1aa70038", - "utxoId": "0xb3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a90003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6c45ba6c5a134094c70636f5f888dbe096c72e543ee0657938dab17045bf32a9", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0xaada1132667289497be48429a77c65bd9380395d0241b5a9c3b3b32793191749", - "txPointer": "03bd1aa70038", - "utxoId": "0xb3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a90002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7003d", - "utxoId": "0xda945f4366eda9e2aefe36f48645c674fec21d5ddab06305c0d42a457dc42ca20003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "302015", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x3b08a723075ad1b5083856c7461d74c6c589ba5d3e92493c5af1bcc53928c6f9", - "inputIndex": "1", - "stateRoot": "0x633552f92fe11f6b3e441a2e86847c794ab2f80e2d873cf341fed7a8967a1c9c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x04ed428dd82a539d0c941bf29cb74d640e1e3f3c32b82d1d2372d0fbbe328b96", - "inputIndex": "2", - "stateRoot": "0x1fa6e5ddb434e937dd60abea50f78344644278d08c8e303f987e551d7c638db0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d6f81a28ae60345e74a9983f882cae6101b85afafef4da8d7e964bc49ec55c11000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003c15b8fe7e202b82e2cb7a4d19e7802c1d86ba441563749e9e3e0c4a35ee61d2200262d524d8e94cdb3c54a6da2bb976cd01fbc1c8aa5ffb5e5a03c5bc95686800000000000000000000006a91c5ab000000000000000000000000000249f4480000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001800000000174cc09000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000504512e5900ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174bfd4000000504512e59000000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000b81f0e88796c686502dffc8e9e80e948990de1a9fac3afe2e6d572226d5b7aad0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000049d20f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006500000000000000000000000000000000000000000000000000000000000000000000000000000001b3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a9000000000000000356093e13c0c8372e9995c67c2a3a3e8a30f0596e145500f3e3ea5f5273148a4df98a4cdb8bc67f683f3f772895426190908e9891cecff3437669fe48a7fb845b0000000003bd1aa700000000000000389789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001b3fa41fa9f293954fe213711fad6e9281aed7981f0a32d93c5fc01139fe4c8a900000000000000026c45ba6c5a134094c70636f5f888dbe096c72e543ee0657938dab17045bf32a9aada1132667289497be48429a77c65bd9380395d0241b5a9c3b3b327931917490000000003bd1aa70000000000000038295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000001da945f4366eda9e2aefe36f48645c674fec21d5ddab06305c0d42a457dc42ca200000000000000033c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000049bbff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000013b08a723075ad1b5083856c7461d74c6c589ba5d3e92493c5af1bcc53928c6f9633552f92fe11f6b3e441a2e86847c794ab2f80e2d873cf341fed7a8967a1c9c0000000000000001000000000000000204ed428dd82a539d0c941bf29cb74d640e1e3f3c32b82d1d2372d0fbbe328b961fa6e5ddb434e937dd60abea50f78344644278d08c8e303f987e551d7c638db000000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c59277554ac3434a2f401bee9a7de18add53e7a8e0e9800f1d8df526e6ba8e6deaf5cd25fa2ca02a61201e44073c4174a7844030c747a5673d92b157fcb65d4e", - "receiptsRoot": "0xd6f81a28ae60345e74a9983f882cae6101b85afafef4da8d7e964bc49ec55c11", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003c15b8fe7e202b82e2cb7a4d19e7802c1d86ba441563749e9e3e0c4a35ee61d2200262d524d8e94cdb3c54a6da2bb976cd01fbc1c8aa5ffb5e5a03c5bc95686800000000000000000000006a91c5ab000000000000000000000000000249f4480000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001800000000174cc09000000000000000010000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f7264657200000504512e5900ef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aeaffffffffffffffff0000000000000001000000000000001800000000174bfd4000000504512e59000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000249f448", - "digest": "0xea6475a246f4b2dc6eb22bd6b4891526f5c5aed2a7ad9b949c22eb5f99fc90a8", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f448", - "digest": "0xf4939471afa1ffb15e88d5c7edce098dc12f55a0fef87190f31d21867be2865f", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "6120300000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001800000000174cc09000000000000000010000000000000001000000006a91c533", - "digest": "0x52fb14650713ccf9015b8b6b08d6730bef3ac872d8d2b51935ed7d65cc7f0fc5", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67101186", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100561", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f448", - "digest": "0xf4939471afa1ffb15e88d5c7edce098dc12f55a0fef87190f31d21867be2865f", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100333", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886338", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099861", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f448", - "digest": "0xf4939471afa1ffb15e88d5c7edce098dc12f55a0fef87190f31d21867be2865f", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099633", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "5516100000000", - "assetId": "0xef13df7d602c6a424ed6b1cb7de18eaed4397fa1eaf8eeb04db694ef2d709aea", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874933", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a00000000174bfd400000000000000001000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000001000000000000000100000504512e590000000000174bfd40000000006a91c533", - "digest": "0x38b1233f4c8ef9842a5ee06266d350791da8a6db096a5cd2a7e1e62aa6e49e52", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67098241", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000002a00000000174bfd4000000000000000010000000000000001", - "digest": "0x2132a01070adc15a9dc3f5757adcc8dfb4e9935c6be42e9a9cf3d5a46f1337a6", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67094529", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "192858", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "353", - "totalGas": "202686", - "transactionId": "0x8d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc59277554ac3434a2f401bee9a7de18add53e7a8e0e9800f1d8df526e6ba8e6deaf5cd25fa2ca02a61201e44073c4174a7844030c747a5673d92b157fcb65d4e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc53", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "156310", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10068", - "utxoId": "0x9c045c6cc39e7084d22c0be91f46fe9b3c7fbb18516a4786fb8e1078d9324af90000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7003e", - "utxoId": "0x8d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xee45feba12808b228ef026e07c25e634e42e1def5aa88c1f6cc49626e0f7ae13", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x1c267275bae83707ac5f696d3b58c30013291cff365312865df46a5f9ab87d25", - "txPointer": "03bd1aa7003c", - "utxoId": "0x811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed3540003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x80eb2dffe6178d6ab658e105b25cfdd2b77c1cb9861385e04d535ec72f671cb2", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x9509d71740a14c59dbca535ff337827a611c51304da9ce016b1d27fbc8b25541", - "txPointer": "03bd1aa7003c", - "utxoId": "0x811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed3540001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "156094", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xda5d8eab71398e3c25c98fbff86bb510bcbb307e8caef63b54e77d0b4504ffde", - "inputIndex": "2", - "stateRoot": "0x26fc09f013999c788a0e1b616732e636f3fca8817452129a91d39640658a878b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x92c431fdced1decc1e018068cdd4d3dc07a75f8fd4d53dddab9ae6c72d939a15", - "inputIndex": "3", - "stateRoot": "0xea9ffe135de3d081e4589e92d4da670e8894103b351f06e4529065d443948b3b" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480784b5407b1ff70397d2233b039d1421ff89c79a14ba88cfdf902a21d2df08bba00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000da55635fb50efef030897cce0c0dada5523a4ae24c91c8e2dcd3b7a49a0e20afa18ded6811df9626d0ea16b7a8068ef320dc8ba5988da7592d3d19f8ff4622b100000000000000000000006a91c5ab000000000000000000000000000313570b00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000f7c27612806c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c91efdbe00000000204e43800000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000009c045c6cc39e7084d22c0be91f46fe9b3c7fbb18516a4786fb8e1078d9324af90000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026296f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000068000000000000000000000000000000000000000000000000000000000000000000000000000000018d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba0000000000000003a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed3540000000000000003ee45feba12808b228ef026e07c25e634e42e1def5aa88c1f6cc49626e0f7ae131c267275bae83707ac5f696d3b58c30013291cff365312865df46a5f9ab87d250000000003bd1aa7000000000000003cc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001811feb4de58ea409fede5108ccf155dd63b68cfc188b4f637576ba8c4ebed354000000000000000180eb2dffe6178d6ab658e105b25cfdd2b77c1cb9861385e04d535ec72f671cb29509d71740a14c59dbca535ff337827a611c51304da9ce016b1d27fbc8b255410000000003bd1aa7000000000000003c8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000261bef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002da5d8eab71398e3c25c98fbff86bb510bcbb307e8caef63b54e77d0b4504ffde26fc09f013999c788a0e1b616732e636f3fca8817452129a91d39640658a878b0000000000000001000000000000000392c431fdced1decc1e018068cdd4d3dc07a75f8fd4d53dddab9ae6c72d939a15ea9ffe135de3d081e4589e92d4da670e8894103b351f06e4529065d443948b3b0000000000000040b5b38416905a8a5064ade7786cee3f2aeaa85699bb04148b0ecbafb6b8928aae9b06504212ab6e303e769aaca8527d813de1a6ec33b2243960399a1f72868ed8", - "receiptsRoot": "0x784b5407b1ff70397d2233b039d1421ff89c79a14ba88cfdf902a21d2df08bba", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000da55635fb50efef030897cce0c0dada5523a4ae24c91c8e2dcd3b7a49a0e20afa18ded6811df9626d0ea16b7a8068ef320dc8ba5988da7592d3d19f8ff4622b100000000000000000000006a91c5ab000000000000000000000000000313570b00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f72646572000000f7c27612806c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c91efdbe00000000204e438000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000313570b", - "digest": "0xfef1cb5a4b399e6dbb50f3e338247653938122c40290d00c33500cda1b4ee644", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570b", - "digest": "0x89555cdd0f9286f69c22d50b90de0e9cfb12bc03b5af38d4e0f6827be4291983", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570b", - "digest": "0x89555cdd0f9286f69c22d50b90de0e9cfb12bc03b5af38d4e0f6827be4291983", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1064119440000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000100000001c91efdbe0000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000000000000000000010000000204e438000000001c91efdbe0000000006a91c533", - "digest": "0x97b718d0f2aef30c9d291c2316696c6a99a1d7439edf07ef1fb450c8c996590b", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000100000001c91efdbe000000000000000000000000000000001", - "digest": "0x90047d5291063c0789848e1e00c239794a87f5dc74dd28dde2f03a4b69a2dd98", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101270", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "114005", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "216", - "totalGas": "123626", - "transactionId": "0x400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc53" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xb5b38416905a8a5064ade7786cee3f2aeaa85699bb04148b0ecbafb6b8928aae9b06504212ab6e303e769aaca8527d813de1a6ec33b2243960399a1f72868ed8" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "306151", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10069", - "utxoId": "0x2c8f65f78b01d752fb0e9029cfe3444c2fa31477c154de40ef5a436c9a9700970000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xda5d8eab71398e3c25c98fbff86bb510bcbb307e8caef63b54e77d0b4504ffde", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x797edd4f4094d111d57140d7dfc568331791a0cc9e78f1a60d7101871ce1a7b6", - "txPointer": "03bd1aa7003f", - "utxoId": "0x400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc530002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7003f", - "utxoId": "0x400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc530001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x92c431fdced1decc1e018068cdd4d3dc07a75f8fd4d53dddab9ae6c72d939a15", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x93841eaa169af635c97d8496615ed1c8410829f0781b341ce5dc7f77eee15ab1", - "txPointer": "03bd1aa7003f", - "utxoId": "0x400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc530003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "305904", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x75ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b", - "inputIndex": "1", - "stateRoot": "0x80b3d7103245a751edc0b854ba2b05720b4ffc9ff309f3004ab8d19033cefb39" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608", - "inputIndex": "3", - "stateRoot": "0x3835df8cf467c50f5d9f1a509ea09fdb2d48fdc7798a8a3eb87d0d9b1cdff54a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848052909360946a897645863e8da03056e04695455888a3701e597c80b943b2ad1900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003e970c8aefda09812f70ddd5e383ab7906d0a47f3ec18b5c9d73ae9690795ec7632979fcd66e29e562ab9220f90f5d7297912c3412d49efecc468549b0461e2700000000000000000000006a91c5ab000000000000000000000000000313570c00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000074282452ec6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c96c3d22000000000f22c75c0000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000002c8f65f78b01d752fb0e9029cfe3444c2fa31477c154de40ef5a436c9a9700970000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004abe7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006900000000000000000000000000000000000000000000000000000000000000000000000000000001400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc530000000000000002da5d8eab71398e3c25c98fbff86bb510bcbb307e8caef63b54e77d0b4504ffde797edd4f4094d111d57140d7dfc568331791a0cc9e78f1a60d7101871ce1a7b60000000003bd1aa7000000000000003fc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000001400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc530000000000000001a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000003f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001400d61b9bfded95761a4fc0c516ec8b1d957767357ce6e66370bcc506e05cc53000000000000000392c431fdced1decc1e018068cdd4d3dc07a75f8fd4d53dddab9ae6c72d939a1593841eaa169af635c97d8496615ed1c8410829f0781b341ce5dc7f77eee15ab10000000003bd1aa7000000000000003f8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004aaf0f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000175ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b80b3d7103245a751edc0b854ba2b05720b4ffc9ff309f3004ab8d19033cefb390000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000036e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c228192096083835df8cf467c50f5d9f1a509ea09fdb2d48fdc7798a8a3eb87d0d9b1cdff54a000000000000004056c3b25117d5ccfb6f6b0ba5a83e8036b336f017e3a58dbe3b91eba26e7748e3ba85f44ae91d8e5ca6af450af6988c2cf625699d0db57e174ccd6224a095e40c", - "receiptsRoot": "0x52909360946a897645863e8da03056e04695455888a3701e597c80b943b2ad19", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000003e970c8aefda09812f70ddd5e383ab7906d0a47f3ec18b5c9d73ae9690795ec7632979fcd66e29e562ab9220f90f5d7297912c3412d49efecc468549b0461e2700000000000000000000006a91c5ab000000000000000000000000000313570c00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000074282452ec6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c96c3d22000000000f22c75c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000313570c", - "digest": "0x11b92fe70e25711d433d2a09fc097287129390c817a411911291b5388d5bdde3", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570c", - "digest": "0x4c7c3ee422a5c605fa04497dcc25c16811531beb16724f949ff76fe9c501b2ed", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570c", - "digest": "0x4c7c3ee422a5c605fa04497dcc25c16811531beb16724f949ff76fe9c501b2ed", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "498889675500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000150000001c96c3d220000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000000000000000000000100000000f22c75c00000001c96c3d220000000006a91c533", - "digest": "0x571a005bff34032975aeb05159bd4945d5f3c52bf72a759685d8db6c6fe16291", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000150000001c96c3d22000000000000000000000000000000001", - "digest": "0x29843bc8e4795f95abf9109fcaabc84ea599324a63eccaf48ab56e6e3d902ac2", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099462", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131846", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "247", - "totalGas": "141467", - "transactionId": "0xd62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x56c3b25117d5ccfb6f6b0ba5a83e8036b336f017e3a58dbe3b91eba26e7748e3ba85f44ae91d8e5ca6af450af6988c2cf625699d0db57e174ccd6224a095e40c" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x3988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "146722", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10066", - "utxoId": "0xae730c5db90ba6cdfb87d5eb22894d85ad4e0510c7ee6b2c0ece2632a430b3cf0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70040", - "utxoId": "0xd62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x9f8994e0a04f3a1326326c99e68d1fa4cf0bd86dd4bd26ef85b8271040143e60", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0x718482dfc2b4270074cb0c2fb04bb951dbec81d96505ab4b6268a8b96713cb04", - "txPointer": "03bd1aa70040", - "utxoId": "0xd62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa0d2700d6b8a1255fb6f0ed6449541d1aefe5c99e79b92618369bf080ae8e511", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x892f4e5edbf6bb6b92569014b1cf5347bb81c39510def23a5339a1bbb2ed6e20", - "txPointer": "03bd1aa70040", - "utxoId": "0xd62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "146473", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc67ae2b1e77bce9bff016d4c5dfa2086dcd198c5414e620e5a62ba372322ce6e", - "inputIndex": "2", - "stateRoot": "0x935df62d9f89df73007f5ad6cc2ba3bcbf0e4a78d1cec12bb6f262554ea06f95" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb25ca30a041e0ada9a5f5eb0cf7adf1ea96cca0fead53fde316c4c8dd717a900", - "inputIndex": "3", - "stateRoot": "0x5afaebba7de46f14cae3656b522427ebd992894d384531fbdd0ee463f74e2693" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480709a5fcca9d8bc53b9abd7f506c4a00bb557bf08b30bf666c906ce74d9c3072b00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000992dc232993f9d806db11b68f246b1366a715bc759e525fc0af0cf18eda7bc104c285a3825968ca3a92e1e227d0448d2d1ccde4e2d6496f1728dc57cd8469a9c00000000000000000000006a91c5ab000000000000000000000000000313570900000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000000035589dc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9de7d2e00000000035589dc0000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000ae730c5db90ba6cdfb87d5eb22894d85ad4e0510c7ee6b2c0ece2632a430b3cf0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023d22f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006600000000000000000000000000000000000000000000000000000000000000000000000000000001d62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b0000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001d62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b00000000000000039f8994e0a04f3a1326326c99e68d1fa4cf0bd86dd4bd26ef85b8271040143e60718482dfc2b4270074cb0c2fb04bb951dbec81d96505ab4b6268a8b96713cb040000000003bd1aa700000000000000408d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000001d62c1b504163f1a1ac6cbed1d02b9d126b2125d854c447c23d5de41f60d6181b0000000000000001a0d2700d6b8a1255fb6f0ed6449541d1aefe5c99e79b92618369bf080ae8e511892f4e5edbf6bb6b92569014b1cf5347bb81c39510def23a5339a1bbb2ed6e200000000003bd1aa70000000000000040c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023c29f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c67ae2b1e77bce9bff016d4c5dfa2086dcd198c5414e620e5a62ba372322ce6e935df62d9f89df73007f5ad6cc2ba3bcbf0e4a78d1cec12bb6f262554ea06f9500000000000000010000000000000003b25ca30a041e0ada9a5f5eb0cf7adf1ea96cca0fead53fde316c4c8dd717a9005afaebba7de46f14cae3656b522427ebd992894d384531fbdd0ee463f74e26930000000000000040cdc06af568c260927c3e87e9911a4f90b0ea28c398eb51d65842cf09a60802a86d968700ad60339783fd8133a632aad6a590c6c253c5899460883122f7346c71", - "receiptsRoot": "0x709a5fcca9d8bc53b9abd7f506c4a00bb557bf08b30bf666c906ce74d9c3072b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000992dc232993f9d806db11b68f246b1366a715bc759e525fc0af0cf18eda7bc104c285a3825968ca3a92e1e227d0448d2d1ccde4e2d6496f1728dc57cd8469a9c00000000000000000000006a91c5ab000000000000000000000000000313570900000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000000035589dc013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30ffffffffffffffff000000000000000100000000000000180000001c9de7d2e00000000035589dc00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000003135709", - "digest": "0x4564c78873dae4d201446f66d2be2e452e250c15d74dc46acb825f4667a81ad5", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135709", - "digest": "0xb1915a49cc6f4f3b6bce7cecc749abf0910ef9e0b313ce8d2552e5689bfe3182", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab0000000000000000000000000003135709", - "digest": "0xb1915a49cc6f4f3b6bce7cecc749abf0910ef9e0b313ce8d2552e5689bfe3182", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "895000000", - "assetId": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b30", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001b0000001c9de7d2e0000000000000000100000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe000000000000000100000000000000010000000035589dc00000001c9de7d2e0000000006a91c533", - "digest": "0x25f77d34a27450816e4a7fd2a2e516f5676c9f3f23bf6f1189c224c0dcbb9aaf", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001b0000001c9de7d2e000000000000000010000000000000001", - "digest": "0x97fcf1f16d9fdc308022ab3e0948bc6acfdd7629d8423716b5ac7e9bc981e4ed", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099142", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133367", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "249", - "totalGas": "142988", - "transactionId": "0x3988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xcdc06af568c260927c3e87e9911a4f90b0ea28c398eb51d65842cf09a60802a86d968700ad60339783fd8133a632aad6a590c6c253c5899460883122f7346c71" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c62", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "157516", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10067", - "utxoId": "0x02f0e601fd53ee39dbad475c489efdecdcd1d05f11ba17dbe2adc563a0bd40620000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70041", - "utxoId": "0x3988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x75ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0x791fffec31cfe966cbed55521b092527834900bb2fddd5c58960b3bd64eb7b21", - "txPointer": "03bd1aa70041", - "utxoId": "0x3988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xb13a3a57a119d2a6e6ee458dc809f9fe90be35f5d9521efcfa20757e08bdf5f7", - "txPointer": "03bd1aa70041", - "utxoId": "0x3988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157267", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x1cd5e0be804ab5535715a7e08d6a4d395e90b23f61e462da0de08d68e7a3c442", - "inputIndex": "2", - "stateRoot": "0xb0cb14a912f5a32889b42997438b31e2c25292732dfd2633e4052cb5c7efc173" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x99812cd8524c1d99ff42c50fb9225d473afbd8bcf797f977764fb28294095fce", - "inputIndex": "3", - "stateRoot": "0xd3759b5579bd7273592224b65533e498a0918deaf8517624c30623ee5063bf8a" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480bf38fc256b40a855a7b8dbf8a28caf32ec2d7ccbcad4991dc730ce999a01492300000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000064320ed211b028933fe73d565f22ed86c989552e9bb8642fc41689a7fa80e91284e72b0e70ecf35efe1e55f2c965a517bbd0368f4502a6406704a58d9fd79d5400000000000000000000006a91c5ab000000000000000000000000000313570a00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000002c36103cb06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c98de74c0000000005c261680000000000000000100000000000000000000006400000000000210ac0000000003bd1aab000000000000000002f0e601fd53ee39dbad475c489efdecdcd1d05f11ba17dbe2adc563a0bd40620000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002674cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa10000000000000067000000000000000000000000000000000000000000000000000000000000000000000000000000013988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d0000000000000001a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000013988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d000000000000000375ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b791fffec31cfe966cbed55521b092527834900bb2fddd5c58960b3bd64eb7b210000000003bd1aa70000000000000041c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000013988f7f386cd8e17bf363eed00c4d6408658b4bd4bab994727bec6da97de836d00000000000000026e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608b13a3a57a119d2a6e6ee458dc809f9fe90be35f5d9521efcfa20757e08bdf5f70000000003bd1aa700000000000000418d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026653f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000021cd5e0be804ab5535715a7e08d6a4d395e90b23f61e462da0de08d68e7a3c442b0cb14a912f5a32889b42997438b31e2c25292732dfd2633e4052cb5c7efc1730000000000000001000000000000000399812cd8524c1d99ff42c50fb9225d473afbd8bcf797f977764fb28294095fced3759b5579bd7273592224b65533e498a0918deaf8517624c30623ee5063bf8a000000000000004052e984098a1122c41bab3920c314d1db417826c78716c90e9b5f2ceaf50dc9236f52fd1b236d34ded358a1dcb0aacc619bb1626ced9cf47d010689071be83b6c", - "receiptsRoot": "0xbf38fc256b40a855a7b8dbf8a28caf32ec2d7ccbcad4991dc730ce999a014923", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000064320ed211b028933fe73d565f22ed86c989552e9bb8642fc41689a7fa80e91284e72b0e70ecf35efe1e55f2c965a517bbd0368f4502a6406704a58d9fd79d5400000000000000000000006a91c5ab000000000000000000000000000313570a00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f726465720000002c36103cb06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c98de74c0000000005c2616800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000313570a", - "digest": "0x42e240befc1b380dd33f20fe9e49865db936c2fb657862c250f5a59be103a262", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570a", - "digest": "0xf323d17c22e8a8d4e0072cd58224dde34002feb30acd08b3ff63866e66461796", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570a", - "digest": "0xf323d17c22e8a8d4e0072cd58224dde34002feb30acd08b3ff63866e66461796", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "189885594800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000280000001c98de74c0000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000001000000005c2616800000001c98de74c0000000006a91c533", - "digest": "0xab9b85bc52bd5f116b509167f40d6639c4272af3d3b59a7d9a6e06ccf4166d37", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000280000001c98de74c000000000000000000000000000000001", - "digest": "0xfa06e61951993687aae2fc7fe00588054ec76095851b3eb176f75b05d86f15a9", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099206", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133262", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "249", - "totalGas": "142883", - "transactionId": "0x035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c62" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x52e984098a1122c41bab3920c314d1db417826c78716c90e9b5f2ceaf50dc9236f52fd1b236d34ded358a1dcb0aacc619bb1626ced9cf47d010689071be83b6c" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xf773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "156212", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1006a", - "utxoId": "0x206c25e0074f02177d16adf326d414694fd4a32fad505af5db8d21df601f05630000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x26a500f520356db40f81f2901bef6e2a21d0052f05eab30007918d51418c43c9", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x0a9f44286865363998a497b67b32d0659dfc3886bdc166a93087e882a046ff31", - "txPointer": "03bd1aa7001d", - "utxoId": "0x04d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe310003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70042", - "utxoId": "0x035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c620001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0712a911e788c04441dfb69660b4598f7cd52ece7f050f463d388aa663455f78", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xd83436ea740a51e53e0e48efe959822bddc36ab0c097d7ee59a2a397699774fa", - "txPointer": "03bd1aa7001d", - "utxoId": "0x04d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe310002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "155966", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xfa5ee5cff84907b3b7357f2b197375da05d6cb0a27c9918fd891649ab969aa63", - "inputIndex": "1", - "stateRoot": "0x84fd022f0486fc02382dfb0d3d800c5f76808a8cc77c1242c723aa699ab4613b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x03284bbc454d8bfed0c351392789159415dad9eba31f50afa45ab15c7bdaece3", - "inputIndex": "3", - "stateRoot": "0xcf78ae844d39c3ec77b333440de18bc6b8331643bdb26ee84085b7493c79434f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801abeaf699e57d3083114a96dcd0ed2e32339b4e26d70840ee319a9b4ec45693d0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006f4e457143408da7baf997159a128eda3a05557cc322e09c1d5e04d439f88680c929c7591bc89da33cf9030c42766b27b33239f07555324c5c44304332a1415000000000000000000000006a91c5ab00000000000000000000000000023a366000000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000160000000009d3dbc4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000206c25e0074f02177d16adf326d414694fd4a32fad505af5db8d21df601f05630000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026234f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006a0000000000000000000000000000000000000000000000000000000000000000000000000000000104d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe31000000000000000326a500f520356db40f81f2901bef6e2a21d0052f05eab30007918d51418c43c90a9f44286865363998a497b67b32d0659dfc3886bdc166a93087e882a046ff310000000003bd1aa7000000000000001ded551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c620000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000104d22cb892f9d99b9e2bc10e02c99f3bb5a6ffda4d311ed428ef96d6070dfe3100000000000000020712a911e788c04441dfb69660b4598f7cd52ece7f050f463d388aa663455f78d83436ea740a51e53e0e48efe959822bddc36ab0c097d7ee59a2a397699774fa0000000003bd1aa7000000000000001d0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002613ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001fa5ee5cff84907b3b7357f2b197375da05d6cb0a27c9918fd891649ab969aa6384fd022f0486fc02382dfb0d3d800c5f76808a8cc77c1242c723aa699ab4613b00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000303284bbc454d8bfed0c351392789159415dad9eba31f50afa45ab15c7bdaece3cf78ae844d39c3ec77b333440de18bc6b8331643bdb26ee84085b7493c79434f000000000000004089ae5bafdb22bda1a6e31ff96aa3630f83b3579ff8a9bc87adb2fd55f59c7a96f47cb16aa60ccd10d8445e4cb8c93dbe6e1996c25b0070f3f0b6bba74c1c69b7", - "receiptsRoot": "0x1abeaf699e57d3083114a96dcd0ed2e32339b4e26d70840ee319a9b4ec45693d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000006f4e457143408da7baf997159a128eda3a05557cc322e09c1d5e04d439f88680c929c7591bc89da33cf9030c42766b27b33239f07555324c5c44304332a1415000000000000000000000006a91c5ab00000000000000000000000000023a366000000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000160000000009d3dbc4000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023a3660", - "digest": "0x2c256bc7aedf02b7e546da99c76c19a338ee10d6a50d40d6e7ce9d1a72042a17", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3660", - "digest": "0xb63dd032a9ad9704b8734ecb0f201477d2c9c4f5358307debb85799a11ebd081", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "85879032198", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000160000000009d3dbc400000000000000000000000000000001000000006a91c533", - "digest": "0xa2494fdee93aa8fcbc6325021833dbb2a6244022959ffcfb1de6adbf818c666a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100338", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099713", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3660", - "digest": "0xb63dd032a9ad9704b8734ecb0f201477d2c9c4f5358307debb85799a11ebd081", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099485", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1876750", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099013", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "131686", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "246", - "totalGas": "141318", - "transactionId": "0xf773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x89ae5bafdb22bda1a6e31ff96aa3630f83b3579ff8a9bc87adb2fd55f59c7a96f47cb16aa60ccd10d8445e4cb8c93dbe6e1996c25b0070f3f0b6bba74c1c69b7" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xf0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "162077", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1006b", - "utxoId": "0xc7865d9e1e2eca26fb0b203ff2758a5ca4158ea447abf5fbc0f51e9ad6ff50060000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70043", - "utxoId": "0xf773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xfa5ee5cff84907b3b7357f2b197375da05d6cb0a27c9918fd891649ab969aa63", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x91cf938b75ae1087a2a4127ef52a1711aaaf0b059b9d02b8a2aed4cbc9f52d4d", - "txPointer": "03bd1aa70043", - "utxoId": "0xf773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x03284bbc454d8bfed0c351392789159415dad9eba31f50afa45ab15c7bdaece3", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x13156e922eaab25ffd3d828b803f3a92051aedfcc8a5dd7cb5078d2d88671b56", - "txPointer": "03bd1aa70043", - "utxoId": "0xf773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "161826", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x55b3c4fdecf1427448c897d422c86230717aadc7873a77fa7ab1b1bdfbb30037", - "inputIndex": "2", - "stateRoot": "0x02a6d063076eea1b9dbb59b3cf953abc5c239bf9a32aa43ccfa9c4ff7358f56c" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xee26fbde1905d56f81324fd287b13bd4d0651363d50f10d73a28dbbb3f0d8425", - "inputIndex": "3", - "stateRoot": "0x9adf54b5dbc638fed4e90c0cf0cd8f87def69f947bacdbac0f44e0f246eb5c34" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84803ec9c1bb86ef88a09cd50a9b89bbd37451eb99d800fe48fe765e9b0a77dec1c80000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000085c23ada52b6fe5658b40f25888b94a4b3d0c1112e2d0049e148b2694ae4a3123d603dcf7e9ab15b11c45f5e5ea4261a28e3e8648eecbf584181513d0020757200000000000000000000006a91c5ab00000000000000000000000000023a366100000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000130000000009d35370000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000c7865d9e1e2eca26fb0b203ff2758a5ca4158ea447abf5fbc0f51e9ad6ff50060000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002791df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006b00000000000000000000000000000000000000000000000000000000000000000000000000000001f773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001f773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd0000000000000001fa5ee5cff84907b3b7357f2b197375da05d6cb0a27c9918fd891649ab969aa6391cf938b75ae1087a2a4127ef52a1711aaaf0b059b9d02b8a2aed4cbc9f52d4d0000000003bd1aa70000000000000043ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000001f773533e33e2426e8d0408d5592627ae5a4ec9ae26511556e068f723fd62f0dd000000000000000303284bbc454d8bfed0c351392789159415dad9eba31f50afa45ab15c7bdaece313156e922eaab25ffd3d828b803f3a92051aedfcc8a5dd7cb5078d2d88671b560000000003bd1aa700000000000000430a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027822f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000255b3c4fdecf1427448c897d422c86230717aadc7873a77fa7ab1b1bdfbb3003702a6d063076eea1b9dbb59b3cf953abc5c239bf9a32aa43ccfa9c4ff7358f56c00000000000000010000000000000003ee26fbde1905d56f81324fd287b13bd4d0651363d50f10d73a28dbbb3f0d84259adf54b5dbc638fed4e90c0cf0cd8f87def69f947bacdbac0f44e0f246eb5c340000000000000040e422416e9e7c7b62fe0a156b932030ffddaed287aa50fbaad24922e2257c450b204facedde8030bd52eb33f3c1118cfcbe9871b22357f6285f67c458cb9eb059", - "receiptsRoot": "0x3ec9c1bb86ef88a09cd50a9b89bbd37451eb99d800fe48fe765e9b0a77dec1c8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000085c23ada52b6fe5658b40f25888b94a4b3d0c1112e2d0049e148b2694ae4a3123d603dcf7e9ab15b11c45f5e5ea4261a28e3e8648eecbf584181513d0020757200000000000000000000006a91c5ab00000000000000000000000000023a366100000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000130000000009d35370000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023a3661", - "digest": "0xd624f88221d4353181bcc374ba0cd54371f3d2ccf981ef274159fcf32ac85411", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3661", - "digest": "0xa6154bcff1606152ed0d71612997e12896088eedc4cc5837baf81042023045a3", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "973907308976", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000130000000009d3537000000000000000000000000000000001000000006a91c533", - "digest": "0x7a509bcee192a0864cbc228e6e92df6d90b1db39695eb4b7ac2b5f829d488763", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100034", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099409", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3661", - "digest": "0xa6154bcff1606152ed0d71612997e12896088eedc4cc5837baf81042023045a3", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099181", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873774", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098709", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134662", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "251", - "totalGas": "144294", - "transactionId": "0xf0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe422416e9e7c7b62fe0a156b932030ffddaed287aa50fbaad24922e2257c450b204facedde8030bd52eb33f3c1118cfcbe9871b22357f6285f67c458cb9eb059" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x64ab35e5c7862650612a4a77c15f0e8456d381a213fddb0b0207b0fee6605ccb", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "162337", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1006c", - "utxoId": "0xb0af3e0abd6e8675ad2ec34ad2c07ba144875d85953b7797ad0e556d3c2a6f600000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x45384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a8", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70044", - "utxoId": "0xf0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc68eec068208d0f8a88aede88697619ba66b8aa7a719d02f36c9e0b8c77e0012", - "contractId": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "stateRoot": "0xb805742333e3d11adce92c75592106cc57a9f770a12fcbf1ee43df3ff5190dac", - "txPointer": "03bd1aa70007", - "utxoId": "0x70230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a50002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf641d1cc6cad78bce13818f213546b85c5aa5271d080f7cef6ea84ae1d024f77", - "contractId": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "stateRoot": "0x154d773071536a216c9a264b6405708d6f97680d8eb786d5fd73f74717d7c439", - "txPointer": "03bd1aa70007", - "utxoId": "0x70230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a50003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "162004", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x16fed31e09ad13463ff1cd8c58345034dcc07f08c874546f2749599943082735", - "inputIndex": "2", - "stateRoot": "0xcfd285c90743abf15ca04825f7f0163ee1a0cba23c0a32986baca349a2cd1e3f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x53da0c0abb976fb627e821efd6761ac86bf048df75599d5a75170cce9fb786ee", - "inputIndex": "3", - "stateRoot": "0xeef0a477305f6f2914b712904c12010bef5fcd850dfcbe6f38700032ec4e8576" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480b1c82c78a67fe6dea3774075cdedee0d4893d3078ac8ebdb7feab7685da6cae5000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000421b51eed25360ee62cdb86f0a28227a84a9eec91ac2ce00676ee0be251a6fbc736b17bc9738ce2805e98ca7b1c1f37f18bf7ad95e06a46c05683bde8569366500000000000000000000006a91c5ab0000000000000000000000000002f4312a0000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000953000000003c17e94000000000000000010000000000000001ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f7264657200000053c3458a002269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0ffffffffffffffff00000000000000010000000000000018000000003c17e94000000053c3458a000000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000b0af3e0abd6e8675ad2ec34ad2c07ba144875d85953b7797ad0e556d3c2a6f600000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027a21f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006c00000000000000000000000000000000000000000000000000000000000000000000000000000001f0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e000000000000000145384fb9fabc0bcb4d586edf1253be0e8f569e8de92a8643203eb9cabf2889a800000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000170230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a50000000000000002c68eec068208d0f8a88aede88697619ba66b8aa7a719d02f36c9e0b8c77e0012b805742333e3d11adce92c75592106cc57a9f770a12fcbf1ee43df3ff5190dac0000000003bd1aa700000000000000072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397000000000000000170230d8a0a51763c842d1fd25bdd01f202e21880a20d10011bc397ea551fe1a50000000000000003f641d1cc6cad78bce13818f213546b85c5aa5271d080f7cef6ea84ae1d024f77154d773071536a216c9a264b6405708d6f97680d8eb786d5fd73f74717d7c4390000000003bd1aa70000000000000007ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000278d4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000216fed31e09ad13463ff1cd8c58345034dcc07f08c874546f2749599943082735cfd285c90743abf15ca04825f7f0163ee1a0cba23c0a32986baca349a2cd1e3f0000000000000001000000000000000353da0c0abb976fb627e821efd6761ac86bf048df75599d5a75170cce9fb786eeeef0a477305f6f2914b712904c12010bef5fcd850dfcbe6f38700032ec4e857600000000000000400d3aef970ad2f0ac19c3af9fcc80f13a24b16cb2c538b94f7c6662680b1346d7602f35999b747c512af53cf5d56593fae9cc39510791c34e174a46ef0eceb3d4", - "receiptsRoot": "0xb1c82c78a67fe6dea3774075cdedee0d4893d3078ac8ebdb7feab7685da6cae5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad072b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000421b51eed25360ee62cdb86f0a28227a84a9eec91ac2ce00676ee0be251a6fbc736b17bc9738ce2805e98ca7b1c1f37f18bf7ad95e06a46c05683bde8569366500000000000000000000006a91c5ab0000000000000000000000000002f4312a0000000000000003ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000953000000003c17e94000000000000000010000000000000001ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397ca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b0000000000000014000000000000000c6372656174655f6f7264657200000053c3458a002269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0ffffffffffffffff00000000000000010000000000000018000000003c17e94000000053c3458a000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002f4312a", - "digest": "0xfda6d422aa1924c7db892c202d6ea6923b74025a9ea9c4f8678cd047486a06cb", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5ab0000000000000000000000000002f4312a", - "digest": "0xca685495de9bbe1fd15416ef6f600fae0c16f3f0122b94f9e4f0206c2c0dd4d7", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": "160096600000", - "assetId": "0x2269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000953000000003c17e94000000000000000010000000000000001000000006a91c533", - "digest": "0xf2f54107e935d3ec569239269602b2907f69b0944b9ecc0cc88366d66f388d49", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67100786", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67100161", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5ab0000000000000000000000000002f4312a", - "digest": "0xca685495de9bbe1fd15416ef6f600fae0c16f3f0122b94f9e4f0206c2c0dd4d7", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099933", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884140", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a6139700000000000000000000000000000000", - "digest": "0xbb12b82290efdd812bc0ad4d29c874d5fd4c7770aba5f41593fe26995d7e2c18", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67099013", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000011cfb6175fb0e12971e8cf17b90bc56df7e0506f4e647d0a4211cf909707ad9aca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b00000000000000000000006a91c5ab0000000000000000000000000002f4312a", - "digest": "0xca685495de9bbe1fd15416ef6f600fae0c16f3f0122b94f9e4f0206c2c0dd4d7", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098785", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "359758400000", - "assetId": "0x2269aa41cf3982753d978a40e0f04618ff9d84b07d1ce10e99831e3217d3a9b0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1871866", - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000954000000003c17e9400000000000000001000000000000000100000000000000012b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a613970000000000000001000000000000000100000053c3458a00000000003c17e940000000006a91c533", - "digest": "0x515da4e7d7c75ce3c3e81411be4299051d0871326d611fa6bfa0c0720b3de354", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67096945", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000954000000003c17e94000000000000000010000000000000001", - "digest": "0x16c4da303ea1f55022b1ca61909dca422ca43b73d4cf72dfa25731e7abde89dc", - "gas": null, - "gasUsed": null, - "id": "0xca78cbd896cd09f104cd32448e0ef155dace8a0a9ea21ad5f4f9435800038b9b", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67094817", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x2b50d625b7954585817c6f806c40277a7247575ad97ed3c44296254ad4a61397", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "181134", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "333", - "totalGas": "190962", - "transactionId": "0x64ab35e5c7862650612a4a77c15f0e8456d381a213fddb0b0207b0fee6605ccb" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x0d3aef970ad2f0ac19c3af9fcc80f13a24b16cb2c538b94f7c6662680b1346d7602f35999b747c512af53cf5d56593fae9cc39510791c34e174a46ef0eceb3d4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "146776", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1006d", - "utxoId": "0xad4be1aa41797fe55d4a6af57192301066e890a94dcfee15c5c866d75f8b22530000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70045", - "utxoId": "0x64ab35e5c7862650612a4a77c15f0e8456d381a213fddb0b0207b0fee6605ccb0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xee26fbde1905d56f81324fd287b13bd4d0651363d50f10d73a28dbbb3f0d8425", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x8b6d7b217bb36490c5a97ae23c695e822cf64fb8a8955619641a20602f5b9be5", - "txPointer": "03bd1aa70044", - "utxoId": "0xf0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x55b3c4fdecf1427448c897d422c86230717aadc7873a77fa7ab1b1bdfbb30037", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x5a4d72045fd4809746cdf1bd3bcf9088908805fa1df199197949f85d1fd9a013", - "txPointer": "03bd1aa70044", - "utxoId": "0xf0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "146537", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x32bbb7b2b7b55d4c55e65b7ce7f32527aaed13f59f5496d592881735993db108", - "inputIndex": "2", - "stateRoot": "0x375f5ca715707fba7019e19e1561f40240b553100fecf9e21d83d03a75021ff3" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x56800543ccc869bcc2310121762f8255d9ef4e09706f5b454264387f8c7e70a2", - "inputIndex": "3", - "stateRoot": "0x4dac2bb533bfcb6e832019f232a990fd2ef8cb3bb9fc35e8adb124167d823514" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d7a37feff7560b11881fec5671bda6d7944c023f8a56cfe0389a767030931ccd0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000899ef9c94f4b419f7271babbabcc22bbeba56b22a564dd49d011a83392159e1a5631ae9273f08a648165ed98cf6c0bb74ce9e010e52c72d61c262dfc2256ff8d00000000000000000000006a91c5ab00000000000000000000000000023a366200000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000040000000009d2cb80000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000ad4be1aa41797fe55d4a6af57192301066e890a94dcfee15c5c866d75f8b22530000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023d58f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006d0000000000000000000000000000000000000000000000000000000000000000000000000000000164ab35e5c7862650612a4a77c15f0e8456d381a213fddb0b0207b0fee6605ccb0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001f0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e0000000000000003ee26fbde1905d56f81324fd287b13bd4d0651363d50f10d73a28dbbb3f0d84258b6d7b217bb36490c5a97ae23c695e822cf64fb8a8955619641a20602f5b9be50000000003bd1aa700000000000000440a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000001f0b199dfc61dbe22be74064b6b16a09965c556e32e4ebac9626a4190ec0c4e5e000000000000000255b3c4fdecf1427448c897d422c86230717aadc7873a77fa7ab1b1bdfbb300375a4d72045fd4809746cdf1bd3bcf9088908805fa1df199197949f85d1fd9a0130000000003bd1aa70000000000000044ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000023c69f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000232bbb7b2b7b55d4c55e65b7ce7f32527aaed13f59f5496d592881735993db108375f5ca715707fba7019e19e1561f40240b553100fecf9e21d83d03a75021ff30000000000000001000000000000000356800543ccc869bcc2310121762f8255d9ef4e09706f5b454264387f8c7e70a24dac2bb533bfcb6e832019f232a990fd2ef8cb3bb9fc35e8adb124167d8235140000000000000040561e541424e70ae8d109aa9112d879b4234860ab743dd9be1395dac88dad19e6ef9dcd4d06a3e68a06d9e25742acdce7e58175a2ad602787b7c8a34c096b5d73", - "receiptsRoot": "0xd7a37feff7560b11881fec5671bda6d7944c023f8a56cfe0389a767030931ccd", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000899ef9c94f4b419f7271babbabcc22bbeba56b22a564dd49d011a83392159e1a5631ae9273f08a648165ed98cf6c0bb74ce9e010e52c72d61c262dfc2256ff8d00000000000000000000006a91c5ab00000000000000000000000000023a366200000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000040000000009d2cb80000000000000000000000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023a3662", - "digest": "0xfd6baba94335d997036877f4f5f423b6fba521513fcb1e65bdb31e6e2236629a", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3662", - "digest": "0xbe13d4f530bd0fbcf95dbb350a3ca1468f35060a5eb2fb377a04a16ca8d85ba5", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "1235099623360", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000040000000009d2cb8000000000000000000000000000000001000000006a91c533", - "digest": "0xd8c2b51345e9e0f2dc65e5fa5f6ff35c4a9d6165b2f48de9190a4458af9166cf", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100698", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100073", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3662", - "digest": "0xbe13d4f530bd0fbcf95dbb350a3ca1468f35060a5eb2fb377a04a16ca8d85ba5", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099845", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1880851", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099373", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127585", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "239", - "totalGas": "137217", - "transactionId": "0x0fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x561e541424e70ae8d109aa9112d879b4234860ab743dd9be1395dac88dad19e6ef9dcd4d06a3e68a06d9e25742acdce7e58175a2ad602787b7c8a34c096b5d73" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x40a4736b06df48501ecc77287b8e7af1b46c593f553898b5d31e0599515f09bf", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "157757", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1006e", - "utxoId": "0x6b30b7de439ad0ea5844b6264edc86828c413cac6342510e8acd5b001e74e47b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdb0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70046", - "utxoId": "0x0fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x5a1e0a7a3680b254b08067388414a0a93e6eb8d23ea9a5085d5456863f117571", - "contractId": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "stateRoot": "0x0bab2522a861879dd63acf9ae4777694e64466c997cc8f4d1670161114acd33a", - "txPointer": "03bd1aa7001e", - "utxoId": "0xadbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd340002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x14f5709ce6c82835c1e71d4dbd336a1e4ed9acfd7bc9b348ec1ef75837c70085", - "contractId": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "stateRoot": "0x1d87d4e00688f56a58a2eee701e092232e06177c120dd592c6e6c3d9466eca0d", - "txPointer": "03bd1aa7001e", - "utxoId": "0xadbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd340001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157367", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd363e300c058d35cc720190f3fa23057663d9427c46ced83d052aa71247c9636", - "inputIndex": "2", - "stateRoot": "0x2a2f4be6a323ad7c6226e874d13d44fac53063835a6227957623ab2ce0a85f1f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xd67890c330e8bbc0f5bdd8aa971f21b9847d145eeb96d13aae5a84d47ce7f0b6", - "inputIndex": "3", - "stateRoot": "0x1853d78a5f3bd8ec941c3d0632963e3b291027ad0b6f4418b10870760f701eeb" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480cb69cc0cfba1b4f6c5f49868485d211e31c6837719a24cbfd1c93cb1f2ce54ea000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c7cf93e6a019be6ddebe221024e5310724352610dcfbdc1afc749b1328a80742efbff82a9c31c457105e7679b66492a91ec7e0ad281faedcb537ab46160a953400000000000000000000006a91c5ab00000000000000000000000000029da7340000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000056000046e7899a990000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000030466601a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e56242cc8000000000030466600000000000000003000000000000006400000000000210ac0000000003bd1aab00000000000000006b30b7de439ad0ea5844b6264edc86828c413cac6342510e8acd5b001e74e47b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002683df8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006e000000000000000000000000000000000000000000000000000000000000000000000000000000010fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b0000000000000001db0d3bdef164ec29bc6250259c8ac658da91dc7176d09ab5d5a1754fe1bd63be00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001adbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd3400000000000000025a1e0a7a3680b254b08067388414a0a93e6eb8d23ea9a5085d5456863f1175710bab2522a861879dd63acf9ae4777694e64466c997cc8f4d1670161114acd33a0000000003bd1aa7000000000000001e132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000001adbe9b276558da2196fececc9a3b0e2dfa54b45bb412e6a67f2192649013fd34000000000000000114f5709ce6c82835c1e71d4dbd336a1e4ed9acfd7bc9b348ec1ef75837c700851d87d4e00688f56a58a2eee701e092232e06177c120dd592c6e6c3d9466eca0d0000000003bd1aa7000000000000001ee749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000266b7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002d363e300c058d35cc720190f3fa23057663d9427c46ced83d052aa71247c96362a2f4be6a323ad7c6226e874d13d44fac53063835a6227957623ab2ce0a85f1f00000000000000010000000000000003d67890c330e8bbc0f5bdd8aa971f21b9847d145eeb96d13aae5a84d47ce7f0b61853d78a5f3bd8ec941c3d0632963e3b291027ad0b6f4418b10870760f701eeb000000000000004064f3c37750236506d5ab5483cff542da52533875e0afde4b79c8b9a322d361cfaf0d24f48768ca26bf5eb47953ae4a2646d93592aaf736143a2acab228266e7e", - "receiptsRoot": "0xcb69cc0cfba1b4f6c5f49868485d211e31c6837719a24cbfd1c93cb1f2ce54ea", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c7cf93e6a019be6ddebe221024e5310724352610dcfbdc1afc749b1328a80742efbff82a9c31c457105e7679b66492a91ec7e0ad281faedcb537ab46160a953400000000000000000000006a91c5ab00000000000000000000000000029da7340000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000056000046e7899a990000000000000000010000000000000003132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc0000000000000014000000000000000c6372656174655f6f7264657200000000030466601a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03efffffffffffffffff00000000000000010000000000000018000046e56242cc8000000000030466600000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000029da734", - "digest": "0x22dceb8553d22ceec64b153c6d43e30742ee149b4cecaed3abc185fa0be80b1c", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5ab00000000000000000000000000029da734", - "digest": "0xc2fb8102cc4880dde50bac1fe9c991f04bd7f2802f992e02f177d823d8c09e15", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": "52225000", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000056000046e7899a990000000000000000010000000000000003000000006a91c533", - "digest": "0x07f9e41387220ab2eff26f46a70b029e604088ee5f6e3503f91f53760b76d328", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099738", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099113", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5ab00000000000000000000000000029da734", - "digest": "0xc2fb8102cc4880dde50bac1fe9c991f04bd7f2802f992e02f177d823d8c09e15", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67098885", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1873646", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a00000000000000000000000000000000", - "digest": "0x60ac9d69fe81ca4d4e5a181ff68c21eb015cb5f23c223d4ce6423a6dee90aab2", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67097965", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000005bd3d0e5c6539e9a94e8d5f9a0e13a5bc10c6f4650502ca5cf0e22a75c862e8a132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc00000000000000000000006a91c5ab00000000000000000000000000029da734", - "digest": "0xc2fb8102cc4880dde50bac1fe9c991f04bd7f2802f992e02f177d823d8c09e15", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097737", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "50620000", - "assetId": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef", - "contractId": null, - "data": null, - "digest": null, - "gas": "1861372", - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000022000046e56242cc80000000000000000100000000000000030000000000000001e749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a000000000000000100000000000000030000000003046660000046e56242cc80000000006a91c533", - "digest": "0xa1888a626aa8d421fd2075536f2d16ef804e0d452cd6853f833c61bccbe802e1", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67095897", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000022000046e56242cc8000000000000000010000000000000003", - "digest": "0xd70f11086813c6892c0ed630747d8e306136552e0bbd0f1d9ecf112136d1023a", - "gas": null, - "gasUsed": null, - "id": "0x132ab8709aff3d228bbb07af7d2338d1e4f1fcb060135922495147849dd6b8fc", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67091593", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe749999a6a5190a2e8a53582f508a2ab1c9ba378d37b69dd9d5a3fc95ff15f3a", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "213917", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "390", - "totalGas": "223745", - "transactionId": "0x40a4736b06df48501ecc77287b8e7af1b46c593f553898b5d31e0599515f09bf" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x64f3c37750236506d5ab5483cff542da52533875e0afde4b79c8b9a322d361cfaf0d24f48768ca26bf5eb47953ae4a2646d93592aaf736143a2acab228266e7e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e3", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "309220", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa1006f", - "utxoId": "0x80b3159c7d4b3c64dc52859b4887237a85eb0227ca393d4f4c597a1962476a1e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70047", - "utxoId": "0x40a4736b06df48501ecc77287b8e7af1b46c593f553898b5d31e0599515f09bf0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x188afa7fc1fb64525be7a17a7c2754fe1db0ce2ac566958532d40df5b9bbcaeb", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x19a46d6ce2d42995454f08f948080824184c176d511dae1a80fab194fc82e503", - "txPointer": "03bd1aa70029", - "utxoId": "0x41059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e970001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xdfd7eeafd5d96ba9f3fe3483855738fde82d630d6e8868edd80d2593ecbc891b", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0x1e3f9151668fbd741ddc59c7b6029662f87e6495ba0a1ec92ba64a979936dde8", - "txPointer": "03bd1aa70029", - "utxoId": "0x41059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e970002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "308913", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcad929e52d319274a0ac1a2391cfaca6fd8934b1e310e8f478c7376a6547f33b", - "inputIndex": "2", - "stateRoot": "0x8c75d5058a7f8e6574c988226d506ee855b08183abfbf03c7287b0666a37fd9b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xab4de2f7a8cad839661cd3fe57021fb10c82c7094a73fe47aef2ae50278be69d", - "inputIndex": "3", - "stateRoot": "0xad27b101505d8909641bf7aa8998d433a11f81deb63136205a08bb9375fe97e8" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848018d0f01b3d2696e7e41ca6e06a9cf1dd0e1e1b5f78c2b79997ead181f147220d000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007b3ac95b31d52265957ba36c78d49caf8b1fe5b6f20f2d43797a2c001b56c37ad2ddb41aaf299bc0d16737f3c4a3bdfc13c13a42c6a304c1f61fa5d6ca65a8f400000000000000000000006a91c5ab00000000000000000000000000022965670000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003200000000000cdae600000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000001b6a916a9c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cdae600007f1ebd3344000000000000000001000000000000006400000000000210ac0000000003bd1aab000000000000000080b3159c7d4b3c64dc52859b4887237a85eb0227ca393d4f4c597a1962476a1e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004b7e4f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000006f0000000000000000000000000000000000000000000000000000000000000000000000000000000140a4736b06df48501ecc77287b8e7af1b46c593f553898b5d31e0599515f09bf0000000000000001f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368000000000000000141059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e970000000000000001188afa7fc1fb64525be7a17a7c2754fe1db0ce2ac566958532d40df5b9bbcaeb19a46d6ce2d42995454f08f948080824184c176d511dae1a80fab194fc82e5030000000003bd1aa70000000000000029df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665000000000000000141059e35f5a8476b9a5a8cff48f4542a0d3d53de5408febc259fc008fb574e970000000000000002dfd7eeafd5d96ba9f3fe3483855738fde82d630d6e8868edd80d2593ecbc891b1e3f9151668fbd741ddc59c7b6029662f87e6495ba0a1ec92ba64a979936dde80000000003bd1aa7000000000000002967131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004b6b1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002cad929e52d319274a0ac1a2391cfaca6fd8934b1e310e8f478c7376a6547f33b8c75d5058a7f8e6574c988226d506ee855b08183abfbf03c7287b0666a37fd9b00000000000000010000000000000003ab4de2f7a8cad839661cd3fe57021fb10c82c7094a73fe47aef2ae50278be69dad27b101505d8909641bf7aa8998d433a11f81deb63136205a08bb9375fe97e80000000000000040e28fa7c46de5010e724a5379d6c3412e95c32cb76fdac0838e3191c175d802a91b3ebac2ab33a66ea97715ae374311d93db7ecd3fefcf8ae9787904c8adebf75", - "receiptsRoot": "0x18d0f01b3d2696e7e41ca6e06a9cf1dd0e1e1b5f78c2b79997ead181f147220d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000007b3ac95b31d52265957ba36c78d49caf8b1fe5b6f20f2d43797a2c001b56c37ad2ddb41aaf299bc0d16737f3c4a3bdfc13c13a42c6a304c1f61fa5d6ca65a8f400000000000000000000006a91c5ab00000000000000000000000000022965670000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003200000000000cdae600000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000001b6a916a9c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cdae600007f1ebd3344000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296567", - "digest": "0x40fa3d4d62fd65eac4d7733d314de6c13956ea425fc75acf0070a058d5dfd955", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296567", - "digest": "0x92380cc9bb9d904c1a10bdcccec6f2c2c46344349c7ae7d2ee42b494e7a4e137", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "201814530970", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003200000000000cdae600000000000000000000000000000001000000006a91c533", - "digest": "0x6f816febf357ac5bcda436a9815b6888cdc6b97029cce284cd292fff57b9dc88", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67102026", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67101401", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296567", - "digest": "0x92380cc9bb9d904c1a10bdcccec6f2c2c46344349c7ae7d2ee42b494e7a4e137", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67101173", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1898349", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67100253", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296567", - "digest": "0x92380cc9bb9d904c1a10bdcccec6f2c2c46344349c7ae7d2ee42b494e7a4e137", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67100025", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "117752031900", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886075", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003300000000000cdae600000000000000000000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000000000000000000000100007f1ebd33440000000000000cdae6000000006a91c533", - "digest": "0x0d563047b88d3f4fe2ebc1bddb4c067824cebd2c1325630b4662687a58fd06a9", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67098185", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003300000000000cdae600000000000000000000000000000001", - "digest": "0x7cee0bc41e93d1c6793085aa9cb9bbf94a6a48728134d9b1bbe372c890242647", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67096057", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "166165", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "307", - "totalGas": "175993", - "transactionId": "0xd48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e3" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe28fa7c46de5010e724a5379d6c3412e95c32cb76fdac0838e3191c175d802a91b3ebac2ab33a66ea97715ae374311d93db7ecd3fefcf8ae9787904c8adebf75" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe6b6f2b26ad28fd011cda91ebc5d9e05af3d9247c25a1e3620b3174ef27d5042", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "154724", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10071", - "utxoId": "0xed237b3789adda6b2a721306988811f8e263938edbad405aaf3d93ab22b623ed0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x55b8fae932d0de9c03bc489f11efaddcc7a4a2ec3d57e4d77c2a10e8c8eba285", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70048", - "utxoId": "0xd48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e30001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x31844a9ab30dbe15bbd1667bed3393b5836bbe2a3a9cba757d35d7a001d95a33", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0x1e5a6b39b3399e686eccfb6fa576dfec10e779555fe91207914b9b48d64cfede", - "txPointer": "03bd1aa7000a", - "utxoId": "0xace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f80002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x06d4b0615f4eb590d8804add2bc207541b643463cbbe5847cf42933b7b2f688c", - "contractId": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "stateRoot": "0x83b7c174672279107a255469fdfbae7cd41901e5d30c7540c3dfaaa5fa2403ba", - "txPointer": "03bd1aa7000a", - "utxoId": "0xace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f80003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "154489", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x8186e0aa0a0770905ef0b12c221c9daf2fbcf410b71ad917c70553c2b2cd0853", - "inputIndex": "2", - "stateRoot": "0x1030a39b4eef1b5917340f0f86a8e827233bb9a3a71bba64dc8803982c51b390" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xaab9042f734ceb1cfa6d797fc010078e13b5d84173856bbff149052504e05152", - "inputIndex": "3", - "stateRoot": "0xb26db417fb84ed06e245901eef93d18068732b6dd051adef67aa9c847ebc673f" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480d743ca28929d7c595a2a077f0ed15809299a778d02ed429f04bc2ea0f78a765e00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e13ec946120648a6792a3ccdc7332d10e21298386c1e5266a81de59d1351cc51a8655d17a850706161b0b2a3861a61880765db41138dde693d858aaaae6ac5f200000000000000000000006a91c5ab0000000000000000000000000000389b520000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f7264657200000036b979c800fdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0ffffffffffffffff0000000000000001000000000000001800000000d0a6006000000036b979c800000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000ed237b3789adda6b2a721306988811f8e263938edbad405aaf3d93ab22b623ed0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025c64f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000007100000000000000000000000000000000000000000000000000000000000000000000000000000001d48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e3000000000000000155b8fae932d0de9c03bc489f11efaddcc7a4a2ec3d57e4d77c2a10e8c8eba28500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f8000000000000000231844a9ab30dbe15bbd1667bed3393b5836bbe2a3a9cba757d35d7a001d95a331e5a6b39b3399e686eccfb6fa576dfec10e779555fe91207914b9b48d64cfede0000000003bd1aa7000000000000000a973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000001ace8f2098a31cf5705aac7628bd8316efa628a5347d2e8085d0c01fd4e6481f8000000000000000306d4b0615f4eb590d8804add2bc207541b643463cbbe5847cf42933b7b2f688c83b7c174672279107a255469fdfbae7cd41901e5d30c7540c3dfaaa5fa2403ba0000000003bd1aa7000000000000000a9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead00000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025b79f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000028186e0aa0a0770905ef0b12c221c9daf2fbcf410b71ad917c70553c2b2cd08531030a39b4eef1b5917340f0f86a8e827233bb9a3a71bba64dc8803982c51b39000000000000000010000000000000003aab9042f734ceb1cfa6d797fc010078e13b5d84173856bbff149052504e05152b26db417fb84ed06e245901eef93d18068732b6dd051adef67aa9c847ebc673f000000000000004090bc8dd5a7c570adcacd6b53178dacb8ff5f126d374fff64f4d14c667650642590242219b596234ed417064803353733f8b047661f39c30a2813f1b94965f918", - "receiptsRoot": "0xd743ca28929d7c595a2a077f0ed15809299a778d02ed429f04bc2ea0f78a765e", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e13ec946120648a6792a3ccdc7332d10e21298386c1e5266a81de59d1351cc51a8655d17a850706161b0b2a3861a61880765db41138dde693d858aaaae6ac5f200000000000000000000006a91c5ab0000000000000000000000000000389b520000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f7264657200000036b979c800fdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0ffffffffffffffff0000000000000001000000000000001800000000d0a6006000000036b979c8000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000000389b52", - "digest": "0xf833f1e3e8be29b79652d03a27368955a39699a08ac1c5eae10b4c3690c99fbb", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5ab0000000000000000000000000000389b52", - "digest": "0x69ff5ec67983df75781fa06f0492becd8fe3ad2855dae6e25d2fe0a2f0c39213", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead000000000000000000000000000000000", - "digest": "0x5fdac36b8fdfe3c681493be0ab4efb13c0cc55ef6aaf1bd62eaa1294f3c7159b", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000238e689f7b061ef4eba13a3a30fd06c683387e86f2176c1f5ef8bb5b1edfa2f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5ab0000000000000000000000000000389b52", - "digest": "0x69ff5ec67983df75781fa06f0492becd8fe3ad2855dae6e25d2fe0a2f0c39213", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "235040000000", - "assetId": "0xfdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000700000000d0a600600000000000000001000000000000000100000000000000019be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead00000000000000001000000000000000100000036b979c80000000000d0a60060000000006a91c533", - "digest": "0xecc9f75fdbaffb9c56e2794b7aabf950cb2a215511a30e0ff498c7f39625219f", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000700000000d0a6006000000000000000010000000000000001", - "digest": "0x66c1cfd14819b7be61df7e010bb094a26ef61649cde6c1d4c3354680fa0917ad", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67100118", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9be9da9c1930b37a6d21c496ba6dc0650102225a1c32f8bebfcef3dd0a77ead0", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125158", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "235", - "totalGas": "134779", - "transactionId": "0xe6b6f2b26ad28fd011cda91ebc5d9e05af3d9247c25a1e3620b3174ef27d5042" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x90bc8dd5a7c570adcacd6b53178dacb8ff5f126d374fff64f4d14c667650642590242219b596234ed417064803353733f8b047661f39c30a2813f1b94965f918" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x32bdcf02363c3da87066736b0d638b1f60871a18e9c45791c17c69a5e3920ae2", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153738", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10070", - "utxoId": "0x4075626cebc70d92231b7061deca444548d9fa501d6c3dc3f02382d90be91e350000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xab4de2f7a8cad839661cd3fe57021fb10c82c7094a73fe47aef2ae50278be69d", - "contractId": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "stateRoot": "0xe5a370e93d07b649ae223bf9a49784c6bd2ba83faab4e7ca369541a0eeb1bb75", - "txPointer": "03bd1aa70048", - "utxoId": "0xd48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e30003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe5021", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70049", - "utxoId": "0xe6b6f2b26ad28fd011cda91ebc5d9e05af3d9247c25a1e3620b3174ef27d50420001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcad929e52d319274a0ac1a2391cfaca6fd8934b1e310e8f478c7376a6547f33b", - "contractId": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "stateRoot": "0x8e3ae32af72e9ebd91116c89002a16944ea2ea9020b5f902e6fb1b4026f04d27", - "txPointer": "03bd1aa70048", - "utxoId": "0xd48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e30002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153428", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x05aaed3922c7f2e5ca51cc0e371f87a00e5c8b6faae402abc412fac1a7065e02", - "inputIndex": "1", - "stateRoot": "0x12fbf481b4226d22ccaa8d510a1e239b866498e440c311f0c04191ea7f7fd6e1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa5392ac3af99301cca9438ded9589a2fcbbc165d393a5d0960ccdd7b39468c6c", - "inputIndex": "3", - "stateRoot": "0x6a8ab0472e1b7b44b27f6ac30bc763a01c958d379a10a317de4b1cada3ce6779" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809a576c21c34d2052f711b069cb06386f15d0c140784a7267b38a96750a12386d000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008fa9b55c3a8589b931579bfe81719fb1b2383b21578fa002ddfdc1bc6d111e340f2432acd24f0c0e8ff8641958281e71d70a7128615c9e3f9029fc01e7f7408100000000000000000000006a91c5ab00000000000000000000000000022965680000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003700000000000cd42800000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000002a695ea1486c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cd4280000c50d51f112000000000000000001000000000000006400000000000210ac0000000003bd1aab00000000000000004075626cebc70d92231b7061deca444548d9fa501d6c3dc3f02382d90be91e350000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002588af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000001d48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e30000000000000003ab4de2f7a8cad839661cd3fe57021fb10c82c7094a73fe47aef2ae50278be69de5a370e93d07b649ae223bf9a49784c6bd2ba83faab4e7ca369541a0eeb1bb750000000003bd1aa7000000000000004867131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f0000000000000001e6b6f2b26ad28fd011cda91ebc5d9e05af3d9247c25a1e3620b3174ef27d50420000000000000001f36d90c2027aedb086fee5f9b99713a0789c8d0645bfe5402654d5b102fe502100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001d48e67b9bf62b939e58848e4dc1d514793e2dcdb06927a80f8275449fcacc8e30000000000000002cad929e52d319274a0ac1a2391cfaca6fd8934b1e310e8f478c7376a6547f33b8e3ae32af72e9ebd91116c89002a16944ea2ea9020b5f902e6fb1b4026f04d270000000003bd1aa70000000000000048df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025754f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000105aaed3922c7f2e5ca51cc0e371f87a00e5c8b6faae402abc412fac1a7065e0212fbf481b4226d22ccaa8d510a1e239b866498e440c311f0c04191ea7f7fd6e1000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003a5392ac3af99301cca9438ded9589a2fcbbc165d393a5d0960ccdd7b39468c6c6a8ab0472e1b7b44b27f6ac30bc763a01c958d379a10a317de4b1cada3ce677900000000000000408bf6e3a8d5e5fa7f500e1fda619f80dc522dc9279babad5ce37ad9eebcf92c719214e11b5bcc2d1c9f399d4e1cc2b35feb01dffbe230d21c5713177360b9aa57", - "receiptsRoot": "0x9a576c21c34d2052f711b069cb06386f15d0c140784a7267b38a96750a12386d", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0767131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008fa9b55c3a8589b931579bfe81719fb1b2383b21578fa002ddfdc1bc6d111e340f2432acd24f0c0e8ff8641958281e71d70a7128615c9e3f9029fc01e7f7408100000000000000000000006a91c5ab00000000000000000000000000022965680000000000000003df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000003700000000000cd42800000000000000000000000000000001df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014fdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca26650000000000000014000000000000000c6372656174655f6f726465720000002a695ea1486c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000000cd4280000c50d51f112000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002296568", - "digest": "0x3b7c6188c65c88fd188d3848a373370fe23e4521214402c624415e9dc13d824b", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296568", - "digest": "0xfccd17056a0c25072c84caa579ccf9d749353855655e1486f36da9e19a75c04d", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": "250371881712", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003700000000000cd42800000000000000000000000000000001000000006a91c533", - "digest": "0x3192a36cbb4bff6dc51d2d7352d547dda843db5a92adace36c0c59679b5c8393", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67101858", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67101233", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296568", - "digest": "0xfccd17056a0c25072c84caa579ccf9d749353855655e1486f36da9e19a75c04d", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67101005", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1896955", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f00000000000000000000000000000000", - "digest": "0xbc9208fac69e174e14fafc1f9cb8032b724de40ac76cf69650534a264ce76dfb", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67100085", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b11e33e019ae7a04a1e96cf03fc15d92d61540390df3472012d04f5634cc3096df873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca266500000000000000000000006a91c5ab0000000000000000000000000002296568", - "digest": "0xfccd17056a0c25072c84caa579ccf9d749353855655e1486f36da9e19a75c04d", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099857", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "182156435784", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1884681", - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003800000000000cd42800000000000000000000000000000001000000000000000167131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f000000000000000000000000000000010000c50d51f1120000000000000cd428000000006a91c533", - "digest": "0x7afaa088bc27b597bf5bd5a2c409c4a071fc89cf66e86c9d6ac1f40e1e2932e9", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67098017", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000003800000000000cd42800000000000000000000000000000001", - "digest": "0xb9b4f7c21282e04596baa58f9f7665b5b8965ec2fad6e7d34b0f98991e1337b8", - "gas": null, - "gasUsed": null, - "id": "0xdf873d85d8d81f2863cecd5026de76efd3d51a47736ad46d1110c56695ca2665", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67095889", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x67131671734e1f9ad71876446b46cfa799335b1e2e067647b77149695476014f", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "168265", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "310", - "totalGas": "178093", - "transactionId": "0x32bdcf02363c3da87066736b0d638b1f60871a18e9c45791c17c69a5e3920ae2" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x8bf6e3a8d5e5fa7f500e1fda619f80dc522dc9279babad5ce37ad9eebcf92c719214e11b5bcc2d1c9f399d4e1cc2b35feb01dffbe230d21c5713177360b9aa57" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe9743cbe8d94645e357cb367f6ff1db131dac18804d76697186a0128c0fb5c74", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "152947", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10075", - "utxoId": "0x19bf2472ac25b360b42fba844272427ebd48f44a5217591953927d51d3318cbb0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc3b60dd7bfc484e8744cda4f908331a6472995bdd91ce9b81882d1692ca27560", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7004a", - "utxoId": "0x32bdcf02363c3da87066736b0d638b1f60871a18e9c45791c17c69a5e3920ae20002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe6d7fd38dbb290182c6bb2d19ba9943e67395c627374eb300c4a1dd5cdfcdbdd", - "contractId": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "stateRoot": "0xb16f5eb53a628f7cd6ffcd1651e4d4b784768007101e6ea71b37d0d187402165", - "txPointer": "03bd1aa50073", - "utxoId": "0xea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f10003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0ceda39f60954212ae4e1460a019dc02a306e6bce1f83acf033fa0524f69d140", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0x3365f2f17168546f9675624988ca65a902f65121e2f4966507843c92c1a845d6", - "txPointer": "03bd1aa70049", - "utxoId": "0xe6b6f2b26ad28fd011cda91ebc5d9e05af3d9247c25a1e3620b3174ef27d50420002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "152704", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc17dc62afe80db0bb633d493f3399019385ded17ae0afb6913d6b412ac766086", - "inputIndex": "2", - "stateRoot": "0x8b3b99b49ef6b116249fab264d22bb02cda00b8c8699279b4ab4c127f3eaa7f9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x13a25de6cf002d13996b04a08351e5fd35ecb9493bc09f9df25f0ecc92ebbd14", - "inputIndex": "3", - "stateRoot": "0x6484d1ac60048d790a9a61bf7dcf166bb31ff0cde348c1253ccd4c61841aba77" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480c285cb2077657599c8364341dbdca1ff7c430bc8a0e884b681d1decd4e1b158c00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f200000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000fbc72b226c165cc458432014cac90667f170014fedda7affa0604a9ff4d603f288b6f78d1384dc428f6995ab0fe771edf1938f7cde6395916ae485f5b2fe92ba00000000000000000000006a91c5ab0000000000000000000000000000054c510000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000048fcf7906c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d0899ec00000000014dc9380000000000000000300000000000000000000006400000000000210ac0000000003bd1aab000000000000000019bf2472ac25b360b42fba844272427ebd48f44a5217591953927d51d3318cbb0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025573f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000750000000000000000000000000000000000000000000000000000000000000000000000000000000132bdcf02363c3da87066736b0d638b1f60871a18e9c45791c17c69a5e3920ae20000000000000002c3b60dd7bfc484e8744cda4f908331a6472995bdd91ce9b81882d1692ca2756000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004a02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ea62826a4c8c004baf82be05c3cd8947eb31d6d0c76dfd833af4d73bef9628f10000000000000003e6d7fd38dbb290182c6bb2d19ba9943e67395c627374eb300c4a1dd5cdfcdbddb16f5eb53a628f7cd6ffcd1651e4d4b784768007101e6ea71b37d0d1874021650000000003bd1aa50000000000000073168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f20000000000000001e6b6f2b26ad28fd011cda91ebc5d9e05af3d9247c25a1e3620b3174ef27d504200000000000000020ceda39f60954212ae4e1460a019dc02a306e6bce1f83acf033fa0524f69d1403365f2f17168546f9675624988ca65a902f65121e2f4966507843c92c1a845d60000000003bd1aa70000000000000049973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025480f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c17dc62afe80db0bb633d493f3399019385ded17ae0afb6913d6b412ac7660868b3b99b49ef6b116249fab264d22bb02cda00b8c8699279b4ab4c127f3eaa7f90000000000000001000000000000000313a25de6cf002d13996b04a08351e5fd35ecb9493bc09f9df25f0ecc92ebbd146484d1ac60048d790a9a61bf7dcf166bb31ff0cde348c1253ccd4c61841aba770000000000000040e0f6ed695807e5fdeda5f7466c8b1311c9bd9e5eccfbe23d20d739bc2a903772f33548f86767495461091a0182ecdd2fcc191e7343761a0848347640368249bc", - "receiptsRoot": "0xc285cb2077657599c8364341dbdca1ff7c430bc8a0e884b681d1decd4e1b158c", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f200000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000fbc72b226c165cc458432014cac90667f170014fedda7affa0604a9ff4d603f288b6f78d1384dc428f6995ab0fe771edf1938f7cde6395916ae485f5b2fe92ba00000000000000000000006a91c5ab0000000000000000000000000000054c510000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000048fcf7906c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000d0899ec00000000014dc93800000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000000054c51", - "digest": "0x440daeaa6ea03ed937edea015e732597f9d63db07dd15f18c9f9862daee98c1e", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000daba93b9a95537bea9c33dbba499bc06ff1eab04d474be35d5dc680b5b3d89f5973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5ab0000000000000000000000000000054c51", - "digest": "0xb6d96bfaf2475e39847a75055de92b6339b2e65cefdb87186bf221724a33e621", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": "1224013000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f200000000000000000000000048f4f4c8", - "digest": "0x9ab0e1313246bb3dd7ee6dc5d8219244e4342d992ee2d6de3ccb8d3d1bbee361", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000daba93b9a95537bea9c33dbba499bc06ff1eab04d474be35d5dc680b5b3d89f5973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5ab0000000000000000000000000000054c51", - "digest": "0xb6d96bfaf2475e39847a75055de92b6339b2e65cefdb87186bf221724a33e621", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1224538000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f00000000d0899ec0000000000000000000000000000000030000000000000001168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2000000000000000000000000000000030000000014dc938000000000d0899ec0000000006a91c533", - "digest": "0x9fc6ceaeb73c8303b81717a01f8dbb67fe65cec8939a3b87af2ccb590c1a7fb5", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f00000000d0899ec000000000000000000000000000000003", - "digest": "0x0c2c2f863f34e87fb59b5d3da9bb369282476c5f7d93f017f40c65c40a0e47a5", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099798", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x168f85199533d219cd9281989ce7b8da226c950b46a60cae7bd2f3c2571df1f2", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129735", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "243", - "totalGas": "139356", - "transactionId": "0xe9743cbe8d94645e357cb367f6ff1db131dac18804d76697186a0128c0fb5c74" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe0f6ed695807e5fdeda5f7466c8b1311c9bd9e5eccfbe23d20d739bc2a903772f33548f86767495461091a0182ecdd2fcc191e7343761a0848347640368249bc" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xe4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c6317", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "298659", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10072", - "utxoId": "0x4f83f63fc0bbd752d3d4f1e31dee30627f9fe3ba490dad077b9c671b5a59484b0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7004b", - "utxoId": "0xe9743cbe8d94645e357cb367f6ff1db131dac18804d76697186a0128c0fb5c740001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6c84e834bf2ec2e62ae767213846b257006a5533b62932851276c17ada168393", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xded2ed2923c5ef754b4c9d7ab36bd9a2d60cba67f4f8a0e6aaceb19648e7224a", - "txPointer": "03bd1aa7002c", - "utxoId": "0xe87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xd4abd0700a76273465dcfc42dd4722d3f2b2ca1294cc2ae69740f923334abf24", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x50a43bdaa2659932d1c67840319f2f27f9743c915a20ae1a19ddf7719158554f", - "txPointer": "03bd1aa7002c", - "utxoId": "0xe87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "298424", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xe304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8", - "inputIndex": "2", - "stateRoot": "0x500345c98a5c787ec2edd6befa9be24c9d4d12a97aafa8b67954833d81162eb2" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c0", - "inputIndex": "3", - "stateRoot": "0x5ef487adac61d8b025cfe3ffd225978c8049dfecf1f681af50b057ed1f27b161" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480778148f15458af1c7b251a41f028bd51b1a349e1bfe2f7e67638923823f36f970000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c73011f16a6e8b0d23f58dd0f3fea06c193077f482237f2f7195e7595ce91244413d1398fd707af1bb66ccaaa46a55ea253bb5f64b935b96fd12c68ca4f6515500000000000000000000006a91c5ab000000000000000000000000000251cf5400000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000110000000108eff1b0000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab00000000000000004f83f63fc0bbd752d3d4f1e31dee30627f9fe3ba490dad077b9c671b5a59484b0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048ea3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000007200000000000000000000000000000000000000000000000000000000000000000000000000000001e9743cbe8d94645e357cb367f6ff1db131dac18804d76697186a0128c0fb5c740000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb00000000000000016c84e834bf2ec2e62ae767213846b257006a5533b62932851276c17ada168393ded2ed2923c5ef754b4c9d7ab36bd9a2d60cba67f4f8a0e6aaceb19648e7224a0000000003bd1aa7000000000000002c4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001e87a1ab58c59f3521355b6d3f085e51fa8ac3d8d4ee8522755f060b98d0da3bb0000000000000003d4abd0700a76273465dcfc42dd4722d3f2b2ca1294cc2ae69740f923334abf2450a43bdaa2659932d1c67840319f2f27f9743c915a20ae1a19ddf7719158554f0000000003bd1aa7000000000000002cb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000048db8f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002e304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8500345c98a5c787ec2edd6befa9be24c9d4d12a97aafa8b67954833d81162eb200000000000000010000000000000003060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c05ef487adac61d8b025cfe3ffd225978c8049dfecf1f681af50b057ed1f27b16100000000000000403b12f66d641abf2eadfe21fe9b2f586d08b1d09613e74136885cdd82f42ae1bd1e70cefe756d23558d5c54f865a9fa1dd03f631feb80e6d71fa08223c077d2b6", - "receiptsRoot": "0x778148f15458af1c7b251a41f028bd51b1a349e1bfe2f7e67638923823f36f97", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c73011f16a6e8b0d23f58dd0f3fea06c193077f482237f2f7195e7595ce91244413d1398fd707af1bb66ccaaa46a55ea253bb5f64b935b96fd12c68ca4f6515500000000000000000000006a91c5ab000000000000000000000000000251cf5400000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000110000000108eff1b0000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf54", - "digest": "0x2a36281e0eadc51be097d21c3271fc81ef87bddab32c9c23171e3a47c3106e29", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf54", - "digest": "0x10df87488fe540d1dbaf89707c4869352f3bf835b0abcabe0b8824db32f496dc", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "483240000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000110000000108eff1b000000000000000010000000000000001000000006a91c533", - "digest": "0xd372bd131e81e821a6f6f46c5f70ab73c3ab48f99c224d4b7500309f8521ecee", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101114", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100489", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf54", - "digest": "0x10df87488fe540d1dbaf89707c4869352f3bf835b0abcabe0b8824db32f496dc", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100261", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1883192", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099789", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125244", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "235", - "totalGas": "134876", - "transactionId": "0xe4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c6317" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x3b12f66d641abf2eadfe21fe9b2f586d08b1d09613e74136885cdd82f42ae1bd1e70cefe756d23558d5c54f865a9fa1dd03f631feb80e6d71fa08223c077d2b6" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x09df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "160526", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10073", - "utxoId": "0x6fd5a8f9c3f7c40d35ed310a0bc26bb6806e426dd4923620965bb5401b7005260000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a8", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0x1d407091815c92e05edf4cb1c23e53873534b092e0aede0d56d5ceff3a0966d3", - "txPointer": "03bd1aa7004c", - "utxoId": "0xe4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c63170002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7004c", - "utxoId": "0xe4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c63170001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c0", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x40d901a8b9195af6e8f5c41146e4255bb08528cf4409f19c5fb6d3e60a0d09df", - "txPointer": "03bd1aa7004c", - "utxoId": "0xe4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c63170003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "160300", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x48d69bf062a34b2b15f273ab98cc8fdcbc88f9042791c7b5e6475acc447bc272", - "inputIndex": "1", - "stateRoot": "0x3466400513e20ca8c62d41a1a1e6dc2fe1cbc7ea3a0648b6eca8f59c2b80d32e" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xcd47306ce70e820c14d3a7010587ea8e9d599cde9fc65651451c14fe0baf137a", - "inputIndex": "3", - "stateRoot": "0x151df1abc0b05554e620596e537d928ead8829458d57decb32f8fe1c28f082ff" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84803e1af6709c358b98a2efae6d582da8a53a6e03470341e8421b890b1e4d6d9f050000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005e7941d83c6ece979bc925d352153c846b50b9c00e5aabe9fa5d31d8e0a3281074df4a3c1cebf8bf89b2281f4a728491f8cd51eede9cb509439653fa900e609000000000000000000000006a91c5ab000000000000000000000000000251cf5500000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000018000000010902dd70000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab00000000000000006fd5a8f9c3f7c40d35ed310a0bc26bb6806e426dd4923620965bb5401b7005260000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002730ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000007300000000000000000000000000000000000000000000000000000000000000000000000000000001e4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c63170000000000000002e304aeb084369e95ac6d76480fe43b95e19a904e81ad665a31b4381bc5d6b8a81d407091815c92e05edf4cb1c23e53873534b092e0aede0d56d5ceff3a0966d30000000003bd1aa7000000000000004c4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000001e4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c63170000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e4bcc901e764a6642b131176388a742c9c421798cd538c49fcf8d64cd89c63170000000000000003060732f8e8455e6cc9df577659d3f1af97f1d04d5c29dfbb25aede03ebd1e0c040d901a8b9195af6e8f5c41146e4255bb08528cf4409f19c5fb6d3e60a0d09df0000000003bd1aa7000000000000004cb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed28615710000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002722cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000148d69bf062a34b2b15f273ab98cc8fdcbc88f9042791c7b5e6475acc447bc2723466400513e20ca8c62d41a1a1e6dc2fe1cbc7ea3a0648b6eca8f59c2b80d32e000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003cd47306ce70e820c14d3a7010587ea8e9d599cde9fc65651451c14fe0baf137a151df1abc0b05554e620596e537d928ead8829458d57decb32f8fe1c28f082ff0000000000000040c0db22f0c05db68532be11a4fe2838a7f63bd29b1837d3a6967cad67c86afb459b02c36c75a545d0296bb3376ce47eaabc92646b4afc209afb8c95233a83532b", - "receiptsRoot": "0x3e1af6709c358b98a2efae6d582da8a53a6e03470341e8421b890b1e4d6d9f05", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000005e7941d83c6ece979bc925d352153c846b50b9c00e5aabe9fa5d31d8e0a3281074df4a3c1cebf8bf89b2281f4a728491f8cd51eede9cb509439653fa900e609000000000000000000000006a91c5ab000000000000000000000000000251cf5500000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000018000000010902dd70000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf55", - "digest": "0xb3541bb92907b97af69e5ea7126b0da283fabfed2df143166a42020ecb7b0779", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf55", - "digest": "0xc57125da68a6a80cd2d5a218a1cce9184977022a802302b05b4c1fcfe94e37b8", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "46940000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000018000000010902dd7000000000000000010000000000000001000000006a91c533", - "digest": "0x99a86e42326d6f96616a7d0aa67718f6f8e07b2fb4182f9324af99dcd8205392", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101706", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67101081", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf55", - "digest": "0xc57125da68a6a80cd2d5a218a1cce9184977022a802302b05b4c1fcfe94e37b8", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100853", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1888446", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100381", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "119990", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "226", - "totalGas": "129622", - "transactionId": "0x09df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xc0db22f0c05db68532be11a4fe2838a7f63bd29b1837d3a6967cad67c86afb459b02c36c75a545d0296bb3376ce47eaabc92646b4afc209afb8c95233a83532b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xd54572888c11d36ad23e16fa1194588ab4d8439026ab6a782bf175ddec1a30fd", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "155361", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10074", - "utxoId": "0xbbb477b9a4fb79cd599b3570f8586fcabbb980bb3d572917c5821b97a2f044810000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x48d69bf062a34b2b15f273ab98cc8fdcbc88f9042791c7b5e6475acc447bc272", - "contractId": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "stateRoot": "0xee9fac45ed01c720c1faeccef6eeb18f638ce7db839b4b237fb2ab03a554716a", - "txPointer": "03bd1aa7004d", - "utxoId": "0x09df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xcd47306ce70e820c14d3a7010587ea8e9d599cde9fc65651451c14fe0baf137a", - "contractId": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "stateRoot": "0x6c19643adb6d21cc247ae74c050bef6d75963f0720c8fd4765690a2b1fefb5ec", - "txPointer": "03bd1aa7004d", - "utxoId": "0x09df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7004d", - "utxoId": "0x09df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "155125", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x18bfb0f664342bf68e22e8269c60755661b37beb8eef824e4fb90670c7222fc1", - "inputIndex": "1", - "stateRoot": "0x09aa532e242801addb33ef6730d5499e2e1483aa8da29262a2d101bef4d078be" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xad82a06e9255147a4b00bbf4e73ce085dac1fa41d6271562e1f79c2586cb8311", - "inputIndex": "2", - "stateRoot": "0x1a6974d2ecdefe0b032898eac9af4b552f8cd78796f25acf483a25ea756277e1" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f592c31b6340b46e53bf69f742ccc030095e600f5da3146a19f8fb620374f7a80000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d61db2e2cae734472f8a9b0d0a31fbb364784e21f2bd3984f96ee6bfa6bd46bc271ec8fd24b281b48cea33395f28b16acf81b0e675817d7de6d9ae695c13245a00000000000000000000006a91c5ab000000000000000000000000000251cf5600000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000000108fc26b0000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000bbb477b9a4fb79cd599b3570f8586fcabbb980bb3d572917c5821b97a2f044810000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025ee1f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000740000000000000000000000000000000000000000000000000000000000000000000000000000000109df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e000000000000000148d69bf062a34b2b15f273ab98cc8fdcbc88f9042791c7b5e6475acc447bc272ee9fac45ed01c720c1faeccef6eeb18f638ce7db839b4b237fb2ab03a554716a0000000003bd1aa7000000000000004d4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939000000000000000109df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e0000000000000003cd47306ce70e820c14d3a7010587ea8e9d599cde9fc65651451c14fe0baf137a6c19643adb6d21cc247ae74c050bef6d75963f0720c8fd4765690a2b1fefb5ec0000000003bd1aa7000000000000004db8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571000000000000000109df953e59b322f94b1b0398e9cf7e5affb781c04d7ed4fc0ed9d547dcd3097e0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025df5f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000118bfb0f664342bf68e22e8269c60755661b37beb8eef824e4fb90670c7222fc109aa532e242801addb33ef6730d5499e2e1483aa8da29262a2d101bef4d078be00000000000000010000000000000002ad82a06e9255147a4b00bbf4e73ce085dac1fa41d6271562e1f79c2586cb83111a6974d2ecdefe0b032898eac9af4b552f8cd78796f25acf483a25ea756277e100000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040cdce84e1f34243c88b9c66d1521c570ef655126628aba563426edef7b456c0751ed19951b5876b0ccd7799e51e462bbccd81dea429e92a9508202eb61e17862c", - "receiptsRoot": "0xf592c31b6340b46e53bf69f742ccc030095e600f5da3146a19f8fb620374f7a8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000d61db2e2cae734472f8a9b0d0a31fbb364784e21f2bd3984f96ee6bfa6bd46bc271ec8fd24b281b48cea33395f28b16acf81b0e675817d7de6d9ae695c13245a00000000000000000000006a91c5ab000000000000000000000000000251cf5600000000000000024added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000001d0000000108fc26b0000000000000000100000000000000014added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e329390000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000251cf56", - "digest": "0x03e11a743256af8ce6eb5f0d43308ee1138e455116d721d9d415dd59f206d614", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf56", - "digest": "0x677346e55209fa0db72afe7554a6a564637b67629e706ea586965d5b0e265e3f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": "64500000000", - "assetId": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000001d0000000108fc26b000000000000000010000000000000001000000006a91c533", - "digest": "0x8ece09ccd7975176253409632d8bde47aefbba889661f5afe6cf6bd30deef219", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101082", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100457", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c530d5a1da562e41cf2185b2b685243ff1e2159cc8fab327e3b35cc7da50fd4b4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e3293900000000000000000000006a91c5ab000000000000000000000000000251cf56", - "digest": "0x677346e55209fa0db72afe7554a6a564637b67629e706ea586965d5b0e265e3f", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100229", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1882463", - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001b8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed286157100000000000000000000000000000000", - "digest": "0x3333f6696fc93482088aa84065e82f0e5e72b1f01df2b69e282e3aaaf0850064", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099757", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x4added94e0ee97696d1a7baae2cdaaa88e7f0c3f1552aa53ec7fa04912e32939", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xb8c6c58c9c1feebc158b221b766887695b8fe9d53cd0e8b20a0cf81ed2861571", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "125973", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "236", - "totalGas": "135605", - "transactionId": "0xd54572888c11d36ad23e16fa1194588ab4d8439026ab6a782bf175ddec1a30fd" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xcdce84e1f34243c88b9c66d1521c570ef655126628aba563426edef7b456c0751ed19951b5876b0ccd7799e51e462bbccd81dea429e92a9508202eb61e17862c" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x78fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "148103", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10076", - "utxoId": "0xb14ea40cc2367e5782a58a54958e4587c38169136465a035edac567bfefee3470000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb00ee0bfca7aeae4f1172bfc7fcea3f7aa3e9d1d75720bbb9a77af2a4bdea752", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x36db59ef72fa566a09a5daa8507a2d4a6ed93debcfdc6eb0dd382ccf3058b6fc", - "txPointer": "03bd1aa70026", - "utxoId": "0xacb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7004e", - "utxoId": "0xd54572888c11d36ad23e16fa1194588ab4d8439026ab6a782bf175ddec1a30fd0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x84eaed06a0f56417e53f1d409409e65e42786035084782f41494c3e335a5cec7", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x8fc41fb53500f4c033b94dfd60225c5499a86ea9e4d28b238624855504d9a42d", - "txPointer": "03bd1aa70026", - "utxoId": "0xacb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b50002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "147858", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x91ae9e4aae92bb0f67ed2a16604a8127a9ab87478aac4652d658415ae5c6e6fb", - "inputIndex": "1", - "stateRoot": "0xc5b29d6c2c0ed5d4f4d7f633dcf3a029e635e10f9c174b8704179f3863594b7a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x2724c7798b005008231052d4b885b6c3cb9b6712dc6c3f81dd1f1af6ddcf2e71", - "inputIndex": "3", - "stateRoot": "0x223330ee5ef188a40ff3664c01e024fc80aa0c8d4fd79d0b68d17a376a606f15" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ef64e0a7691eef5c5f0bc9eac3d9064faffc5b2f21e56665b7a6373c4a20a91a0000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e24ba15ac06226ea9b631fc85e2609c323d04b0ce32a201b3e0347ea29e72fa6ff1e6ba95a75f038deb937514a642d86089c752d48ede81315e07e98a9cf2a2b00000000000000000000006a91c5ab00000000000000000000000000023dd54a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005a000000001544560000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aab0000000000000000b14ea40cc2367e5782a58a54958e4587c38169136465a035edac567bfefee3470000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024287f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa1000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000001acb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b50000000000000003b00ee0bfca7aeae4f1172bfc7fcea3f7aa3e9d1d75720bbb9a77af2a4bdea75236db59ef72fa566a09a5daa8507a2d4a6ed93debcfdc6eb0dd382ccf3058b6fc0000000003bd1aa70000000000000026e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d2401095630000000000000001d54572888c11d36ad23e16fa1194588ab4d8439026ab6a782bf175ddec1a30fd0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001acb79d096723f0e317de9dcae4cd1ad061093a0761ce0469ef58e36b842524b5000000000000000284eaed06a0f56417e53f1d409409e65e42786035084782f41494c3e335a5cec78fc41fb53500f4c033b94dfd60225c5499a86ea9e4d28b238624855504d9a42d0000000003bd1aa70000000000000026ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024192f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000191ae9e4aae92bb0f67ed2a16604a8127a9ab87478aac4652d658415ae5c6e6fbc5b29d6c2c0ed5d4f4d7f633dcf3a029e635e10f9c174b8704179f3863594b7a0000000000000001000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000032724c7798b005008231052d4b885b6c3cb9b6712dc6c3f81dd1f1af6ddcf2e71223330ee5ef188a40ff3664c01e024fc80aa0c8d4fd79d0b68d17a376a606f150000000000000040ea0a8a996b37409f5797606082b4eb33d131575220a805f5e78d69e4aaf53b1e70540eac4712bfc1a2a3c96c399ea3559cecde4937740e6ec6fc2a95c1ced38e", - "receiptsRoot": "0xef64e0a7691eef5c5f0bc9eac3d9064faffc5b2f21e56665b7a6373c4a20a91a", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000e24ba15ac06226ea9b631fc85e2609c323d04b0ce32a201b3e0347ea29e72fa6ff1e6ba95a75f038deb937514a642d86089c752d48ede81315e07e98a9cf2a2b00000000000000000000006a91c5ab00000000000000000000000000023dd54a0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005a000000001544560000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023dd54a", - "digest": "0x9d13f20d132bbc86517ff3e1b3571f4f91353872056bb252f958e67942137769", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd54a", - "digest": "0x7e6d801e0537e294774c1578ec05e1c4c4362b47984ad28ba2d5341ae75c802d", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "4297300000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005a000000001544560000000000000000010000000000000001000000006a91c533", - "digest": "0x87ed363b38737742782d70ecd5ad3ea93fd4f3df45aef10e6837a0f19b5ce4df", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100370", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099745", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd54a", - "digest": "0x7e6d801e0537e294774c1578ec05e1c4c4362b47984ad28ba2d5341ae75c802d", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099517", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1877570", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099045", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "130866", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "245", - "totalGas": "140498", - "transactionId": "0x78fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xea0a8a996b37409f5797606082b4eb33d131575220a805f5e78d69e4aaf53b1e70540eac4712bfc1a2a3c96c399ea3559cecde4937740e6ec6fc2a95c1ced38e" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x67ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "163897", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10077", - "utxoId": "0x8924871160308a458629c8c745fac48d872f53b4d3caf709cfe2666088c687900000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2724c7798b005008231052d4b885b6c3cb9b6712dc6c3f81dd1f1af6ddcf2e71", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x2b3cdd00ca5ff48fd9291ac3383a8efa00386dcf736dffd07ea1e16126630092", - "txPointer": "03bd1aa7004f", - "utxoId": "0x78fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x91ae9e4aae92bb0f67ed2a16604a8127a9ab87478aac4652d658415ae5c6e6fb", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x2099b86dcc5ca731e0183b3bb4350e6c8f1fa0ce8f8f9cbd402c8c4e66e60cf7", - "txPointer": "03bd1aa7004f", - "utxoId": "0x78fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab0", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7004f", - "utxoId": "0x78fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "163692", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb3c6146cb33dad8627e3958db0e6907d5a48428f545dfc708a7714e582967ccc", - "inputIndex": "1", - "stateRoot": "0x2542b0bcc51389286bc7f957216a9eb3db59e34ad85c3733fc833ca83fa4612a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb09bf56ee7db62ab5c8a024db0cbbfd4c959668cec92a3e029cde9914be31d69", - "inputIndex": "2", - "stateRoot": "0x96ec35fe86b8707b1dffaf8e9c2ee07985049b83f6c21fac93f5468c55bfa47f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480643f017797dc647f5dea18e39741feeb96a82c171796947a15445e034ab20cd700000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008efc977ad6ecec4f383b2d062b6406c050978fcb4259edfc9597c0240be6d686543774a7d74a4826f6f0cacdc07dcd87e8bc97eb191c2b8de19b97decf959e5000000000000000000000006a91c5ab00000000000000000000000000023dd54b0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000c28da42400f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff000000000000000100000000000000180000000015558858000000c28da42400000000000000000100000000000000000000006400000000000210ac0000000003bd1aab00000000000000008924871160308a458629c8c745fac48d872f53b4d3caf709cfe2666088c687900000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028039f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000770000000000000000000000000000000000000000000000000000000000000000000000000000000178fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df00000000000000032724c7798b005008231052d4b885b6c3cb9b6712dc6c3f81dd1f1af6ddcf2e712b3cdd00ca5ff48fd9291ac3383a8efa00386dcf736dffd07ea1e161266300920000000003bd1aa7000000000000004fba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241000000000000000178fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df000000000000000191ae9e4aae92bb0f67ed2a16604a8127a9ab87478aac4652d658415ae5c6e6fb2099b86dcc5ca731e0183b3bb4350e6c8f1fa0ce8f8f9cbd402c8c4e66e60cf70000000003bd1aa7000000000000004fe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000178fe8daed14270e224790989c2230bf449efb906468f7a2160d13421b06bb7df0000000000000002b250b56282023621e218d728408f79dbf12b54da8cf12d610e594f3a4892cab000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000004f02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027f6cf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001b3c6146cb33dad8627e3958db0e6907d5a48428f545dfc708a7714e582967ccc2542b0bcc51389286bc7f957216a9eb3db59e34ad85c3733fc833ca83fa4612a00000000000000010000000000000002b09bf56ee7db62ab5c8a024db0cbbfd4c959668cec92a3e029cde9914be31d6996ec35fe86b8707b1dffaf8e9c2ee07985049b83f6c21fac93f5468c55bfa47f000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000405e7fd1de199fbe1ab8f41cc77a011f961bf59592eab8111cc5d077a23b131590706fbfda993ca8c66fe00debd5203fd4709e8bbb75cd3d0d7ead40d0bb4f9478", - "receiptsRoot": "0x643f017797dc647f5dea18e39741feeb96a82c171796947a15445e034ab20cd7", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008efc977ad6ecec4f383b2d062b6406c050978fcb4259edfc9597c0240be6d686543774a7d74a4826f6f0cacdc07dcd87e8bc97eb191c2b8de19b97decf959e5000000000000000000000006a91c5ab00000000000000000000000000023dd54b0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c6372656174655f6f72646572000000c28da42400f2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166ffffffffffffffff000000000000000100000000000000180000000015558858000000c28da424000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023dd54b", - "digest": "0xab4e8138fb50045a834bbf93be4ae6b55b6439527b351ed09a38c03cca4bab49", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd54b", - "digest": "0x7af8d9511f59885887d531470d5e4c2e9aa9db9c5101a133f71afdaf41bfd04a", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd54b", - "digest": "0x7af8d9511f59885887d531470d5e4c2e9aa9db9c5101a133f71afdaf41bfd04a", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "835600000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000230000000015558858000000000000000100000000000000010000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000010000000000000001000000c28da424000000000015558858000000006a91c533", - "digest": "0x9e8396dbc849bdc8f3e456f66ecb65b9b2fe61bb9ab7ceea573d89d5cd3a6e42", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000023000000001555885800000000000000010000000000000001", - "digest": "0xc5aa45d9f618f86c265c129c7b9548006f58d8706de85217e0257cedc4f05250", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67101766", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "107786", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "205", - "totalGas": "117407", - "transactionId": "0x67ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5e7fd1de199fbe1ab8f41cc77a011f961bf59592eab8111cc5d077a23b131590706fbfda993ca8c66fe00debd5203fd4709e8bbb75cd3d0d7ead40d0bb4f9478" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x23e0914f7b2009fa3ece8e391896e081d80dd25f5e4dbab59f0e47fe9e8b7f7a", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "299974", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa10078", - "utxoId": "0x61b5965a722b94750c78292a25c6411a0dbe88f8a18286e1d1c4401929cc3d310000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xe0dcb6d52c0100d5ac8f3609a06e7bdf2431146219df344a3691189fe3a0d9e1", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70050", - "utxoId": "0x67ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8186e0aa0a0770905ef0b12c221c9daf2fbcf410b71ad917c70553c2b2cd0853", - "contractId": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "stateRoot": "0x6802afb4447592763b1398872b9f0a70afbca8078e7e0466062bbc9186b9905e", - "txPointer": "03bd1aa7004b", - "utxoId": "0xe9743cbe8d94645e357cb367f6ff1db131dac18804d76697186a0128c0fb5c740003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x271d760e01115e1ade89886800ce679ce4ccc87b324cb1cf8cae57e7ce82ee4d", - "contractId": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "stateRoot": "0x60673eb2f34df6664d399bf5e5d7010081d536c19471ee2be82dae1f2b40085d", - "txPointer": "03bd1aa50076", - "utxoId": "0x92c354ca51af12b14597e4d2586d8cb3e71188d8867dbd1d523c27ce54842d6d0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "299692", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc7a7bd4fa701546ed162c2f1a6ab7a554751dbbb415d8282690cd7a480f99bfe", - "inputIndex": "2", - "stateRoot": "0xa76ecb11f8dc85612aa4e88638a9909949e36d30247a70323c836bec99e99d11" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x83c7b691bc6aba5e331f1932b36933f15aa10af7506bc4f6c90015083f2211a4", - "inputIndex": "3", - "stateRoot": "0xd9366981e4016feea0e3a068ba53f789551d07129439bc5ce1af1053c7910566" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480c73e7e9af2f095867cc84cc82ab694cbea178bb9b5e8cc9a867988e34f19ebbf00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002ad8134a787cc70a39a458c11dd07b527d5be82dd54da25d61657c7d8aa3eb84d244f79a26af08fc27ed7f2633a3004a27c664e190a1f48ec272834541b3cd0e00000000000000000000006a91c5ab0000000000000000000000000000054b770000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000014dc9380fdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0ffffffffffffffff0000000000000001000000000000001800000000d0899ec00000000014dc9380000000000000000100000000000000000000006400000000000210ac0000000003bd1aab000000000000000061b5965a722b94750c78292a25c6411a0dbe88f8a18286e1d1c4401929cc3d310000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000493c6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa100000000000000780000000000000000000000000000000000000000000000000000000000000000000000000000000167ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf0000000000000003e0dcb6d52c0100d5ac8f3609a06e7bdf2431146219df344a3691189fe3a0d9e100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005002c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001e9743cbe8d94645e357cb367f6ff1db131dac18804d76697186a0128c0fb5c7400000000000000038186e0aa0a0770905ef0b12c221c9daf2fbcf410b71ad917c70553c2b2cd08536802afb4447592763b1398872b9f0a70afbca8078e7e0466062bbc9186b9905e0000000003bd1aa7000000000000004b973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61000000000000000192c354ca51af12b14597e4d2586d8cb3e71188d8867dbd1d523c27ce54842d6d0000000000000003271d760e01115e1ade89886800ce679ce4ccc87b324cb1cf8cae57e7ce82ee4d60673eb2f34df6664d399bf5e5d7010081d536c19471ee2be82dae1f2b40085d0000000003bd1aa50000000000000076d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000492acf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c7a7bd4fa701546ed162c2f1a6ab7a554751dbbb415d8282690cd7a480f99bfea76ecb11f8dc85612aa4e88638a9909949e36d30247a70323c836bec99e99d110000000000000001000000000000000383c7b691bc6aba5e331f1932b36933f15aa10af7506bc4f6c90015083f2211a4d9366981e4016feea0e3a068ba53f789551d07129439bc5ce1af1053c79105660000000000000040344c79f3c3e42c65385104643905d0a8c4dfcb713effe04b692cdc2a380689ab476a3066b477314e65955c78f01276ef426ac718fd3635e6452601e8ec2f4933", - "receiptsRoot": "0xc73e7e9af2f095867cc84cc82ab694cbea178bb9b5e8cc9a867988e34f19ebbf", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e700000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000002ad8134a787cc70a39a458c11dd07b527d5be82dd54da25d61657c7d8aa3eb84d244f79a26af08fc27ed7f2633a3004a27c664e190a1f48ec272834541b3cd0e00000000000000000000006a91c5ab0000000000000000000000000000054b770000000000000002973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c610000000000000014000000000000000c6372656174655f6f726465720000000014dc9380fdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0ffffffffffffffff0000000000000001000000000000001800000000d0899ec00000000014dc93800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000000054b77", - "digest": "0xb35e0a372a77395a4430f088eb40b334047955a23b89216b2d09a57e9d4ec3e6", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000091bf601883c323d1a1f41658ef4ecdbd1becafe2fbd1e75d5a9bc1adf4b12a68973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5ab0000000000000000000000000000054b77", - "digest": "0xede0a66a8d024035e0db1898a0647ddfabd24c6f1f996948fe229edbb03cbeca", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": "349965000", - "assetId": "0xfdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e70000000014dc0ac80000000000000000", - "digest": "0xbd999e177480cee976898d10fb02a5ea80e7b61b47da76bfb717eb8a7119f06a", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000091bf601883c323d1a1f41658ef4ecdbd1becafe2fbd1e75d5a9bc1adf4b12a68973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c6100000000000000000000006a91c5ab0000000000000000000000000000054b77", - "digest": "0xede0a66a8d024035e0db1898a0647ddfabd24c6f1f996948fe229edbb03cbeca", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "350000000", - "assetId": "0xfdb4b13bfa1beb8433bd92f7a63bbbe023852f1d4f30220ecbd6aeee54c050a0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000300000000d0899ec0000000000000000100000000000000010000000000000001d2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7000000000000000100000000000000010000000014dc938000000000d0899ec0000000006a91c533", - "digest": "0xf4f8c351580ccf9d4b7eba7b64303fe4abbd94b4184a6f82e5b0a95a4942a8f6", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000f00000000d0899ec000000000000000000000000000000003000000000000000300000000d0899ec0000000000000000100000000000000010000000014dc938000000000d0899ec0000000006a91c533", - "digest": "0x900d2600a3c23f4ec4355c9849fec7a16a87f57656908a34ff06454691601b9a", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000000000000001de55", - "digest": "0xd163f91d1c2fb46fa92ca59ed1d6dd53c69e4d5c5c9778c1376af7632b0ddc52", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67098350", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000300000000d0899ec000000000000000010000000000000001", - "digest": "0x8a452eda8b83b2035face450f3dea5e06ba3087ec3b536765bc8611bdc6489a4", - "gas": null, - "gasUsed": null, - "id": "0x973b7d98b4c4aa6e9321820b021674feffe7ee5e1c933a67f5ba497060e81c61", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67097390", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xd2c461273432ff6a7e3eaa53d77a01bde8775981bacb77ac6db84c34109ec5e7", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "151972", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "282", - "totalGas": "161593", - "transactionId": "0x23e0914f7b2009fa3ece8e391896e081d80dd25f5e4dbab59f0e47fe9e8b7f7a" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x344c79f3c3e42c65385104643905d0a8c4dfcb713effe04b692cdc2a380689ab476a3066b477314e65955c78f01276ef426ac718fd3635e6452601e8ec2f4933" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x611fca400f61c5a35a5997fb008fa2b1389718763a563244700904726ce8586d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "164194", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20000", - "utxoId": "0x08e92cf65a258e1f3d59f8b1b8ed3e685da967a6e2827afc0ed51b5a62b29f8e0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb09bf56ee7db62ab5c8a024db0cbbfd4c959668cec92a3e029cde9914be31d69", - "contractId": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "stateRoot": "0x55bd2e4b6cde9ecc3b48af7e000f4e27d829869c1d11d9a1896c10f8ecf4adda", - "txPointer": "03bd1aa70050", - "utxoId": "0x67ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb3c6146cb33dad8627e3958db0e6907d5a48428f545dfc708a7714e582967ccc", - "contractId": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "stateRoot": "0x8164a1f3a01cf3c86e64a58a9455245d61e46a1e98fcd975effe59a244d8b49f", - "txPointer": "03bd1aa70050", - "utxoId": "0x67ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70051", - "utxoId": "0x23e0914f7b2009fa3ece8e391896e081d80dd25f5e4dbab59f0e47fe9e8b7f7a0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "163951", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x37f76a3343b54276264ab1bcb6a11bc00dd03eb878c4ff8fcebc6a252c0e6a9b", - "inputIndex": "1", - "stateRoot": "0xe8e48b2bd478148978b1a15521caf4f82ef7e860a3094f3c048d3a90aec199eb" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x17a1a354fcbfcae9e8ddaceb4e817a46f1e001f08cb2c6483da9422a4f438f9c", - "inputIndex": "2", - "stateRoot": "0x2cd44eddf31c3c480b454d955fabd77526c911ba51470663f4ff0e94bbc8ee44" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848055ac2ec5336838a503f14ec86063bb4fc98645ecb4d543c3084e99c65674d7630000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000605350345697f8ae14b2918d19f068c564fdfc8258a76866f04b060d2685df194a642ee9a445c0ee67865bf58f319e76eacf4dd966d8d4c56161151f36dc9f7800000000000000000000006a91c5ab00000000000000000000000000023dd54c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005100000000154622f000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000006400000000000210ac0000000003bd1aab000000000000000008e92cf65a258e1f3d59f8b1b8ed3e685da967a6e2827afc0ed51b5a62b29f8e0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028162f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000167ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf0000000000000002b09bf56ee7db62ab5c8a024db0cbbfd4c959668cec92a3e029cde9914be31d6955bd2e4b6cde9ecc3b48af7e000f4e27d829869c1d11d9a1896c10f8ecf4adda0000000003bd1aa70000000000000050e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563000000000000000167ff0a5031ae1a7146b75f26dd2124e30e23091ec77b6fd95fff14ae13a5c7bf0000000000000001b3c6146cb33dad8627e3958db0e6907d5a48428f545dfc708a7714e582967ccc8164a1f3a01cf3c86e64a58a9455245d61e46a1e98fcd975effe59a244d8b49f0000000003bd1aa70000000000000050ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241000000000000000123e0914f7b2009fa3ece8e391896e081d80dd25f5e4dbab59f0e47fe9e8b7f7a0000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005102c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002806ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000137f76a3343b54276264ab1bcb6a11bc00dd03eb878c4ff8fcebc6a252c0e6a9be8e48b2bd478148978b1a15521caf4f82ef7e860a3094f3c048d3a90aec199eb0000000000000001000000000000000217a1a354fcbfcae9e8ddaceb4e817a46f1e001f08cb2c6483da9422a4f438f9c2cd44eddf31c3c480b454d955fabd77526c911ba51470663f4ff0e94bbc8ee440000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004036f5a80584526692c2beac0c7d8825131b5c6dfa437a1b8ccd8443c117456e74ba0ee72da4b6d260ff6f8747842ebe2e7a13617fa6ad155a4fc695e7b9558fc1", - "receiptsRoot": "0x55ac2ec5336838a503f14ec86063bb4fc98645ecb4d543c3084e99c65674d763", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000605350345697f8ae14b2918d19f068c564fdfc8258a76866f04b060d2685df194a642ee9a445c0ee67865bf58f319e76eacf4dd966d8d4c56161151f36dc9f7800000000000000000000006a91c5ab00000000000000000000000000023dd54c0000000000000002ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000005100000000154622f000000000000000010000000000000001ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb2410000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023dd54c", - "digest": "0xbdd9013fffaaeb47b9d46132df37b28ff5413a7a4cf08faea860e8466c74d5a1", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd54c", - "digest": "0x369285973fc2aec04e9a0baef0bfe48899c3a928a1235576c36b77552cc8d8c4", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": "6943700000000", - "assetId": "0xf2992fb8cf860c44577cc317cbefebfc75aaa17d17199b5fe5552e7df88ee166", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000005100000000154622f000000000000000010000000000000001000000006a91c533", - "digest": "0xce5851c87442b567d54727f42a65ef589e739e867d0d32f19211fef243a9bffe", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100530", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099905", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000d712f1878693312fb7d14556bb2ec9cd7facd51e6699067700a898cac3fcb38ba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb24100000000000000000000006a91c5ab00000000000000000000000000023dd54c", - "digest": "0x369285973fc2aec04e9a0baef0bfe48899c3a928a1235576c36b77552cc8d8c4", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099677", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1878577", - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001e2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d24010956300000000000000000000000000000000", - "digest": "0x21c0d1c21b15514393fb55547481cbbf84fb76b32d429312dbbc13343e542440", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67099205", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xba088dd1d6b99958196d8e9926c503fd2edd07b72115ff75f4c5f117444fb241", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xe2c5c5b31997653a15cb460da164c990f65c4de3fd86c183831473d240109563", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "129859", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "243", - "totalGas": "139491", - "transactionId": "0x611fca400f61c5a35a5997fb008fa2b1389718763a563244700904726ce8586d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x36f5a80584526692c2beac0c7d8825131b5c6dfa437a1b8ccd8443c117456e74ba0ee72da4b6d260ff6f8747842ebe2e7a13617fa6ad155a4fc695e7b9558fc1" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x0d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "165124", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20001", - "utxoId": "0xd43f6c2c915ee44bc13a8b5635d99effcc4a4d5ca3064920f8f25fb398c860790000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70052", - "utxoId": "0x611fca400f61c5a35a5997fb008fa2b1389718763a563244700904726ce8586d0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xbe16edbaf490d8382a23e7f3b5f29b584b9d7c418f7234bfd6afc0c507bc729a", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0xb2404ccb7c2ecc57c2f3f66ede694b52941ed8fee9d3c140050336c2ce2146d2", - "txPointer": "03bd1aa70035", - "utxoId": "0x908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3f6ba58a7980a49ed9d15c6c2af667526521f6e59da774fc74e0ee25de634b67", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x6fc50c00f9addcce465629dda4cd10b7e4f40e7bf5510aa62eee49f0fc5dd3f2", - "txPointer": "03bd1aa70035", - "utxoId": "0x908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "164901", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x42e30fd8e6d5db3c52e1f0a0febaca1eceb45814fe40bb42275c55121a44229c", - "inputIndex": "2", - "stateRoot": "0x2931bd641817842474efaeaabdeaabfbf618113ee5a5aa02ba328382524193cf" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa167acebbc0eb2adef31cedeafe7f88e0e1e639ef74ef1f571dca5771dbbb53e", - "inputIndex": "3", - "stateRoot": "0x78927eaa316541e44d8e16dd8697a4fd1cb762a164d11f1f121c481ad94fd894" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ba4eabba72c6b6cdf2e60f5806ea393fae3658f06c3795cdc6e8830ab1808ed20000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000000054191afb2184b593296151be0eff947bb0236db1b831c680a6d373cc9dde6c336081beb74b2ae7036983f3f38b6d9463b38ca210a76414b6ee90c33fc2f9900000000000000000000006a91c5ab00000000000000000000000000024e037c0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006000000002ad313da000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000006400000000000210ac0000000003bd1aab0000000000000000d43f6c2c915ee44bc13a8b5635d99effcc4a4d5ca3064920f8f25fb398c860790000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028504f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000001611fca400f61c5a35a5997fb008fa2b1389718763a563244700904726ce8586d0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005202c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb0000000000000002be16edbaf490d8382a23e7f3b5f29b584b9d7c418f7234bfd6afc0c507bc729ab2404ccb7c2ecc57c2f3f66ede694b52941ed8fee9d3c140050336c2ce2146d20000000003bd1aa70000000000000035c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b60000000000000001908c42da142b3c4e18820a1b81df0f5c8ee4d228189f69195680e1bc3319d9cb00000000000000013f6ba58a7980a49ed9d15c6c2af667526521f6e59da774fc74e0ee25de634b676fc50c00f9addcce465629dda4cd10b7e4f40e7bf5510aa62eee49f0fc5dd3f20000000003bd1aa70000000000000035f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028425f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000242e30fd8e6d5db3c52e1f0a0febaca1eceb45814fe40bb42275c55121a44229c2931bd641817842474efaeaabdeaabfbf618113ee5a5aa02ba328382524193cf00000000000000010000000000000003a167acebbc0eb2adef31cedeafe7f88e0e1e639ef74ef1f571dca5771dbbb53e78927eaa316541e44d8e16dd8697a4fd1cb762a164d11f1f121c481ad94fd8940000000000000040572896d5cc64f4f352c23b874737fcb2b76d11823e355fcb25053e37225c60c2ff09485d2fdf323d4de5560706fd96891f9a4d2cd964b88c0e6c6838fa0c99fa", - "receiptsRoot": "0xba4eabba72c6b6cdf2e60f5806ea393fae3658f06c3795cdc6e8830ab1808ed2", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000000054191afb2184b593296151be0eff947bb0236db1b831c680a6d373cc9dde6c336081beb74b2ae7036983f3f38b6d9463b38ca210a76414b6ee90c33fc2f9900000000000000000000006a91c5ab00000000000000000000000000024e037c0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000006000000002ad313da000000000000000010000000000000001f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e037c", - "digest": "0xd2f972267d32772d4846c169fbc50dd345029f529740d3ddfe203261872272df", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037c", - "digest": "0xd333ef7127bb20aa5428ffb8268aab341777a8ce9145e26126404250a84d8ac8", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": "20610000000", - "assetId": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf58", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000006000000002ad313da000000000000000010000000000000001000000006a91c533", - "digest": "0x53b3de284a6aec717102944b39b8ed712e0c89bd3daa18ece88a4c33c14149e0", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67101618", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67100993", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037c", - "digest": "0xd333ef7127bb20aa5428ffb8268aab341777a8ce9145e26126404250a84d8ac8", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67100765", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1890197", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67100293", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "118239", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "223", - "totalGas": "127871", - "transactionId": "0x0d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x572896d5cc64f4f352c23b874737fcb2b76d11823e355fcb25053e37225c60c2ff09485d2fdf323d4de5560706fd96891f9a4d2cd964b88c0e6c6838fa0c99fa" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x39c1205b07d5e884c70a773d585a40f8128c94226c909fcc1a2454a8a49b465d", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "162493", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20002", - "utxoId": "0xfc9f220d6dd90393609b996444a914ea4b7512743619db5e4ab19a39effaeefe0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xaba7555733aedd044f1c2ecbad918ef22cd5e23fc263e08255b48f55f886206d", - "contractId": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "stateRoot": "0xe089ad8b0dd43b8c6f42795b8714bb1d5cf8e425cf1797198c12f291c67cc9f9", - "txPointer": "03bd1aa7003e", - "utxoId": "0x8d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x3c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70053", - "utxoId": "0x0d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x772b39cce720673bf6327f86c1d9a9763bb7ec9a147987ca6653557550744fe9", - "contractId": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "stateRoot": "0x672af636939444205cf4d4b2f59a4166e404c19f3ac683eceb095f307e86d72b", - "txPointer": "03bd1aa7003e", - "utxoId": "0x8d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "162166", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6b84dde497c379d753dc7b50cc82c4659cdad22a72f0e65fd5892268294f53f9", - "inputIndex": "1", - "stateRoot": "0x27e665442c77d2f2e54bfad9d0d7acf96d4e153948ef996756dc3af4d503d568" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x94d0ff94062bfcc5697ef1f01a8182907a55636c8d3bbd1af073bb16f30a2598", - "inputIndex": "3", - "stateRoot": "0xab68852bc0b5eea9c91cee6d4280893a0c820432220f16ecc75891349114a875" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84807684c204d1fb20562a93e2a84922dd592b777180a59ed233fcf62d5ea59646e5000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c829894619aa6fc378def953cde309376cf54946ddd9bb6a5d36d00aa6553e5c3d13657f00a82b4c1c7fbd475e542facde301a19eefef815f27bcf1c42dae59900000000000000000000006a91c5ab000000000000000000000000000249f4490000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000019000000001737f45800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f726465720000026b674df1a06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000173d4b8800000634a66988000000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000fc9f220d6dd90393609b996444a914ea4b7512743619db5e4ab19a39effaeefe0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027abdf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa20000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000018d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba0000000000000002aba7555733aedd044f1c2ecbad918ef22cd5e23fc263e08255b48f55f886206de089ad8b0dd43b8c6f42795b8714bb1d5cf8e425cf1797198c12f291c67cc9f90000000003bd1aa7000000000000003e295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000010d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e00000000000000013c27584c241a412cc19e4f800205ed1d6b1aa204f783853ab67a177b05f3350b00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005302c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000018d198aea82c139e743fa9d138d239f01f19984125f2d319747ac1fe1334335ba0000000000000001772b39cce720673bf6327f86c1d9a9763bb7ec9a147987ca6653557550744fe9672af636939444205cf4d4b2f59a4166e404c19f3ac683eceb095f307e86d72b0000000003bd1aa7000000000000003e9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027976f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016b84dde497c379d753dc7b50cc82c4659cdad22a72f0e65fd5892268294f53f927e665442c77d2f2e54bfad9d0d7acf96d4e153948ef996756dc3af4d503d56800000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000394d0ff94062bfcc5697ef1f01a8182907a55636c8d3bbd1af073bb16f30a2598ab68852bc0b5eea9c91cee6d4280893a0c820432220f16ecc75891349114a87500000000000000400beff8538e4cebc5f7c9a6a552deaba2cb12b089dfd821599f8817dee4c3be6a9da179e103d3d4ef6e6ab6fe8316db756fe168f8b0c3756818f21dab507cfb6a", - "receiptsRoot": "0x7684c204d1fb20562a93e2a84922dd592b777180a59ed233fcf62d5ea59646e5", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000c829894619aa6fc378def953cde309376cf54946ddd9bb6a5d36d00aa6553e5c3d13657f00a82b4c1c7fbd475e542facde301a19eefef815f27bcf1c42dae59900000000000000000000006a91c5ab000000000000000000000000000249f4490000000000000003295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000000019000000001737f45800000000000000000000000000000001295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e250000000000000014000000000000000c6372656174655f6f726465720000026b674df1a06c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000000173d4b8800000634a66988000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000249f449", - "digest": "0x75e5a83c98bd68398e35bba78c2a88b4084c4f30fa014ab61ef886654775b824", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f449", - "digest": "0xd744d5a6cef732dfc72a9b8aa58bcf655af03c5aa69ab3aac806d4d72e976dc5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": "1619953519800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000019000000001737f45800000000000000000000000000000001000000006a91c533", - "digest": "0x0ca87c22910fb476cd99589a4293df6a57f0961d278a7eb2a8651f844a147895", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67101250", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100625", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f449", - "digest": "0xd744d5a6cef732dfc72a9b8aa58bcf655af03c5aa69ab3aac806d4d72e976dc5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67100397", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1886449", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d00000000000000000000000000000000", - "digest": "0x55e5569ba522e83a1a125ff37e6013321484c72af0299cbe20397da3238557da", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099925", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000082b4896d6e484ba49e8ec2109e2697109148266b189c002b40fd7f6fee92064c295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e2500000000000000000000006a91c5ab000000000000000000000000000249f449", - "digest": "0xd744d5a6cef732dfc72a9b8aa58bcf655af03c5aa69ab3aac806d4d72e976dc5", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099697", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "2660317917600", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875044", - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004000000000173d4b880000000000000000000000000000000100000000000000019789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d0000000000000000000000000000000100000634a669880000000000173d4b88000000006a91c533", - "digest": "0x9ce4a6637d33eaf73b8ec00a04123d18cafbc38a33c28e591735be421dd3e35c", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67098305", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004000000000173d4b8800000000000000000000000000000001", - "digest": "0x34ece1a1bfea29eab73a8ed6f071315715759f8d9ea862c27a475c55664462df", - "gas": null, - "gasUsed": null, - "id": "0x295aa0c0dc226011bcb3eef703f406f401a08e9499b6940b6b619c1844757e25", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67096209", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9789abed51acac39fd3beaeb39ed9c15005e49a5a0466383c9cf1e097214689d", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "178174", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "327", - "totalGas": "188002", - "transactionId": "0x39c1205b07d5e884c70a773d585a40f8128c94226c909fcc1a2454a8a49b465d" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x0beff8538e4cebc5f7c9a6a552deaba2cb12b089dfd821599f8817dee4c3be6a9da179e103d3d4ef6e6ab6fe8316db756fe168f8b0c3756818f21dab507cfb6a" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x8bf2274cedabef99336b1760d6df610b64b87514e5705425805498a2809bbb43", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "163063", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20003", - "utxoId": "0x573642d78f52de05a7a796209ccaf8fc2a5178663f8dd94b8b252df537e267630000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x16d8a073a1796dd0e34a77a93450998958ed2c8ca49c1d292e45b148f6420eb5", - "contractId": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "stateRoot": "0x7e4376a8943404c563584d739f0f3a9b341ec0b936178796bddc9d8f0af47451", - "txPointer": "03bd1aa70030", - "utxoId": "0x183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd70002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a5", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70054", - "utxoId": "0x39c1205b07d5e884c70a773d585a40f8128c94226c909fcc1a2454a8a49b465d0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x95370662ed6a251d56571626098da4ed388f109930b490e1e75c5e0286611509", - "contractId": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "stateRoot": "0xcac079306a2edc5461b361d0acda3b87594fe68efe8c7ac4850db9411f521385", - "txPointer": "03bd1aa70030", - "utxoId": "0x183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd70003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "162714", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x72741406b7633c802a50e19c389d4a06ce0174967c9116588a8916fc673b1662", - "inputIndex": "1", - "stateRoot": "0xb9cacfbc4b0b7df0d1e3409725fb40871e46b14332bdea2b89e8f9b71c70aa7f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbc0a7d174dc582d35832691e76e1b046c188e7cabe2894076ebce65108343c58", - "inputIndex": "3", - "stateRoot": "0x7dfd78ab17ff133331e45192bccff7746ae7a8b1b152812478901e2700c1e895" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84805562bdb7ea8601a2b2ba3d5ff829876adf1ff43b1cf45942c940f77ccb1a1de1000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f81e54dea16068e83912a55778d01dfbd3f114aa5edcf6bdbf4999dc24e34aee02ebf4b5f6b92286f6a25a8f7d650e29105dad34baed6f633c084831ecf0031d00000000000000000000006a91c5ab00000000000000000000000000028d0d0700000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000037e0000023960c64d00000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000001eb55400ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff000000000000000100000000000000180000023980f60c00000000001eb554000000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000573642d78f52de05a7a796209ccaf8fc2a5178663f8dd94b8b252df537e267630000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027cf7f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000001183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd7000000000000000216d8a073a1796dd0e34a77a93450998958ed2c8ca49c1d292e45b148f6420eb57e4376a8943404c563584d739f0f3a9b341ec0b936178796bddc9d8f0af474510000000003bd1aa700000000000000305a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76000000000000000139c1205b07d5e884c70a773d585a40f8128c94226c909fcc1a2454a8a49b465d0000000000000002045bf1ab88292ae14d30e9e37720fc4a5a7f662f9b3378acd0b33605d01178a500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005402c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001183975ea82d566c17afd88cd6633ab656b0c52f09d5d673df3abf8529d082fd7000000000000000395370662ed6a251d56571626098da4ed388f109930b490e1e75c5e0286611509cac079306a2edc5461b361d0acda3b87594fe68efe8c7ac4850db9411f5213850000000003bd1aa7000000000000003066fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000027b9af8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000172741406b7633c802a50e19c389d4a06ce0174967c9116588a8916fc673b1662b9cacfbc4b0b7df0d1e3409725fb40871e46b14332bdea2b89e8f9b71c70aa7f000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003bc0a7d174dc582d35832691e76e1b046c188e7cabe2894076ebce65108343c587dfd78ab17ff133331e45192bccff7746ae7a8b1b152812478901e2700c1e89500000000000000402b2704ee5661a09b4c161eff73c6461b30a2be84a2bcdf97e5cbc8035df38f860a097df3dc011b9fc9801b8162e6298c00d568c6b9ac1a8731a929207f47e001", - "receiptsRoot": "0x5562bdb7ea8601a2b2ba3d5ff829876adf1ff43b1cf45942c940f77ccb1a1de1", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0766fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000f81e54dea16068e83912a55778d01dfbd3f114aa5edcf6bdbf4999dc24e34aee02ebf4b5f6b92286f6a25a8f7d650e29105dad34baed6f633c084831ecf0031d00000000000000000000006a91c5ab00000000000000000000000000028d0d0700000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000037e0000023960c64d00000000000000000100000000000000035a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f760000000000000014000000000000000c6372656174655f6f72646572000000001eb55400ac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140affffffffffffffff000000000000000100000000000000180000023980f60c00000000001eb554000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000028d0d07", - "digest": "0x77c32a3c2c93dcabdcf22a156437869ba86067a3a8343f8729317ec4b93fb703", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5ab00000000000000000000000000028d0d07", - "digest": "0x04330abe60019d73a481b4e6d94f9c4deb50257569e81342f982a7414104665b", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963055", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": "695400000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "403200", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000037e0000023960c64d0000000000000000010000000000000003000000006a91c533", - "digest": "0xd7ece1ee167ac5e247b4cb7c6f0108b28177b8fc8ce2e3c6fa8f342e4ffbd1c6", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "397548", - "ptr": "67099962", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374716", - "ptr": "67099337", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5ab00000000000000000000000000028d0d07", - "digest": "0x04330abe60019d73a481b4e6d94f9c4deb50257569e81342f982a7414104665b", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099109", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1875030", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000000000000000000000", - "digest": "0x59ecf2f36962ef2a9ec90b6961021042caee97c9fbf3cc61e7799c9eb0d86806", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "457448", - "ptr": "67098189", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "370444", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000fb4110161079335b2f05cd7f9f915a89389b68172af776fa506275680b1df1855a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f7600000000000000000000006a91c5ab00000000000000000000000000028d0d07", - "digest": "0x04330abe60019d73a481b4e6d94f9c4deb50257569e81342f982a7414104665b", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67097961", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "515200000", - "assetId": "0xac2aabc1c48e634800a723b1372388ad1eb6a23d0e012cde4c603082fb1a140a", - "contractId": null, - "data": null, - "digest": null, - "gas": "1862756", - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000003cd0000023980f60c0000000000000000010000000000000003000000000000000166fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da00000000000000010000000000000003000000001eb554000000023980f60c00000000006a91c533", - "digest": "0xe8ae435e8076e175d83c456b654b95e367c75e26863b65cbf2c447bfea7ed526", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "428180", - "ptr": "67096121", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000003cd0000023980f60c0000000000000000010000000000000003", - "digest": "0x5873ef1e132673b72bf8ee63adf89d83f771e1cf2a638a9de084869dc4e14427", - "gas": null, - "gasUsed": null, - "id": "0x5a908a89f5caac1a76b199e71e44e42ffed125b2c4e64d0982e60a536a394f76", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "374412", - "ptr": "67094057", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x66fa6d1e596a43d5c6533986c54a853f870276133836a71463c2d76ba92182da", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "190765", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "349", - "totalGas": "200593", - "transactionId": "0x8bf2274cedabef99336b1760d6df610b64b87514e5705425805498a2809bbb43" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x2b2704ee5661a09b4c161eff73c6461b30a2be84a2bcdf97e5cbc8035df38f860a097df3dc011b9fc9801b8162e6298c00d568c6b9ac1a8731a929207f47e001" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x62ad865e7a88f1092b037b9038483fd1b39216e5059d5860c2a2a6c020a7edc5", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "302449", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20004", - "utxoId": "0x919ee7eaf222b73feccb33c24d62cf95f383bbc1357f53472b945ceaed1230bd0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x36399964892f466ca180b878bd5d05a23dffa90de463b91d992ff0242cf6af9b", - "contractId": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "stateRoot": "0x3f74482404e89f81720e5026fccc28ec41cc05d49c297ef5cfd6fbe23b0e9048", - "txPointer": "03bd1aa70053", - "utxoId": "0x0d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb858978fc76edae1ed29099115eeac2f03594c33f44550bc6e6a6bdc25680100", - "contractId": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "stateRoot": "0x7ead27e8376cf9502eac630bdc7af53a2d7c61c18e212ae818ffb141ba16076d", - "txPointer": "03bd1aa70053", - "utxoId": "0x0d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x02cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f9", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70055", - "utxoId": "0x8bf2274cedabef99336b1760d6df610b64b87514e5705425805498a2809bbb430002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "302211", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x5a67eebe26c2182e411fcbdfbede586bcbe8e72cf23e12d3e21999a9d6e7f949", - "inputIndex": "1", - "stateRoot": "0xed80408eff711330a6c3e6d51cee7e7c765ad35c0ad1bac55bfb4335645ccdd5" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x62d3474505d67ac15a2a46d7fe919a3c56e62f7fc10dfca8428364eb0b8dc6ba", - "inputIndex": "2", - "stateRoot": "0xae1d4dba5a370e8fc1ceb80fb3471235bb1e1bf811ce850b53b02a2e6656143e" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84804af221114781079a278390def987ae5ea1e21c1912fd2bb8e9fa8f81277413a000000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b5000be53d45965c88bc22214f002dcdf7a491dcd1d5842f0916cbcfe214433fc21b572e3beed79310140536ccf338bf335f73b7228bd5119ec59ea9bcb7dcf500000000000000000000006a91c5ab00000000000000000000000000024e037d0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000a9e6a7ce306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac6a92400000000ecbe00b80000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000919ee7eaf222b73feccb33c24d62cf95f383bbc1357f53472b945ceaed1230bd0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000049d71f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa20000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000010d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e000000000000000336399964892f466ca180b878bd5d05a23dffa90de463b91d992ff0242cf6af9b3f74482404e89f81720e5026fccc28ec41cc05d49c297ef5cfd6fbe23b0e90480000000003bd1aa70000000000000053f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000010d30a99820ae0faecd4dfc1893e87fccc02922f9cce46a125e85cd96e21de26e0000000000000002b858978fc76edae1ed29099115eeac2f03594c33f44550bc6e6a6bdc256801007ead27e8376cf9502eac630bdc7af53a2d7c61c18e212ae818ffb141ba16076d0000000003bd1aa70000000000000053c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000018bf2274cedabef99336b1760d6df610b64b87514e5705425805498a2809bbb43000000000000000202cdef63fdfc6c30835881f5daa4658706f3f757e9c5db8e9e68c4802dbb14f900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005502c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000049c83f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000015a67eebe26c2182e411fcbdfbede586bcbe8e72cf23e12d3e21999a9d6e7f949ed80408eff711330a6c3e6d51cee7e7c765ad35c0ad1bac55bfb4335645ccdd50000000000000001000000000000000262d3474505d67ac15a2a46d7fe919a3c56e62f7fc10dfca8428364eb0b8dc6baae1d4dba5a370e8fc1ceb80fb3471235bb1e1bf811ce850b53b02a2e6656143e00000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1e94183f4af772c2db8c02210e53e7cc662049be0f3353f3f3b49aea28802b74ebff889455dc4a34f3a5f1d29e4e48ab3506dcac3b4c02224a634d7c5f51510", - "receiptsRoot": "0x4af221114781079a278390def987ae5ea1e21c1912fd2bb8e9fa8f81277413a0", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000b5000be53d45965c88bc22214f002dcdf7a491dcd1d5842f0916cbcfe214433fc21b572e3beed79310140536ccf338bf335f73b7228bd5119ec59ea9bcb7dcf500000000000000000000006a91c5ab00000000000000000000000000024e037d0000000000000002f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6f356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f0000000000000014000000000000000c6372656174655f6f72646572000000a9e6a7ce306c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff0000000000000001000000000000001800000002ac6a92400000000ecbe00b800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000024e037d", - "digest": "0xa08bc0372ece3dbb578a1d59ac739a1648cc04942cba0fcc34c9316f8784b744", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037d", - "digest": "0x34eec9d829f949933e4b1084e82ef0757d981f202981a328c64ca90de74d6af7", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b600000000000000000000000000000000", - "digest": "0x1004fa6d3f043de1db655ade7da34796d60d87ec3a08cabb37046c1f0e28fc3d", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000302009d4bc5066f1faf9e4558da7734bbda9092de08ae9781426fa870b39efbef356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f00000000000000000000006a91c5ab00000000000000000000000000024e037d", - "digest": "0x34eec9d829f949933e4b1084e82ef0757d981f202981a328c64ca90de74d6af7", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "729719230000", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004300000002ac6a9240000000000000000000000000000000010000000000000001c46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6000000000000000000000000000000010000000ecbe00b8000000002ac6a9240000000006a91c533", - "digest": "0x27fbda9995bdbd8b11eacb29ba6887568ff207f28c702fc188d9f6dc834da0c1", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004300000002ac6a924000000000000000000000000000000001", - "digest": "0xfd315c52881b7bf5facd314bfcf3d7a7e572cdb517c9cc88d18b40cb4cb08ecb", - "gas": null, - "gasUsed": null, - "id": "0xf356cbb693d1a8ed9e7e56f6bd05533b21398d8093c796a6c82ccfe1bf5c048f", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099926", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc46c5a25a6317c7eebf085a1bb580af9e4c3984ae769e0feffddd3591e0ac3b6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "127013", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "238", - "totalGas": "136634", - "transactionId": "0x62ad865e7a88f1092b037b9038483fd1b39216e5059d5860c2a2a6c020a7edc5" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd1e94183f4af772c2db8c02210e53e7cc662049be0f3353f3f3b49aea28802b74ebff889455dc4a34f3a5f1d29e4e48ab3506dcac3b4c02224a634d7c5f51510" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x7a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b01", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "157543", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20006", - "utxoId": "0xa9730cbaa253a61ca939e8be4775eff7692aef5c948c557d7464cd44b4c04bae0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70056", - "utxoId": "0x62ad865e7a88f1092b037b9038483fd1b39216e5059d5860c2a2a6c020a7edc50003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x32bbb7b2b7b55d4c55e65b7ce7f32527aaed13f59f5496d592881735993db108", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x4a24c7e6f6463d09f98e0aa97df70a42038a82a614f9dd0f72ff8feb957be180", - "txPointer": "03bd1aa70046", - "utxoId": "0x0fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x56800543ccc869bcc2310121762f8255d9ef4e09706f5b454264387f8c7e70a2", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0x5365d58a824d3f6f168a07dbb85ddb243a181e20f7c1d262f167167ca0aff306", - "txPointer": "03bd1aa70046", - "utxoId": "0x0fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b0003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157294", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xa34d439aac7ce31cc0c238b8454ab0fa5f692df138bf5e163773674ecd195f49", - "inputIndex": "2", - "stateRoot": "0xfac1cadc518db877f137b377fbfb0476e91961094c70fad24eeef83606aac8f0" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xb2d65ffe13bc439d4239c0acea7e9eeeeab48345019369080637187d56ceff2e", - "inputIndex": "3", - "stateRoot": "0xd2c1e514e53b3777282baf5c4d47f27dbfd40fa17082f69e5c81c43f460f53fe" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84806cbf3c0f0571e047f5162873677b0417425d1aa2ed6551bd1355ea7e822f970900000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000048244b31fb376e1f16001d4c05bac078a9c55912ec1e322996c7c9bb169cf095572ae222ba565f698cae5222bcf2a85d6868df0b5a708ea91722573678537ab000000000000000000000006a91c5ab00000000000000000000000000023a366400000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000d45dbbf4b46c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d32d28000005085beaed00000000000000000100000000000000000000006400000000000210ac0000000003bd1aab0000000000000000a9730cbaa253a61ca939e8be4775eff7692aef5c948c557d7464cd44b4c04bae0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026767f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa200000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000162ad865e7a88f1092b037b9038483fd1b39216e5059d5860c2a2a6c020a7edc50000000000000003b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005602c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e84236800000000000000010fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b000000000000000232bbb7b2b7b55d4c55e65b7ce7f32527aaed13f59f5496d592881735993db1084a24c7e6f6463d09f98e0aa97df70a42038a82a614f9dd0f72ff8feb957be1800000000003bd1aa700000000000000460a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000010fb37e0d6a1c7c0e8c262072d3a8ac23284c7eacab067e9d7674acf59a03b09b000000000000000356800543ccc869bcc2310121762f8255d9ef4e09706f5b454264387f8c7e70a25365d58a824d3f6f168a07dbb85ddb243a181e20f7c1d262f167167ca0aff3060000000003bd1aa70000000000000046ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002666ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002a34d439aac7ce31cc0c238b8454ab0fa5f692df138bf5e163773674ecd195f49fac1cadc518db877f137b377fbfb0476e91961094c70fad24eeef83606aac8f000000000000000010000000000000003b2d65ffe13bc439d4239c0acea7e9eeeeab48345019369080637187d56ceff2ed2c1e514e53b3777282baf5c4d47f27dbfd40fa17082f69e5c81c43f460f53fe0000000000000040fec37292671e32d0e6cb090386239024df2a92873500d665cdd37b1d29c0e89b247e3e30a94741a366c0c55e3369cb14fb87f90db90c82ebbc95e4b186a690a8", - "receiptsRoot": "0x6cbf3c0f0571e047f5162873677b0417425d1aa2ed6551bd1355ea7e822f9709", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000048244b31fb376e1f16001d4c05bac078a9c55912ec1e322996c7c9bb169cf095572ae222ba565f698cae5222bcf2a85d6868df0b5a708ea91722573678537ab000000000000000000000006a91c5ab00000000000000000000000000023a366400000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000d45dbbf4b46c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d32d28000005085beaed000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023a3664", - "digest": "0xe8a85b9ce5151eaa0d9a7371f1b65cc9860d02b84afbf2e5b722d91909f16653", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3664", - "digest": "0xa4e778e987872bf88ce38705a4792e716beb9ba812eeb8653200ccf237ce680b", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3664", - "digest": "0xa4e778e987872bf88ce38705a4792e716beb9ba812eeb8653200ccf237ce680b", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "912105665716", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1951104", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000b0000000009d32d28000000000000000000000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000001000005085beaed000000000009d32d28000000006a91c533", - "digest": "0x10590baa52c089843fe6f119e1742a0847a9587ad00659e439dd496ed70b618a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000b0000000009d32d2800000000000000000000000000000001", - "digest": "0x5ddb2b18efc97abc4a648fa97194fd912ce11dc19f672c8560cd449eba0fe30f", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099142", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "133312", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "249", - "totalGas": "142933", - "transactionId": "0x7a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b01" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xfec37292671e32d0e6cb090386239024df2a92873500d665cdd37b1d29c0e89b247e3e30a94741a366c0c55e3369cb14fb87f90db90c82ebbc95e4b186a690a8" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xa419ca08f77d82066a9682565c9e2ab284a419c29f5af36f86cde88d84a06686", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149812", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20005", - "utxoId": "0x542c0f2dbb3891af41183ee95ca9dc70c9ba59a039a291256541cecc0ba0e3300000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6ec94cac9adf66557956b6c433889e69463b6ff2a25bb43eff9f0a3312d50ca9", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x747eb0662cc95fb7333c92820b05d2e0a1dbf736f3b11b41e47fdaa26a5beda0", - "txPointer": "03bd1aa70057", - "utxoId": "0x7a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b010002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf0f50e67ceaa29cfe8aaad7ec58a385b976c93cb3ab6bc7904f7b242c6d6b236", - "contractId": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "stateRoot": "0xf1fa307c06a890ca4044badacb9ef6656f3640acdf91fe87032f5382fab272bc", - "txPointer": "03bd1aa70057", - "utxoId": "0x7a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b010003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70057", - "utxoId": "0x7a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b010001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "149407", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x61360dc6050fde2bc0c43e1f72c2eb4a6b04431ec49f4d6415c12a72ffdcf93e", - "inputIndex": "1", - "stateRoot": "0x7b75b459893129198aa8f7a4550c35593c51cd058406b524281a834388e22c1d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x80ee45de784ee50e69cbc42e61f3b50e3326e503edda9c4ec260fc321279c8e1", - "inputIndex": "2", - "stateRoot": "0xa73262d6602146a1f2675dae9270166df480e30d507fd21ec2ccd02b3b997a5b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480f68a1b492e3c0efc14995493ee470f0fa016aae7d38851e058a07c89488e7c81000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cab99403848324bfa534f02fa9c8a622e7a33d221854767296ecc0d3c90f343e127c1a84e1fd31fdad9223f913db06eca0f3bcde3b00d826ac2792a08ba35ae600000000000000000000006a91c5ab00000000000000000000000000023a366300000000000000030a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000210000000009d9cf34000000000000000100000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000cbeb893980dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d6c190000000cbeb8939800000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000542c0f2dbb3891af41183ee95ca9dc70c9ba59a039a291256541cecc0ba0e3300000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024934f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa20000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000017a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b0100000000000000026ec94cac9adf66557956b6c433889e69463b6ff2a25bb43eff9f0a3312d50ca9747eb0662cc95fb7333c92820b05d2e0a1dbf736f3b11b41e47fdaa26a5beda00000000003bd1aa700000000000000570a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000017a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b010000000000000003f0f50e67ceaa29cfe8aaad7ec58a385b976c93cb3ab6bc7904f7b242c6d6b236f1fa307c06a890ca4044badacb9ef6656f3640acdf91fe87032f5382fab272bc0000000003bd1aa70000000000000057ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000017a97c2562cdd50280258ee39c359ed72c4017ed5b08fb6f08eda1e3c6c469b010000000000000001b4f9ad6729c9f5b6ed6cee67b9f654ce75d8d44d010104aeebc0645f224a8e7c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005702c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002479ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000161360dc6050fde2bc0c43e1f72c2eb4a6b04431ec49f4d6415c12a72ffdcf93e7b75b459893129198aa8f7a4550c35593c51cd058406b524281a834388e22c1d0000000000000001000000000000000280ee45de784ee50e69cbc42e61f3b50e3326e503edda9c4ec260fc321279c8e1a73262d6602146a1f2675dae9270166df480e30d507fd21ec2ccd02b3b997a5b0000000000000001000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004041aaff3e71e03aba7daae3deafa51b1eaa64baf2a6e879a3dde41f8dc55d5a409d79db20e69745e895c8359f39f9dfdeb649328b662c6c577bafd4176cf16815", - "receiptsRoot": "0xf68a1b492e3c0efc14995493ee470f0fa016aae7d38851e058a07c89488e7c81", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000cab99403848324bfa534f02fa9c8a622e7a33d221854767296ecc0d3c90f343e127c1a84e1fd31fdad9223f913db06eca0f3bcde3b00d826ac2792a08ba35ae600000000000000000000006a91c5ab00000000000000000000000000023a366300000000000000030a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000210000000009d9cf34000000000000000100000000000000010a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f72646572000000cbeb893980dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d6c190000000cbeb8939800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000023a3663", - "digest": "0xcd2e053066754d713516119378ffebe374718064c442723626038d08633c9f52", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3663", - "digest": "0xae90d7b1629e04f77e545b9c314b255fafaf2f974b1e25d0802796f3b73ef912", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "765020000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000210000000009d9cf3400000000000000010000000000000001000000006a91c533", - "digest": "0x77432ddeb78d060b1273563ff149f45a6fbf92ae5644e79eadec893bd8d0173c", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67099274", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67098649", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3663", - "digest": "0xae90d7b1629e04f77e545b9c314b255fafaf2f974b1e25d0802796f3b73ef912", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67098421", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1865988", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000000000000000000000", - "digest": "0x9f0127214b352427f2fc68554c0415d87ad834ea707a7250878d28838db720ab", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67097949", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000a654b6c26cb85f8191085c53e09ef1ede7d0f846503b8b5bc0bad0d656b506f10a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000023a3663", - "digest": "0xae90d7b1629e04f77e545b9c314b255fafaf2f974b1e25d0802796f3b73ef912", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67097721", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "875830000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1854583", - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000190000000009d6c190000000000000000100000000000000010000000000000001ed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da00000000000000010000000000000001000000cbeb8939800000000009d6c190000000006a91c533", - "digest": "0x60a13e92b8ea5ef28fc8ea1b860d806ef83379f36a66be372e5407aef9e4ebc9", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67096329", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000190000000009d6c19000000000000000010000000000000001", - "digest": "0xf4fe22ca7e480aee3c40418d0d62a31f3e018c5a367771f8c858b94ea7e0e6c3", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67091513", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xed551caaf75bf7a5a7afb4cf6069c0cd717b67441379838f9f11c72795c927da", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "222567", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "405", - "totalGas": "232395", - "transactionId": "0xa419ca08f77d82066a9682565c9e2ab284a419c29f5af36f86cde88d84a06686" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x41aaff3e71e03aba7daae3deafa51b1eaa64baf2a6e879a3dde41f8dc55d5a409d79db20e69745e895c8359f39f9dfdeb649328b662c6c577bafd4176cf16815" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x4e93dc03a312be1881a8314b553bfba675bdfcfc98a9f1a062aa11dfd0b3b5dd", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "167191", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20007", - "utxoId": "0xec7a7d4ff394581f6aa5efa7cf9b9b229047555a96e5bd7a07c9af877bef4e800000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x8d44cb1084c87ad9aa57100325bd97c09d6dcd0bc875965294ec1ea71413738d", - "contractId": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "stateRoot": "0x914a6d02e27e688a92dc9c216f3c343e857189692151edc262713de95044ca3b", - "txPointer": "03bd1aa7003d", - "utxoId": "0xda945f4366eda9e2aefe36f48645c674fec21d5ddab06305c0d42a457dc42ca20001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xb361a4fa3d600ecf47d43fa613661cce94875b9b79e09d681e3376eeba8dbcdc", - "contractId": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "stateRoot": "0x5bff2e192d405c3e39cf31fd3c4de165657ca27e1ca019dc0fd571e56f99c29f", - "txPointer": "03bd1aa7001f", - "utxoId": "0x78092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e50001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef4", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70058", - "utxoId": "0xa419ca08f77d82066a9682565c9e2ab284a419c29f5af36f86cde88d84a066860003" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "166822", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc1d99a8f929646db986f98ff6047f50268f57ab67bf3a5b25638ed8439813c44", - "inputIndex": "1", - "stateRoot": "0x1cc4a7e9c0adc418be69b486c890652ef865c37891a162f326c48e149d79e4f9" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6aa8ff3332055a4254b9f08ac11f99ade3e1c3eaf9dab344597defd0c0a78d38", - "inputIndex": "2", - "stateRoot": "0x3cf3d1b4ab88f5e88353359ec8970b7e7a78442d6386b784387a15f0ac31b45a" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84801c3ec94ed73b6ee8916f36476e3233cf8905dc2e3e08b21f58a3c58addcb3da8000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008b17317d0151645e6caa8dcb27b45e375de45909b97dd6e1f50c29767421dcf551818298aa2b438926f0ee6997651165a4fa96c4fe3b35e0df7b4641f589e83000000000000000000000006a91c5ab00000000000000000000000000022436260000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004800000411d422b70000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f726465720000000025749f80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411c37241000000000025749f800000000000000003000000000000006400000000000210ac0000000003bd1aab0000000000000000ec7a7d4ff394581f6aa5efa7cf9b9b229047555a96e5bd7a07c9af877bef4e800000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028d17f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000700000000000000000000000000000000000000000000000000000000000000000000000000000001da945f4366eda9e2aefe36f48645c674fec21d5ddab06305c0d42a457dc42ca200000000000000018d44cb1084c87ad9aa57100325bd97c09d6dcd0bc875965294ec1ea71413738d914a6d02e27e688a92dc9c216f3c343e857189692151edc262713de95044ca3b0000000003bd1aa7000000000000003df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6000000000000000178092a518fb2701a4249197fb74f49d96be0faad756d7d1ee84a86167536b5e50000000000000001b361a4fa3d600ecf47d43fa613661cce94875b9b79e09d681e3376eeba8dbcdc5bff2e192d405c3e39cf31fd3c4de165657ca27e1ca019dc0fd571e56f99c29f0000000003bd1aa7000000000000001f9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b0000000000000001a419ca08f77d82066a9682565c9e2ab284a419c29f5af36f86cde88d84a0668600000000000000032644c09a699c6d66995c63afcaa2072fa976bb6f7e0bcb8773174cd094201ef400000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005802c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000028ba6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001c1d99a8f929646db986f98ff6047f50268f57ab67bf3a5b25638ed8439813c441cc4a7e9c0adc418be69b486c890652ef865c37891a162f326c48e149d79e4f9000000000000000100000000000000026aa8ff3332055a4254b9f08ac11f99ade3e1c3eaf9dab344597defd0c0a78d383cf3d1b4ab88f5e88353359ec8970b7e7a78442d6386b784387a15f0ac31b45a000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407285a7c6fb24be722b0a6ad1834923047006398dfad401e75d59b67ddc65ccddfda220f2c30eed87fae42b1edb9f39de38e173a05531505dde8549904b325130", - "receiptsRoot": "0x1c3ec94ed73b6ee8916f36476e3233cf8905dc2e3e08b21f58a3c58addcb3da8", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad079e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e74726163747300000000000000008b17317d0151645e6caa8dcb27b45e375de45909b97dd6e1f50c29767421dcf551818298aa2b438926f0ee6997651165a4fa96c4fe3b35e0df7b4641f589e83000000000000000000000006a91c5ab00000000000000000000000000022436260000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000020000000000000004800000411d422b70000000000000000010000000000000003f31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002800000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4bf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee60000000000000014000000000000000c6372656174655f6f726465720000000025749f80e3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0ffffffffffffffff0000000000000001000000000000001800000411c37241000000000025749f800000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998725", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab0000000000000000000000000002243626", - "digest": "0x1c54ccf3f1e3b5883122741a50b8404d6aba3b7be47b6fd941d46aeb63a2ed69", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "140936", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243626", - "digest": "0x5efbb1d43ed488455d7ffd6303d543fc6647e004ade2d7e0ea0078dc6f644965", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1963079", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": "591109000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "401592", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000004800000411d422b70000000000000000010000000000000003000000006a91c533", - "digest": "0x8bb81e963c5087cabb7fbbebcd8e1494d69007983585645ae602521031d96fbc", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "395940", - "ptr": "67100786", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "373108", - "ptr": "67100161", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243626", - "digest": "0x5efbb1d43ed488455d7ffd6303d543fc6647e004ade2d7e0ea0078dc6f644965", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099933", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881643", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b00000000000000000000000000000000", - "digest": "0x71c2674e8d8b35ad161cfd1915bb382fb6b8209e2ef9dd0e5883ab0dbbce7a4b", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "455840", - "ptr": "67099461", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "368836", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000e08d5fff6eda4cc6a8e9d084fcfebb27ae31e26bcf8c051651e2cb81f54a3b7df31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee600000000000000000000006a91c5ab0000000000000000000000000002243626", - "digest": "0x5efbb1d43ed488455d7ffd6303d543fc6647e004ade2d7e0ea0078dc6f644965", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "159704", - "ptr": "67099233", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "628400000", - "assetId": "0xe3c3f7a37f9c5c03cc1f2278373487fff96126638699d2f873baafb3ba8f3dd0", - "contractId": null, - "data": null, - "digest": null, - "gas": "1870238", - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "299912", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "299912", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000008300000411c37241000000000000000001000000000000000300000000000000019e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b000000000000000100000000000000030000000025749f8000000411c3724100000000006a91c533", - "digest": "0xb7885396ffc276ff592d3d8dceb4a7aa0c08819eadd77cc2313c82092ede3023", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "426572", - "ptr": "67097841", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000008300000411c372410000000000000000010000000000000003", - "digest": "0x13437c6efee79f4d45153e4050794d6713e3bf1427ed44b4772aa21bbb1bebfb", - "gas": null, - "gasUsed": null, - "id": "0xf31cc3a2fdef150bcef1b94bee2125e20e941380031ab0a6ced3fbfd92fceee6", - "is": "299912", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "372804", - "ptr": "67093793", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x9e9eeef33bc15c365cf2431500ebec61f393fdbd36f4ad05504d25740d863d4b", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "50740", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "201988", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "369", - "totalGas": "211816", - "transactionId": "0x4e93dc03a312be1881a8314b553bfba675bdfcfc98a9f1a062aa11dfd0b3b5dd" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x7285a7c6fb24be722b0a6ad1834923047006398dfad401e75d59b67ddc65ccddfda220f2c30eed87fae42b1edb9f39de38e173a05531505dde8549904b325130" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xedde7fa81a8c041f7302d1a08a751072de59aa850caff2021e8b4bff78e4eb22", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x0f9f509374c2da68997a3a1ad6d85be3f351c2f5f3da4c65bdbfad9b0bb25504", - "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "0x3d20e5a675c5fa1053fba11e176099711ba2f23112e385a7f6e2e759eca84f94", - "0x4c00c2297bc4532e74e9ef8bee4a3bdb7e8ccb84ef5aecc56f845c23e475856e", - "0x5d0b627f8192aee05c43ef53c1a12c054488cb6257f1dcf9e802b640b36722a7", - "0x6060e4d0f3c8272ebc982706667827c119bcc821d35f349c92a18ef11d2585a3", - "0x801af4ee92bd9e64ac16b65f490d4cd7dae791662ffbc8f70e20cdb7a6b7fa8c", - "0x91cfcbef2caad02996cdcb5b897222170e85a91cd2db8f23f07ea7d9ca030c19", - "0xb0d9f3e0689447632ac4dbfbbefaca7d4ff0bc580b468dd279167a07a4803724" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "307171", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20008", - "utxoId": "0xd53d967832822f7e8e4ddd1499696e9dfb93c90bd243170b57c624c127db0e340000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x4c00c2297bc4532e74e9ef8bee4a3bdb7e8ccb84ef5aecc56f845c23e475856e", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0004" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x5d0b627f8192aee05c43ef53c1a12c054488cb6257f1dcf9e802b640b36722a7", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0009" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x801af4ee92bd9e64ac16b65f490d4cd7dae791662ffbc8f70e20cdb7a6b7fa8c", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "stateRoot": "0xc6a7e7e61bfd2f4a7e9309bb7aa833b3fe164d4f521e74b23be54a7a16162e42", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0006" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x3d20e5a675c5fa1053fba11e176099711ba2f23112e385a7f6e2e759eca84f94", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0007" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x91cfcbef2caad02996cdcb5b897222170e85a91cd2db8f23f07ea7d9ca030c19", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f000a" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x6060e4d0f3c8272ebc982706667827c119bcc821d35f349c92a18ef11d2585a3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0002" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "stateRoot": "0xac502b6af385f1cd69c3b341a3a2f39cfef508ef49083c4a77c8a31507db2b1e", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x0f9f509374c2da68997a3a1ad6d85be3f351c2f5f3da4c65bdbfad9b0bb25504", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0008" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0xb0d9f3e0689447632ac4dbfbbefaca7d4ff0bc580b468dd279167a07a4803724", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa60050", - "utxoId": "0xabafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0005" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "307026", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "4", - "stateRoot": "0x2c14fe45c5849e0d78b85c3327742b1f02b2eb77e93dfab43eb6e58ce3d32221" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "5", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "6", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "7", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "8", - "stateRoot": "0x432b30c3d1acc02bbe1135d424e13905ca9f8eee9136eff13477f9feb32abdae" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "9", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "10", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e848090053ed4194e4133bb21a3c67a5aeaa8b0309439fff1f5b66294db426b97f420000000000000001800000000000002d8000000000000001a000000000000000b000000000000000b0000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a00000000000028f0000000000000290a00000000000000127061725f63616c6c5f636f6e7472616374730000000000000001000000000000000027f433b1a9b517abf1b6975b6643f44915a5f1710f24fb88f1cf632c19a2883abcc0ef255f0e936a06f578d418e82756d223be272bf886f830c0ffd30331dac600000000000000000000006a91c5a8000000000000000000000000000023e00000000000000000012f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f70000000000000016000000000000000e7075626c6973685f70726963657300000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000017000000000000000051a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef0000000000001083021edb2e674e00000000000000001083683c65d6159f0559000000006a91c530cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb00000000000000003d9f1d5d5acac47700000000000000003dab319b34674000000000006a91c53013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b300000000000000006a8e2e13ae90b8c820000000000000006a9b809cb7f430000000000006a91c5307ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf5800000000000000009f6d0bd08f5f940900000000000000009f85e8b448efda0d000000006a91c530dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c00000000000000000249c8ae2525d62c0000000000000000024a4de91f486000000000006a91c530000000000000006400000000000210ac0000000003bd1aab0000000000000000d53d967832822f7e8e4ddd1499696e9dfb93c90bd243170b57c624c127db0e340000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004afe3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa600000000000000504c00c2297bc4532e74e9ef8bee4a3bdb7e8ccb84ef5aecc56f845c23e475856e0000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa600000000000000505d0b627f8192aee05c43ef53c1a12c054488cb6257f1dcf9e802b640b36722a70000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa60000000000000050801af4ee92bd9e64ac16b65f490d4cd7dae791662ffbc8f70e20cdb7a6b7fa8c0000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f00000000000000060000000000000000000000000000000000000000000000000000000000000000c6a7e7e61bfd2f4a7e9309bb7aa833b3fe164d4f521e74b23be54a7a16162e420000000003bd1aa600000000000000502f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f70000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa600000000000000503d20e5a675c5fa1053fba11e176099711ba2f23112e385a7f6e2e759eca84f940000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa6000000000000005091cfcbef2caad02996cdcb5b897222170e85a91cd2db8f23f07ea7d9ca030c190000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa600000000000000506060e4d0f3c8272ebc982706667827c119bcc821d35f349c92a18ef11d2585a30000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f00000000000000010000000000000000000000000000000000000000000000000000000000000000ac502b6af385f1cd69c3b341a3a2f39cfef508ef49083c4a77c8a31507db2b1e0000000003bd1aa600000000000000500fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a0000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa600000000000000500f9f509374c2da68997a3a1ad6d85be3f351c2f5f3da4c65bdbfad9b0bb255040000000000000001abafede58f6a123bffe0a619bfcf021b02da8bb16921c00ad99d4251e742656f0000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa60000000000000050b0d9f3e0689447632ac4dbfbbefaca7d4ff0bc580b468dd279167a07a48037240000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000004af52f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000400000000000000000000000000000000000000000000000000000000000000002c14fe45c5849e0d78b85c3327742b1f02b2eb77e93dfab43eb6e58ce3d32221000000000000000100000000000000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000080000000000000000000000000000000000000000000000000000000000000000432b30c3d1acc02bbe1135d424e13905ca9f8eee9136eff13477f9feb32abdae00000000000000010000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d40f1ffd3a4f2724ee6786a3b5bc531169d2d9f8f24beaae9bb7032b7a2f086996e050b2806dfeb3316d6a2b40f5ce66a85512b063657d48a2eb3a52eccffed4", - "receiptsRoot": "0x90053ed4194e4133bb21a3c67a5aeaa8b0309439fff1f5b66294db426b97f420", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a00000000000028f0000000000000290a00000000000000127061725f63616c6c5f636f6e7472616374730000000000000001000000000000000027f433b1a9b517abf1b6975b6643f44915a5f1710f24fb88f1cf632c19a2883abcc0ef255f0e936a06f578d418e82756d223be272bf886f830c0ffd30331dac600000000000000000000006a91c5a8000000000000000000000000000023e00000000000000000012f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f70000000000000016000000000000000e7075626c6973685f70726963657300000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000017000000000000000051a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef0000000000001083021edb2e674e00000000000000001083683c65d6159f0559000000006a91c530cfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb00000000000000003d9f1d5d5acac47700000000000000003dab319b34674000000000006a91c53013f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b300000000000000006a8e2e13ae90b8c820000000000000006a9b809cb7f430000000000006a91c5307ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf5800000000000000009f6d0bd08f5f940900000000000000009f85e8b448efda0d000000006a91c530dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c00000000000000000249c8ae2525d62c0000000000000000024a4de91f486000000000006a91c530", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "14464", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10506", - "pc": "14464", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5a8000000000000000000000000000023e000", - "digest": "0xd49982f65ace13829091b887b6c4980b254accebb05250ca42931945ad5a03c5", - "gas": null, - "gasUsed": null, - "id": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "is": "14464", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "149232", - "ptr": "67107645", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964259", - "gasUsed": null, - "id": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "is": "308208", - "len": null, - "nonce": null, - "param1": "67108578", - "param2": "67108210", - "pc": "308208", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x1a48bde9b03ff7f6ab9d566c3f8968a532a782402976053cebfa113cbb9a03ef0000000000001083021edb2e674e00000000000000001083683c65d6159f055909000000006a91c530", - "digest": "0x5760fa2d0fc5a83d3933e980070f482d715a56fe3ad582d608c09ec629fa7440", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308208", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341400", - "ptr": "67104683", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0xcfcb8e2c50c39147a6aad0885f1a08d3c7b9a3ca62997fd580d37ca10aecc1bb00000000000000003d9f1d5d5acac47700000000000000003dab319b3467400009000000006a91c530", - "digest": "0x63960823e136cfefeaa7e656dad070405adc9bfe60b58101fef4fa11dea17fb9", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308208", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341400", - "ptr": "67103387", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x13f4be131ce4a5cdee7ab0de0967f9da1168d1972fd202549bc5c22e24092b300000000000000006a8e2e13ae90b8c820000000000000006a9b809cb7f43000009000000006a91c530", - "digest": "0x0ed7e020de88b55184ff06c1fa23d6bc35fc45a9fbdd138c56e67efe69688035", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308208", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341400", - "ptr": "67102091", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x7ebf0913cc3cf93cd4a05bbdfc209de6805284f3e3262d0a6bd0ab75c64ebf5800000000000000009f6d0bd08f5f940900000000000000009f85e8b448efda0d09000000006a91c530", - "digest": "0xd24d82a27157102e7d46d4b21c535c0b9a89e04aaada64e8d8ac2cb2c6000b03", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308208", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341400", - "ptr": "67100795", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c00000000000000000249c8ae2525d62c0000000000000000024a4de91f48600009000000006a91c530", - "digest": "0x3ac758401b8b8513eb5dadc82936ed32dfadfcc48e733e86efb62eab3f05a316", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308208", - "len": "73", - "nonce": null, - "param1": null, - "param2": null, - "pc": "341400", - "ptr": "67099499", - "ra": "0", - "rb": "4630298876898853375", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x2f809dbbcf785b897fbdb2f68bd405574e89deac9edbd2104e7e32cc6a5d75f7", - "is": "308208", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "323508", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0fd377f02de5f5ac12d46c17bb36beea8b68ed55ffb45dd48fba4a9edf3b5f2a", - "is": "14464", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "90300", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "70846", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "145", - "totalGas": "82990", - "transactionId": "0xedde7fa81a8c041f7302d1a08a751072de59aa850caff2021e8b4bff78e4eb22" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xd40f1ffd3a4f2724ee6786a3b5bc531169d2d9f8f24beaae9bb7032b7a2f086996e050b2806dfeb3316d6a2b40f5ce66a85512b063657d48a2eb3a52eccffed4" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xff517d8b2ed196f71480fdceb85446164ad69ae5588e61123f5c5708347445ad", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "149110", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa20009", - "utxoId": "0x457e84d3e86eead3fa7dc874393905eafcb402c04f7e81c8900604fb467c73740000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x190a10f309cbeebcd089dd5303be733d5c02aff2c15065fa7b33cbc119d3fdd1", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa70059", - "utxoId": "0x4e93dc03a312be1881a8314b553bfba675bdfcfc98a9f1a062aa11dfd0b3b5dd0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xca9a4b2f1ea3e56e3f05bc93f2e8c83ea7a9090571fab5aca920f79fc2ae13e4", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0xae456388664c90b54c448cc8c2ccdb3b9eb1c1dac34abad590581457285ccc81", - "txPointer": "03bd1aa70058", - "utxoId": "0xa419ca08f77d82066a9682565c9e2ab284a419c29f5af36f86cde88d84a066860001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x275784bebeb7ee1005a7c57bb36cf158d6e517f6442c89ea7d0dad34840200f1", - "contractId": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "stateRoot": "0x2922d5ef0deb59663c814c72626399dbb4558ffa7b6af74cb98c8808099f88c5", - "txPointer": "03bd1aa50007", - "utxoId": "0x565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a0001" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "148853", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xc49be4e3d2eb0bb65ae224b29ebd1b4f8f40d0d62bf6fdf2ddc8ff883b8206a4", - "inputIndex": "2", - "stateRoot": "0xce428d058b8b8c6e16d593e4b816c6bbb3793641cf45bee9a22902a09ec7e045" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xf82d9e62808a6383d7baa4a3387550dbea6b014a8d5fe0c6d7affb746e17e140", - "inputIndex": "3", - "stateRoot": "0x9b62592a071ebfaf5fc40c4c40c4de18c230f852bd9de1caeeb0f92204d4e77d" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480ab21e38a57a6247489c02002b3f5f70774b15404fb0d1d139293ff4f328549db00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0743e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ac5bfe2819489f2d643f61c37d934b9b70ec584655856665f3d5c48d520ac62447255b517bafef99561ddd6ef836968cfce6025a405ab83904a1905663be6bcf00000000000000000000006a91c5ab00000000000000000000000000000e6c3f00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000001b1ebfc00dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d45d1000000001b1ebfc00000000000000000300000000000000000000006400000000000210ac0000000003bd1aab0000000000000000457e84d3e86eead3fa7dc874393905eafcb402c04f7e81c8900604fb467c73740000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024676f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa20000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000014e93dc03a312be1881a8314b553bfba675bdfcfc98a9f1a062aa11dfd0b3b5dd0000000000000003190a10f309cbeebcd089dd5303be733d5c02aff2c15065fa7b33cbc119d3fdd100000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005902c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001a419ca08f77d82066a9682565c9e2ab284a419c29f5af36f86cde88d84a066860000000000000001ca9a4b2f1ea3e56e3f05bc93f2e8c83ea7a9090571fab5aca920f79fc2ae13e4ae456388664c90b54c448cc8c2ccdb3b9eb1c1dac34abad590581457285ccc810000000003bd1aa700000000000000580a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000001565796cc12ffc020beffe74fb1745bd57584cd14ac4c33f25c49127b427b7f8a0000000000000001275784bebeb7ee1005a7c57bb36cf158d6e517f6442c89ea7d0dad34840200f12922d5ef0deb59663c814c72626399dbb4558ffa7b6af74cb98c8808099f88c50000000003bd1aa5000000000000000743e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024575f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000002c49be4e3d2eb0bb65ae224b29ebd1b4f8f40d0d62bf6fdf2ddc8ff883b8206a4ce428d058b8b8c6e16d593e4b816c6bbb3793641cf45bee9a22902a09ec7e04500000000000000010000000000000003f82d9e62808a6383d7baa4a3387550dbea6b014a8d5fe0c6d7affb746e17e1409b62592a071ebfaf5fc40c4c40c4de18c230f852bd9de1caeeb0f92204d4e77d0000000000000040750c837f06a65de67602e3601bf066221ce19c5bcdb370ffa06c953474a9544a11ba883363ffe3f925124955ba22512a4aded96005ed7fc48163fb064cfaac56", - "receiptsRoot": "0xab21e38a57a6247489c02002b3f5f70774b15404fb0d1d139293ff4f328549db", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0743e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a600000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ac5bfe2819489f2d643f61c37d934b9b70ec584655856665f3d5c48d520ac62447255b517bafef99561ddd6ef836968cfce6025a405ab83904a1905663be6bcf00000000000000000000006a91c5ab00000000000000000000000000000e6c3f00000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000001b1ebfc00dc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128cffffffffffffffff000000000000000100000000000000180000000009d45d1000000001b1ebfc000000000000000003", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000000e6c3f", - "digest": "0x40c23d97385003ba699e7232cb7d0dc9418e1e3858f30db002c26bf4c4cda36d", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b79953e9cb647ad02924a75ab09a52340a224e290ed3cff72be17d86d3f087980a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000000e6c3f", - "digest": "0xc0c58b2769e20c3a739c960765391fb2a186d4e75fc6f354c3377de821f0f8e6", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "1201224738", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a600000000000000000000000047993c22", - "digest": "0xc10d24107a71b6a6ec5642b994db4bc080129851bb3b59717ef826b3aa9438b5", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000b79953e9cb647ad02924a75ab09a52340a224e290ed3cff72be17d86d3f087980a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000000e6c3f", - "digest": "0xc0c58b2769e20c3a739c960765391fb2a186d4e75fc6f354c3377de821f0f8e6", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "7280000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d45d1000000000000000010000000000000003000000000000000143e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a60000000000000001000000000000000300000001b1ebfc000000000009d45d10000000006a91c533", - "digest": "0x0bfdf59c1fa2a28698b74bcbc9ba2ae38ca27dfffa7c18ea5c4922cba30534df", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d45d1000000000000000010000000000000003", - "digest": "0x1a3dd2b4f74600a822a0c2c497a277e982db9ca3ecbe965cc1a248f04acf171d", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67099014", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x43e801841c1b4f3595c1628ef675ae941c17445126106741c83f2a24d74388a6", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "137683", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "257", - "totalGas": "147304", - "transactionId": "0xff517d8b2ed196f71480fdceb85446164ad69ae5588e61123f5c5708347445ad" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x750c837f06a65de67602e3601bf066221ce19c5bcdb370ffa06c953474a9544a11ba883363ffe3f925124955ba22512a4aded96005ed7fc48163fb064cfaac56" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1b20449ccda24f64fa1cea1c54e81ca98be1cb8cd81de5d324013cd8b52cb5f8", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "157987", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa2000a", - "utxoId": "0x18e236b61bd3b86e8e1365e9e959facf23e10da406365a4f1c1749eff055f5ff0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x35087322435b9850f7a2447fa048f1fe4514e637a17a3d00366af6b362ef1459", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7005b", - "utxoId": "0xff517d8b2ed196f71480fdceb85446164ad69ae5588e61123f5c5708347445ad0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa1e78a0dc1417f5425d6faf0752317e50976b0a8d6563811007f7a280ca7eb6b", - "contractId": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "stateRoot": "0xfa212e40deeb823b96cb1ce091a4e9b755c77438a5510d360c55ac6159a42a9a", - "txPointer": "03bd1aa50000", - "utxoId": "0xab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xc49be4e3d2eb0bb65ae224b29ebd1b4f8f40d0d62bf6fdf2ddc8ff883b8206a4", - "contractId": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "stateRoot": "0x621240c6ef9b09eb1560f50bccb13a84c6879e03e1ebcf49b149ddbd4c552645", - "txPointer": "03bd1aa7005b", - "utxoId": "0xff517d8b2ed196f71480fdceb85446164ad69ae5588e61123f5c5708347445ad0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "157686", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x4187b8c11481596483ca5580a61a9e0f4ee4a2a3617b6a221da3803a0495cb11", - "inputIndex": "2", - "stateRoot": "0x101da1f051c479b80b6589334be400f853aa20f7f2df23a479dcf3468982cb7f" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0xbc6f3496ffdaf3e3769d6e44ca0b3f0d39d22acb4706b956a5beeed3be6e6d1d", - "inputIndex": "3", - "stateRoot": "0x53877ecfce2c347597b401af92b004482daaa9e8045b81f90b986958b5d1a235" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480e1acd2b3776691715ae0d4e342f0486fae28058db3457cf97d31263ec8e43d9b00000000000000180000000000000224000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0755cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ee47bc355b0d80544499036bf5201527cd5c7a90b35ccff5fcafe2694df41c8dbdb616f2bb3c9cb1f292e99c655974b37e6d684ab0ba4c386966293cdbb0b6c100000000000000000000006a91c5ab00000000000000000000000000000e6c6600000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000000478f20606c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d45d1000000001b1ebfc00000000000000000100000000000000000000006400000000000210ac0000000003bd1aab000000000000000018e236b61bd3b86e8e1365e9e959facf23e10da406365a4f1c1749eff055f5ff0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000026923f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000001ff517d8b2ed196f71480fdceb85446164ad69ae5588e61123f5c5708347445ad000000000000000135087322435b9850f7a2447fa048f1fe4514e637a17a3d00366af6b362ef145900000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005b02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001ab6229b1f62afe1c471e250e7fe2d19bd41952536d218c59cbfd1d1e9b73185e0000000000000003a1e78a0dc1417f5425d6faf0752317e50976b0a8d6563811007f7a280ca7eb6bfa212e40deeb823b96cb1ce091a4e9b755c77438a5510d360c55ac6159a42a9a0000000003bd1aa5000000000000000055cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0000000000000001ff517d8b2ed196f71480fdceb85446164ad69ae5588e61123f5c5708347445ad0000000000000002c49be4e3d2eb0bb65ae224b29ebd1b4f8f40d0d62bf6fdf2ddc8ff883b8206a4621240c6ef9b09eb1560f50bccb13a84c6879e03e1ebcf49b149ddbd4c5526450000000003bd1aa7000000000000005b0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d00000000000267f6f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000024187b8c11481596483ca5580a61a9e0f4ee4a2a3617b6a221da3803a0495cb11101da1f051c479b80b6589334be400f853aa20f7f2df23a479dcf3468982cb7f00000000000000010000000000000003bc6f3496ffdaf3e3769d6e44ca0b3f0d39d22acb4706b956a5beeed3be6e6d1d53877ecfce2c347597b401af92b004482daaa9e8045b81f90b986958b5d1a2350000000000000040e184ebb92d955e93a861e6115e827fbcd5b490bc2b8dc9da3827d745537ab46b0389d224b2798aab01e689727c65dc5f6b212fe06a274015dd364f30e333798b", - "receiptsRoot": "0xe1acd2b3776691715ae0d4e342f0486fae28058db3457cf97d31263ec8e43d9b", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0755cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000ee47bc355b0d80544499036bf5201527cd5c7a90b35ccff5fcafe2694df41c8dbdb616f2bb3c9cb1f292e99c655974b37e6d684ab0ba4c386966293cdbb0b6c100000000000000000000006a91c5ab00000000000000000000000000000e6c6600000000000000020a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d70000000000000014000000000000000c6372656174655f6f7264657200000000478f20606c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000000009d45d1000000001b1ebfc000000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12608", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12608", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab00000000000000000000000000000e6c66", - "digest": "0xcb4fbd0a6f873c158b08fe63a7072a0b1d4de41da8e92af1f9c7d3146ebf5afc", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147376", - "ptr": "67107894", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000298cb2308c45abf2748d54c9fa30700855f87b3c8c4a49fba4b28661154ef5610a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000000e6c66", - "digest": "0x07d518ef61dbfc1918d5ab684ac7c45aef9c6482e43ceed407da4b68cba6ec7c", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105922", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964627", - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108442", - "param2": "67108402", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": "7280000000", - "assetId": "0xdc9b17ba40a623c3184b3159be54da69f18bce239b05e094fb21a603d75c128c", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408032", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f00000001b1ebfc000000000000000000", - "digest": "0x95f2900929a8f46fa7d670aae807bde9dfa833d6899c1ee278f2d705d5c0ecde", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462280", - "ptr": "67105450", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375276", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000298cb2308c45abf2748d54c9fa30700855f87b3c8c4a49fba4b28661154ef5610a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d700000000000000000000006a91c5ab00000000000000000000000000000e6c66", - "digest": "0x07d518ef61dbfc1918d5ab684ac7c45aef9c6482e43ceed407da4b68cba6ec7c", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166144", - "ptr": "67105222", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1200562272", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1949992", - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "306352", - "len": null, - "nonce": null, - "param1": "67108382", - "param2": "67108358", - "pc": "306352", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000060000000009d45d1000000000000000000000000000000001000000000000000155cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f0000000000000000000000000000000100000001b1ebfc000000000009d45d10000000006a91c533", - "digest": "0x1c50ec3f90a78f47119a5507a85a8738da8149c482a46e7bc2af8a5e79854420", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433012", - "ptr": "67103830", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000010000000009d45d100000000000000001000000000000000300000000000000060000000009d45d100000000000000000000000000000000100000001b1ebfc000000000009d45d10000000006a91c533", - "digest": "0x8483eb64c5b15b7d17d3b01b48eb98b29053eb947e55f87239688b539718b106", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "88", - "nonce": null, - "param1": null, - "param2": null, - "pc": "440624", - "ptr": "67102718", - "ra": "0", - "rb": "14784419691340355228", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000b1bc00000000000000000", - "digest": "0xe4af5ef3e07471707cfae64950146ae501a4e5b53f38a33da4b89e51a34df991", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "16", - "nonce": null, - "param1": null, - "param2": null, - "pc": "443352", - "ptr": "67097262", - "ra": "0", - "rb": "9316803936658460360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000060000000009d45d1000000000000000000000000000000001", - "digest": "0x9e5a6f77edef8fbcfe77b396dc56cf508330752c395e59558d5bd2f5e812d56a", - "gas": null, - "gasUsed": null, - "id": "0x0a69f7fcc66c880aab1462362b7c23bad1403bb537129e6bb481bc00a0a343d7", - "is": "306352", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379244", - "ptr": "67096302", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x55cc622151052fa6e8d294c73ab3ff0d2c27cb633fe4bd57440c3adadeaa3c2f", - "is": "12608", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57180", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "163029", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "301", - "totalGas": "172650", - "transactionId": "0x1b20449ccda24f64fa1cea1c54e81ca98be1cb8cd81de5d324013cd8b52cb5f8" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0xe184ebb92d955e93a861e6115e827fbcd5b490bc2b8dc9da3827d745537ab46b0389d224b2798aab01e689727c65dc5f6b212fe06a274015dd364f30e333798b" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x1ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "155342", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa2000b", - "utxoId": "0xf961c9a29e4fe993529108172da768d9d7d80b4867525e48dbb242cd21c9f08f0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x99812cd8524c1d99ff42c50fb9225d473afbd8bcf797f977764fb28294095fce", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xe11edf4c4ea40fc0a101f3d92c9d3ad30f02adf212053a7dbe27d7654b3b605b", - "txPointer": "03bd1aa70042", - "utxoId": "0x035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c620003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7005c", - "utxoId": "0x1b20449ccda24f64fa1cea1c54e81ca98be1cb8cd81de5d324013cd8b52cb5f80001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x1cd5e0be804ab5535715a7e08d6a4d395e90b23f61e462da0de08d68e7a3c442", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xa30e70a033ac50075f5731cb9ac1ee2b77dc759065527dc1270d68e356814d84", - "txPointer": "03bd1aa70042", - "utxoId": "0x035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c620002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "155091", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608", - "inputIndex": "1", - "stateRoot": "0xd00247d67738d848a205796955f5e11134a8f7a0769010ff73dfc2555264f0bd" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "2", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x75ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b", - "inputIndex": "3", - "stateRoot": "0xf7399078b9c664a5d3bd09f43e513dcf67974dcc3035f2a0e2d605bfd1a746a9" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84802645961af47ef6bec593e3ca553f94a37098b5a40b58da921914a45714933c310000000000000018000000000000022c000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000084b63336a3eb9a6c95e5084bd8d2d7039b023e140971b8447a856870c48b4649dcfd0805d106d253c1df21c12e160802ffbc8ad3533f42b679f2847d54b30a3e00000000000000000000006a91c5ab000000000000000000000000000313570d00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000280000001c98de74c0000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000006400000000000210ac0000000003bd1aab0000000000000000f961c9a29e4fe993529108172da768d9d7d80b4867525e48dbb242cd21c9f08f0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025ecef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000b00000000000000000000000000000000000000000000000000000000000000000000000000000001035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c62000000000000000399812cd8524c1d99ff42c50fb9225d473afbd8bcf797f977764fb28294095fcee11edf4c4ea40fc0a101f3d92c9d3ad30f02adf212053a7dbe27d7654b3b605b0000000003bd1aa700000000000000428d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000011b20449ccda24f64fa1cea1c54e81ca98be1cb8cd81de5d324013cd8b52cb5f80000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005c02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001035d497359b8f36ee2a041d5d14e9825771b81cccda6362944765f43c8fc5c6200000000000000021cd5e0be804ab5535715a7e08d6a4d395e90b23f61e462da0de08d68e7a3c442a30e70a033ac50075f5731cb9ac1ee2b77dc759065527dc1270d68e356814d840000000003bd1aa70000000000000042c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000025dd3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07000000000000000100000000000000016e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608d00247d67738d848a205796955f5e11134a8f7a0769010ff73dfc2555264f0bd00000000000000010000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000375ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5bf7399078b9c664a5d3bd09f43e513dcf67974dcc3035f2a0e2d605bfd1a746a90000000000000040560551687754c6f35bef3625f7c699687825878c94c86d0b01a3bf4b79fa5abe5dc5cf57bdef3f0196baeb2925cfdfaaee2a1e5eda063687793c851144e06f1d", - "receiptsRoot": "0x2645961af47ef6bec593e3ca553f94a37098b5a40b58da921914a45714933c31", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e747261637473000000000000000084b63336a3eb9a6c95e5084bd8d2d7039b023e140971b8447a856870c48b4649dcfd0805d106d253c1df21c12e160802ffbc8ad3533f42b679f2847d54b30a3e00000000000000000000006a91c5ab000000000000000000000000000313570d00000000000000028d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000280000001c98de74c0000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12616", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12616", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000313570d", - "digest": "0x3ec7bcac4b19552f44cea250ba1412532b04d97bfc7da6fb62e217cede67639d", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147384", - "ptr": "67107886", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570d", - "digest": "0xf982da9753da5e66b1b664eae63711067a32a809c9f31eacbb640277b2acfba3", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67105906", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1964625", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108444", - "param2": "67108412", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "189885594800", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408040", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000280000001c98de74c000000000000000000000000000000001000000006a91c533", - "digest": "0xa9067f774560f7ddcf2e1c4e9e83df9fa5b12a1d8c5b1693df2720cfb150956b", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402388", - "ptr": "67100130", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379556", - "ptr": "67099505", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570d", - "digest": "0xf982da9753da5e66b1b664eae63711067a32a809c9f31eacbb640277b2acfba3", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166152", - "ptr": "67099277", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1874017", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306360", - "len": null, - "nonce": null, - "param1": "67108390", - "param2": "67108350", - "pc": "306360", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462288", - "ptr": "67098805", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306360", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375284", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12616", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57188", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "134419", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "251", - "totalGas": "144051", - "transactionId": "0x1ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x560551687754c6f35bef3625f7c699687825878c94c86d0b01a3bf4b79fa5abe5dc5cf57bdef3f0196baeb2925cfdfaaee2a1e5eda063687793c851144e06f1d" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0xeb48212feb30bd789743d2c63fed7ed68e1f577c1dee7a8457926b9238e69944", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "151539", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa2000c", - "utxoId": "0xe88ed81f3225e51984a59dda2438f5ee0af50eade5f630ca1e68f690f667d83a0000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x75ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b", - "contractId": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "stateRoot": "0xab181ee1e3b5ffae9cd9f5b403b9778caba6dafec9d08035c9da34b6cd80ecd5", - "txPointer": "03bd1aa7005d", - "utxoId": "0x1ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc0003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x6e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608", - "contractId": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "stateRoot": "0xf9e4ff977167e3503f2e8a87bd4d303a290cbe4f1fe5a117056304dcda927383", - "txPointer": "03bd1aa7005d", - "utxoId": "0x1ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xa195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7005d", - "utxoId": "0x1ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "151167", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x75ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b", - "inputIndex": "1", - "stateRoot": "0x418b7d783ed6b7b95d37a874fbf03bbcdc76c6696b3e056211f0d496df1e0665" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x6e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608", - "inputIndex": "2", - "stateRoot": "0xa6f62d99aa4f379d533dab9caec8f2e159cf7f9201bd9ebbf918e97bb79a867b" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "3", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e8480bbfa55e61a78d6e5bfa9f7875e3ce1619a610bff4fc497b6156ae8ee37ce1e76000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000aad905c120ce24199cc280570af8598d0cb44fc90c6b69aa01bf8d8546a1fa0467e61db1ed02491bcd26eb2a75e199b236e5005e4d0bbe24b6f0b36a60f5d06100000000000000000000006a91c5ab000000000000000000000000000313570e00000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000150000001c96c3d220000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000074282452ec6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c96c3d22000000000f22c75c00000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000e88ed81f3225e51984a59dda2438f5ee0af50eade5f630ca1e68f690f667d83a0000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024ff3f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000011ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc000000000000000375ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5bab181ee1e3b5ffae9cd9f5b403b9778caba6dafec9d08035c9da34b6cd80ecd50000000003bd1aa7000000000000005dc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000011ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc00000000000000016e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608f9e4ff977167e3503f2e8a87bd4d303a290cbe4f1fe5a117056304dcda9273830000000003bd1aa7000000000000005d8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000011ab5741f201d304e7f6937c6dd58e314bc079dc67e085fbc40f7cf7971b917bc0000000000000002a195e6db2d5d734a4df124a133015a3f674633e3ed24a365c51e70ef30e96c6c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005d02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d0000000000024e7ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000000000001000000000000000175ca7c4988e611bf917f469a298d3e2146813e03163686a731bc08cbba8b9c5b418b7d783ed6b7b95d37a874fbf03bbcdc76c6696b3e056211f0d496df1e0665000000000000000100000000000000026e7b1b856c84408e79febb96b802de4c68fc7cebfdcdf6fff2e5c22819209608a6f62d99aa4f379d533dab9caec8f2e159cf7f9201bd9ebbf918e97bb79a867b000000000000000100000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000405b0e22a3a07de503fdfb274a1dbcec94512221f59bd570fd72bf322aa165a19eca26099c0b58b12b9d7a30f311f87eb92292e80ae0f4c951a10ddbcdb18f73f1", - "receiptsRoot": "0xbbfa55e61a78d6e5bfa9f7875e3ce1619a610bff4fc497b6156ae8ee37ce1e76", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000aad905c120ce24199cc280570af8598d0cb44fc90c6b69aa01bf8d8546a1fa0467e61db1ed02491bcd26eb2a75e199b236e5005e4d0bbe24b6f0b36a60f5d06100000000000000000000006a91c5ab000000000000000000000000000313570e00000000000000038d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000001000000000000002000000000000000150000001c96c3d220000000000000000000000000000000018d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000280000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe0000000000000014000000000000000c6372656174655f6f7264657200000074282452ec6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff000000000000000100000000000000180000001c96c3d22000000000f22c75c00000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000313570e", - "digest": "0x215b439d4940f17c4a2d2416b67fa61e4eb0d749c16da74720dec2fd9c4f74f6", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570e", - "digest": "0xf1f5a75217901abc971ceed5380e0a4b9af0d9b34badc49ca1b8c8cc8acf542f", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": "498889675500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000150000001c96c3d22000000000000000000000000000000001000000006a91c533", - "digest": "0xd4a6e8cf45982b7f945eb48cd1f4c106bd1f27f0fd6994ddcb939a5111d96a6c", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100498", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67099873", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570e", - "digest": "0xf1f5a75217901abc971ceed5380e0a4b9af0d9b34badc49ca1b8c8cc8acf542f", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099645", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1879476", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe00000000000000000000000000000000", - "digest": "0xd2b70981489eb759a0628043e31d66b1c5d2b3d54e2ef641f9cc71897574778e", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099173", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000c351893a0314b249ccef619e9e987d6eff9d0bbd98acd4893ba7ef08b2bcdbc48d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe00000000000000000000006a91c5ab000000000000000000000000000313570e", - "digest": "0xf1f5a75217901abc971ceed5380e0a4b9af0d9b34badc49ca1b8c8cc8acf542f", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67098945", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "498889675500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1868071", - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000160000001c96c3d220000000000000000000000000000000010000000000000001c7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe0000000000000000000000000000000100000000f22c75c00000001c96c3d220000000006a91c533", - "digest": "0x322a392c33a0db64cfe3709bb4383f1943333d3aa964cb96a2f9d0b12b88fa35", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097553", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000160000001c96c3d22000000000000000000000000000000001", - "digest": "0x4e36a7e9f9a437a08f67b5674bd4b163fb743050b697f2e0d4d594570c665eda", - "gas": null, - "gasUsed": null, - "id": "0x8d5882f0b3dd5e23026b9be6ba9af27fa8b04f4f67d28281ca78e44334e58ffe", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67093185", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0xc7f4f2346df4b3b4502e46f07f139ddad0d7a17d631ff1f67b7d9f8c50b96dbe", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "203590", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "372", - "totalGas": "213418", - "transactionId": "0xeb48212feb30bd789743d2c63fed7ed68e1f577c1dee7a8457926b9238e69944" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x5b0e22a3a07de503fdfb274a1dbcec94512221f59bd570fd72bf322aa165a19eca26099c0b58b12b9d7a30f311f87eb92292e80ae0f4c951a10ddbcdb18f73f1" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x2b8a1de77be2fac05bdc2f021d1a3fcdec7b4292aef5f16dc4ecd2d1799fc482", - "inputAssetIds": [ - "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" - ], - "inputContract": null, - "inputContracts": [ - "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47" - ], - "inputs": [ - { - "__typename": "InputCoin", - "amount": "153438", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "owner": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d", - "predicate": "0x", - "predicateData": "0x", - "predicateGasUsed": "0", - "txPointer": "03bd1aa2000d", - "utxoId": "0x951628326faef9bd2ca9915880952a28582b3c17a590f871a8301851e350c3140000", - "witnessIndex": "0" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x2f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d565", - "contractId": "0x02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e842368", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa7005e", - "utxoId": "0xeb48212feb30bd789743d2c63fed7ed68e1f577c1dee7a8457926b9238e699440003" - }, - { - "__typename": "InputContract", - "balanceRoot": "0x56856138c8f81180438a82b14cf2c5e1394ce41bf573c9484c1cf7de029b0ba0", - "contractId": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "stateRoot": "0x5e71a80725e9e2c58e14b9c7924f392ed33f57cde039908b986681ab39f2a602", - "txPointer": "03bd1aa7002f", - "utxoId": "0xcb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce0001" - }, - { - "__typename": "InputContract", - "balanceRoot": "0xf510d8396bfcc7ddf1eca12d39a2515cdbf2ea712f1bb89a5762deb0b3b770a3", - "contractId": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "stateRoot": "0x4d1bcb909199a52255a7178a53d5966b95e9e9f642802d2a6e85d359bf078811", - "txPointer": "03bd1aa7002f", - "utxoId": "0xcb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce0002" - } - ], - "isCreate": false, - "isMint": false, - "isScript": true, - "isUpgrade": false, - "isUpload": false, - "maturity": "0", - "mintAmount": null, - "mintAssetId": null, - "mintGasPrice": null, - "outputContract": null, - "outputs": [ - { - "__typename": "ChangeOutput", - "amount": "153103", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "to": "0xed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "inputIndex": "1", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x48ae7f60db16e3aa9dc4ac873d95a7d5ccfe49209efc49718b6db466932756e6", - "inputIndex": "2", - "stateRoot": "0x7b747eea6a289581297dcdcc93079ffe806c1cc6fd331918b59f719d2c310187" - }, - { - "__typename": "ContractOutput", - "balanceRoot": "0x290a8e19d1a76d7aa3d2e36805e9dc802bc6bab6ce25891c2832863fa9bd67f4", - "inputIndex": "3", - "stateRoot": "0x27a636e638b5149300bb3c7c848f9c723c310ea68775b445e008431baf28c6de" - } - ], - "policies": { - "maturity": null, - "maxFee": "135340", - "tip": null, - "witnessLimit": "100" - }, - "proofSet": null, - "rawPayload": "0x000000000000000000000000001e84809bbe96b4a96a9b3563dec7652daf9247fb87a758796b29d58334cd9027678105000000000000001800000000000002c0000000000000001a000000000000000400000000000000040000000000000001724028c0724428985d451000724828a02d41148a240400000000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a8e8e0dcbc23ff00cbf45f18860d10e9b89ad2ae12fbd91a521c0e3212aba57cb28e0d44c3a71f757ca4d78215182be75f925ca83a5b2b22d4d9544afc40d40400000000000000000000006a91c5ab000000000000000000000000000099f05f000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000002890000000003b86ccd00000000000000000000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f72646572000000fb736dfc1c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000003b86ccd0000000fbc7dde7800000000000000001000000000000006400000000000210ac0000000003bd1aab0000000000000000951628326faef9bd2ca9915880952a28582b3c17a590f871a8301851e350c3140000000000000000ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002575ef8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad070000000003bd1aa2000000000000000d00000000000000000000000000000000000000000000000000000000000000000000000000000001eb48212feb30bd789743d2c63fed7ed68e1f577c1dee7a8457926b9238e6994400000000000000032f86f923ea80fba15b43919eed3b5517c8f22b06a07ed1f93181c082e0c3d56500000000000000000000000000000000000000000000000000000000000000000000000003bd1aa7000000000000005e02c7b1edf72ac8135d21da3eb27205432ca09c88968a65eb6eb165b48e8423680000000000000001cb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce000000000000000156856138c8f81180438a82b14cf2c5e1394ce41bf573c9484c1cf7de029b0ba05e71a80725e9e2c58e14b9c7924f392ed33f57cde039908b986681ab39f2a6020000000003bd1aa7000000000000002f30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc50000000000000001cb651a993324e81e9270e5fc170040266773c36c25c927f67094f859206149ce0000000000000002f510d8396bfcc7ddf1eca12d39a2515cdbf2ea712f1bb89a5762deb0b3b770a34d1bcb909199a52255a7178a53d5966b95e9e9f642802d2a6e85d359bf0788110000000003bd1aa7000000000000002f97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000002ed1bd7bfea2ca1eded9274336cd26a8e6cd0d13ad7a4d8d92f511af3675f566d000000000002560ff8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000000010000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000248ae7f60db16e3aa9dc4ac873d95a7d5ccfe49209efc49718b6db466932756e67b747eea6a289581297dcdcc93079ffe806c1cc6fd331918b59f719d2c31018700000000000000010000000000000003290a8e19d1a76d7aa3d2e36805e9dc802bc6bab6ce25891c2832863fa9bd67f427a636e638b5149300bb3c7c848f9c723c310ea68775b445e008431baf28c6de0000000000000040312cf96b4536acfb7d073bc340060d2adc3d2abc51220e17583fd2060c5ceb0f5756d2f9cbb2a9fff9daf7d303f8b52eeeda90022be1105fc7ad76c1d544a353", - "receiptsRoot": "0x9bbe96b4a96a9b3563dec7652daf9247fb87a758796b29d58334cd9027678105", - "salt": null, - "script": "0x724028c0724428985d451000724828a02d41148a24040000", - "scriptData": "0x0000000000000000f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0730963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000028f00000000000002912000000000000001a7061725f73657373696f6e5f63616c6c5f636f6e7472616374730000000000000000a8e8e0dcbc23ff00cbf45f18860d10e9b89ad2ae12fbd91a521c0e3212aba57cb28e0d44c3a71f757ca4d78215182be75f925ca83a5b2b22d4d9544afc40d40400000000000000000000006a91c5ab000000000000000000000000000099f05f000000000000000397c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c63616e63656c5f6f7264657200000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000100000000000000200000000000002890000000003b86ccd00000000000000000000000000000000197c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000016000000000000000e736574746c655f62616c616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000010000000000000028000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc597c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c470000000000000014000000000000000c6372656174655f6f72646572000000fb736dfc1c6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6ffffffffffffffff00000000000000010000000000000018000000003b86ccd0000000fbc7dde7800000000000000001", - "scriptGasLimit": "2000000", - "status": { - "__typename": "SuccessStatus", - "programState": { - "data": "0x0000000000000001", - "returnType": "RETURN" - }, - "receipts": [ - { - "amount": "0", - "assetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "contractId": null, - "data": null, - "digest": null, - "gas": "1998623", - "gasUsed": null, - "id": null, - "is": "12760", - "len": null, - "nonce": null, - "param1": "10480", - "param2": "10514", - "pc": "12760", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x00000000000000000000006a91c5ab000000000000000000000000000099f05f", - "digest": "0x84462c746b169e65a60ec5cd25a6faf551a842e6e4b6a2c81282e30b85007177", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "147528", - "ptr": "67107706", - "ra": "0", - "rb": "787528562801511233", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5ab000000000000000000000000000099f05f", - "digest": "0x17d3a0e4dc3410ef59712c64b2ac7689d539caeaf49bc388a01cf2f048165653", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67105578", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1962974", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108308", - "param2": "67108276", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": "767143723500", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "408184", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "TRANSFER", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000002890000000003b86ccd000000000000000000000000000000001000000006a91c533", - "digest": "0x3c5d736b31de1af9cf3bfe02e93eaa0aa0fc4b1fb44a49331d01e0fe7f6a642c", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "40", - "nonce": null, - "param1": null, - "param2": null, - "pc": "402532", - "ptr": "67100722", - "ra": "0", - "rb": "9438144640984314783", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x01", - "digest": "0x4bf5122f344554c53bde2ebb8cd2b7e3d1600ad631c385a5d7cce23c7785459a", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "1", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379700", - "ptr": "67100097", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5ab000000000000000000000000000099f05f", - "digest": "0x17d3a0e4dc3410ef59712c64b2ac7689d539caeaf49bc388a01cf2f048165653", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099869", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "0", - "assetId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "contractId": null, - "data": null, - "digest": null, - "gas": "1881572", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108254", - "param2": "67108214", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000000000000000000000", - "digest": "0x067440636507a74b9e44f0abaf93b128c83ad6fdf343241b0720ac7f19169826", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "56", - "nonce": null, - "param1": null, - "param2": null, - "pc": "462432", - "ptr": "67099397", - "ra": "0", - "rb": "12773884859982894916", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "375428", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000000000bad5bed299ddd7fdb3577566fd7286bc0d35cb6e0a15a6a3770ab49a85ece4a897c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c4700000000000000000000006a91c5ab000000000000000000000000000099f05f", - "digest": "0x17d3a0e4dc3410ef59712c64b2ac7689d539caeaf49bc388a01cf2f048165653", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "104", - "nonce": null, - "param1": null, - "param2": null, - "pc": "166296", - "ptr": "67099169", - "ra": "0", - "rb": "6416690992090836040", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": "1079973379100", - "assetId": "0x6c91bc65f585da1a238f8ec5e410e62616d2b2c8f2cb4701e225deb51240add6", - "contractId": null, - "data": null, - "digest": null, - "gas": "1870167", - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "306504", - "len": null, - "nonce": null, - "param1": "67108194", - "param2": "67108170", - "pc": "306504", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "CALL", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000002891000000003b86ccd000000000000000000000000000000001000000000000000130963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc500000000000000000000000000000001000000fbc7dde780000000003b86ccd0000000006a91c533", - "digest": "0x18a2f7b78f711f6b1eb9f612d631b4ea91b24ad761c3c282af3818c7ab56c7b6", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "112", - "nonce": null, - "param1": null, - "param2": null, - "pc": "433164", - "ptr": "67097777", - "ra": "0", - "rb": "16078156521692740360", - "rc": null, - "rd": null, - "reason": null, - "receiptType": "LOG_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x0000000000002891000000003b86ccd000000000000000000000000000000001", - "digest": "0x97f3748631080a826ce904c1a785b0e779f1cc4695f4172a8f438ecbd996706a", - "gas": null, - "gasUsed": null, - "id": "0x97c3537759c558a06c7b1ea4b20a9f42469ed6a00a05069ac0e23813d2b48c47", - "is": "306504", - "len": "32", - "nonce": null, - "param1": null, - "param2": null, - "pc": "379396", - "ptr": "67095681", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": "0x", - "digest": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "gas": null, - "gasUsed": null, - "id": "0x30963d48013a9c06da9e40623b425bd0121b327e648b094f4835d44959438fc5", - "is": "12760", - "len": "0", - "nonce": null, - "param1": null, - "param2": null, - "pc": "57332", - "ptr": "0", - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN_DATA", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": null, - "id": null, - "is": "10368", - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": "10388", - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "RETURN", - "recipient": null, - "result": null, - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": "1" - }, - { - "amount": null, - "assetId": null, - "contractId": null, - "data": null, - "digest": null, - "gas": null, - "gasUsed": "182348", - "id": null, - "is": null, - "len": null, - "nonce": null, - "param1": null, - "param2": null, - "pc": null, - "ptr": null, - "ra": null, - "rb": null, - "rc": null, - "rd": null, - "reason": null, - "receiptType": "SCRIPT_RESULT", - "recipient": null, - "result": "0", - "sender": null, - "subId": null, - "to": null, - "toAddress": null, - "val": null - } - ], - "time": "4611686020215326013", - "totalFee": "335", - "totalGas": "192176", - "transactionId": "0x2b8a1de77be2fac05bdc2f021d1a3fcdec7b4292aef5f16dc4ecd2d1799fc482" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": null, - "upgradePurpose": null, - "witnesses": [ - "0x312cf96b4536acfb7d073bc340060d2adc3d2abc51220e17583fd2060c5ceb0f5756d2f9cbb2a9fff9daf7d303f8b52eeeda90022be1105fc7ad76c1d544a353" - ] - }, - { - "bytecodeRoot": null, - "bytecodeWitnessIndex": null, - "id": "0x675a2e5eccc4db5452aaf8ee1e09ed3410eb5846bd52b8b73b6289df2e4785b3", - "inputAssetIds": null, - "inputContract": { - "balanceRoot": "0xffe84fcf34f42e1362e7db752eb32148e65ba282c9afb7e29c8e044602c0984c", - "contractId": "0x7777777777777777777777777777777777777777777777777777777777777777", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000", - "txPointer": "03bd1aa6006a", - "utxoId": "0x0450e0ac6e93b10af4a873c4336f4efe59a9a7508ed68a1b2b03ec568144e0e70000" - }, - "inputContracts": [ - "0x7777777777777777777777777777777777777777777777777777777777777777" - ], - "inputs": null, - "isCreate": false, - "isMint": true, - "isScript": false, - "isUpgrade": false, - "isUpload": false, - "maturity": null, - "mintAmount": "27698", - "mintAssetId": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", - "mintGasPrice": "2000", - "outputContract": { - "balanceRoot": "0x8e8cdeca7f88074fccfe4d083f6c7c96c6035f87af29435444de1b557caf01e7", - "inputIndex": "0", - "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "outputs": [], - "policies": null, - "proofSet": null, - "rawPayload": "0x00000000000000020000000003bd1aa700000000000000600450e0ac6e93b10af4a873c4336f4efe59a9a7508ed68a1b2b03ec568144e0e70000000000000000ffe84fcf34f42e1362e7db752eb32148e65ba282c9afb7e29c8e044602c0984c00000000000000000000000000000000000000000000000000000000000000000000000003bd1aa6000000000000006a777777777777777777777777777777777777777777777777777777777777777700000000000000008e8cdeca7f88074fccfe4d083f6c7c96c6035f87af29435444de1b557caf01e700000000000000000000000000000000000000000000000000000000000000000000000000006c32f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad0700000000000007d0", - "receiptsRoot": null, - "salt": null, - "script": null, - "scriptData": null, - "scriptGasLimit": null, - "status": { - "__typename": "SuccessStatus", - "programState": null, - "receipts": [], - "time": "4611686020215326013", - "totalFee": "0", - "totalGas": "0", - "transactionId": "0x675a2e5eccc4db5452aaf8ee1e09ed3410eb5846bd52b8b73b6289df2e4785b3" - }, - "storageSlots": null, - "subsectionIndex": null, - "subsectionsNumber": null, - "txPointer": "03bd1aa70060", - "upgradePurpose": null, - "witnesses": null - } - ] -} diff --git a/packages/graphql/.env.example b/packages/graphql/.env.example index 952824b11..50a77619f 100644 --- a/packages/graphql/.env.example +++ b/packages/graphql/.env.example @@ -1,13 +1,3 @@ FUEL_PROVIDER=https://testnet.fuel.network/v1/graphql -SERVER_PORT=3004 -SERVER_API_KEY=your-secret-key -DB_HOST="127.0.0.1" -DB_PORT=5435 -DB_USER=postgres -DB_PASS=postgres -DB_NAME=postgres -SSL=false -DEBUG=true FUEL_CHAIN=testnet # options: mainnet, testnet -COINGECKO_API_KEY= # used to fetch token prices -ALCHEMY_API_KEY= \ No newline at end of file +DEBUG=true diff --git a/packages/graphql/.env.production b/packages/graphql/.env.production deleted file mode 100644 index 0cd3e1016..000000000 --- a/packages/graphql/.env.production +++ /dev/null @@ -1,19 +0,0 @@ -LOG_DIR="/var/logs" -FUEL_PROVIDER=http://localhost:4000/v1/graphql -SERVER_PORT=3004 -SERVER_API_KEY=your-secret-key -SYNCER_PORT=3005 - -DB_HOST="127.0.0.1" -DB_PORT=5435 -DB_USER=postgres -DB_PASS=postgres -DB_NAME=postgres -SYNC_MISSING=true -SERVER_BUILD=true -SYNC_OFFSET=10 -SYNC_LIMIT=100000 -WATCH_INTERVAL=5000 -SSL=true -DEBUG=false -DEBUG_PAYLOAD=false diff --git a/packages/graphql/.swcrc b/packages/graphql/.swcrc deleted file mode 100644 index fb03f0550..000000000 --- a/packages/graphql/.swcrc +++ /dev/null @@ -1,18 +0,0 @@ -{ - "jsc": { - "parser": { - "syntax": "typescript", - "tsx": false, - "decorators": true - }, - "target": "es2017", - "keepClassNames": true, - "transform": { - "legacyDecorator": true, - "decoratorMetadata": true - } - }, - "module": { - "type": "commonjs" - } -} diff --git a/packages/graphql/API.md b/packages/graphql/API.md deleted file mode 100644 index 55417c28e..000000000 --- a/packages/graphql/API.md +++ /dev/null @@ -1,89 +0,0 @@ -# Fuel Explorer Indexer - API -### Instructions for consuming Assets data from Indexer API - -API endpoint: -`/assets/` - get information about any asset (including NFTs) - -URLs to consume: -- Mainnet: https://mainnet-explorer.fuel.network -- Testnet: https://explorer-indexer-testnet.fuel.network - - -`curl` example of usage -``` -curl 'https://mainnet-explorer.fuel.network/assets/0x44b09d7143aa7b1aac7844ee9cfc38893b12d20c3822ecb18dbf2c6846ea63f0' -``` - - -the result contains a JSON with the asset information, here are the details about each prop: -| Property | Description | -|----------|-------------| -| assetId | Actual ID of the asset | -| contractId | Contract ID that minted the asset | -| subId | SubId used to calculate the assetId | -| name | Asset name | -| symbol | Asset symbol | -| decimals | Asset decimals configuration | -| suspicious | true if symbol matches any verified asset symbols | -| metadata | Key-value object with SRC7/SRC9 standard metadata | -| isNFT | true if asset is NFT ( [supply=1, decimals=0](https://docs.fuel.network/docs/sway-standards/src-20-native-asset/#non-fungible-asset-restrictions) )| -| verified | true if asset is in Fuel's verified assets list | -| owner | Current assetId owner (NFTs only) | -| uri | Parsed URL from “metadata.uri” or “metadata.URI”. Some [logic](https://github.com/FuelLabs/fuel-ex-demo/blob/ee73408a0ef0323eeb92414d5ed92d65e3f3f78f/packages/graphql/src/infra/gateway/AssetGateway.ts#L63-L95) is applied to try defining a reasonable uri for the API consumer | - -### Instructions for consuming Assets data owned by an Account from Indexer API - -API endpoint: -`/accounts/
/assets?last=` - get assets owned by an account (including NFTs) - -URLs to consume: -- Mainnet: https://mainnet-explorer.fuel.network -- Testnet: https://explorer-indexer-testnet.fuel.network - - -`curl` example of usage -``` -curl 'https://mainnet-explorer.fuel.network/accounts/0x196a68Ba237e921FeC5F01552E5e4df60b2619900254DD4cDe42557814508F57/assets?last=10' -``` - - -the result contains a JSON with an array of asset information and balance of each asset, here are the details about each prop: -| Property | Description | -|----------|-------------| -| balance | Balance of the asset owner by account | -| assetId | Actual ID of the asset | -| contractId | Contract ID that minted the asset | -| subId | SubId used to calculate the assetId | -| name | Asset name | -| symbol | Asset symbol | -| decimals | Asset decimals configuration | -| suspicious | true if symbol matches any verified asset symbols | -| metadata | Key-value object with SRC7/SRC9 standard metadata | -| isNFT | true if asset is NFT ( [supply=1, decimals=0](https://docs.fuel.network/docs/sway-standards/src-20-native-asset/#non-fungible-asset-restrictions) )| -| verified | true if asset is in Fuel's verified assets list | -| owner | Current assetId owner (NFTs only) | -| uri | Parsed URL from “metadata.uri” or “metadata.URI”. Some [logic](https://github.com/FuelLabs/fuel-ex-demo/blob/ee73408a0ef0323eeb92414d5ed92d65e3f3f78f/packages/graphql/src/infra/gateway/AssetGateway.ts#L63-L95) is applied to try defining a reasonable uri for the API consumer | - -### Instructions for consuming Blocks data from Indexer API - -API endpoint: -`/blocks/` - get information about any block - -URLs to consume: -- Mainnet: https://mainnet-explorer.fuel.network -- Testnet: https://explorer-indexer-testnet.fuel.network - - -`curl` example of usage -``` -curl 'https://mainnet-explorer.fuel.network/blocks/4000000' -``` - -the result contains a JSON with an array of block information: -| Property | Description | -|----------|-------------| -| id | Actual ID of the Block | -| header | Contains the header information of the block | -| height | Height of the Block | -| consensus | Consensus informations of the Block | -| transactions | Transactions of the Block | \ No newline at end of file diff --git a/packages/graphql/ASSETS.md b/packages/graphql/ASSETS.md deleted file mode 100644 index db50b6277..000000000 --- a/packages/graphql/ASSETS.md +++ /dev/null @@ -1,65 +0,0 @@ -# Fuel Explorer Indexer - Assets API -### Instructions for consuming Assets data from Indexer API - -API endpoint: -`/assets/` - get information about any asset (including NFTs) - -URLs to consume: -- Mainnet: https://mainnet-explorer.fuel.network -- Testnet: https://explorer-indexer-testnet.fuel.network - - -`curl` example of usage -``` -curl 'https://mainnet-explorer.fuel.network/assets/0x44b09d7143aa7b1aac7844ee9cfc38893b12d20c3822ecb18dbf2c6846ea63f0' -``` - - -the result contains a JSON with the asset information, here are the details about each prop: -| Property | Description | -|----------|-------------| -| assetId | Actual ID of the asset | -| contractId | Contract ID that minted the asset | -| subId | SubId used to calculate the assetId | -| name | Asset name | -| symbol | Asset symbol | -| decimals | Asset decimals configuration | -| suspicious | true if symbol matches any verified asset symbols | -| metadata | Key-value object with SRC7/SRC9 standard metadata | -| isNFT | true if asset is NFT ( [supply=1, decimals=0](https://docs.fuel.network/docs/sway-standards/src-20-native-asset/#non-fungible-asset-restrictions) )| -| verified | true if asset is in Fuel's verified assets list | -| owner | Current assetId owner (NFTs only) | -| uri | Parsed URL from “metadata.uri” or “metadata.URI”. Some [logic](https://github.com/FuelLabs/fuel-ex-demo/blob/ee73408a0ef0323eeb92414d5ed92d65e3f3f78f/packages/graphql/src/infra/gateway/AssetGateway.ts#L63-L95) is applied to try defining a reasonable uri for the API consumer | - -### Instructions for consuming Assets data owned by an Account from Indexer API - -API endpoint: -`/accounts/
/assets?last=` - get assets owned by an account (including NFTs) - -URLs to consume: -- Mainnet: https://mainnet-explorer.fuel.network -- Testnet: https://explorer-indexer-testnet.fuel.network - - -`curl` example of usage -``` -curl 'https://mainnet-explorer.fuel.network/accounts/0x196a68Ba237e921FeC5F01552E5e4df60b2619900254DD4cDe42557814508F57/assets?last=10' -``` - - -the result contains a JSON with an array of asset information and balance of each asset, here are the details about each prop: -| Property | Description | -|----------|-------------| -| balance | Balance of the asset owner by account | -| assetId | Actual ID of the asset | -| contractId | Contract ID that minted the asset | -| subId | SubId used to calculate the assetId | -| name | Asset name | -| symbol | Asset symbol | -| decimals | Asset decimals configuration | -| suspicious | true if symbol matches any verified asset symbols | -| metadata | Key-value object with SRC7/SRC9 standard metadata | -| isNFT | true if asset is NFT ( [supply=1, decimals=0](https://docs.fuel.network/docs/sway-standards/src-20-native-asset/#non-fungible-asset-restrictions) )| -| verified | true if asset is in Fuel's verified assets list | -| owner | Current assetId owner (NFTs only) | -| uri | Parsed URL from “metadata.uri” or “metadata.URI”. Some [logic](https://github.com/FuelLabs/fuel-ex-demo/blob/ee73408a0ef0323eeb92414d5ed92d65e3f3f78f/packages/graphql/src/infra/gateway/AssetGateway.ts#L63-L95) is applied to try defining a reasonable uri for the API consumer | diff --git a/packages/graphql/MIGRATION_GUIDE.md b/packages/graphql/MIGRATION_GUIDE.md deleted file mode 100644 index a033e89aa..000000000 --- a/packages/graphql/MIGRATION_GUIDE.md +++ /dev/null @@ -1,50 +0,0 @@ -# Database Migration Guide - -## Commands - -```bash -pnpm db:migrate # Run pending migrations -pnpm db:migrate:dry # Preview without executing -pnpm db:migrate:status # Show migration status -pnpm db:migrate:setup # Setup _migrations table (production upgrade only) -``` - -## Creating Migrations - -1. Create file in `database/migrations/` with format `{NNN}_{description}.sql` -2. Write idempotent SQL (use `IF NOT EXISTS`, `IF EXISTS`) -3. Test with `pnpm db:migrate:dry` then `pnpm db:migrate` - -## Production Deployment - -### First-Time (Existing Database) - -```bash -# Connect to production -kubectl port-forward -n fuel-explorer svc/postgresql 5432:5432 - -# Set env vars -export DB_HOST=localhost DB_PORT=5432 DB_USER=explorer DB_PASS= DB_NAME=explorer - -# Setup _migrations table (marks existing as applied without re-running) -cd packages/graphql && pnpm db:migrate:setup -``` - -### Standard Deployment - -```bash -pnpm db:migrate:status # Check pending -pnpm db:migrate:dry # Preview -pnpm db:migrate # Execute -``` - -## Environment Variables - -| Variable | Default | -|----------|---------| -| `DB_SCHEMA` | `indexer` | -| `DB_HOST` | `localhost` | -| `DB_PORT` | `5435` | -| `DB_USER` | `postgres` | -| `DB_PASS` | `postgres` | -| `DB_NAME` | `postgres` | diff --git a/packages/graphql/README.md b/packages/graphql/README.md index dd4cc6b55..86ccc1be0 100644 --- a/packages/graphql/README.md +++ b/packages/graphql/README.md @@ -1,563 +1,5 @@ -# Fuel Explorer Backend +# @fuel-explorer/graphql -This document provides a comprehensive overview of the Fuel Explorer Backend, covering its architecture details, installation steps, execution workflows, and ongoing maintenance procedures. +This package no longer runs a standalone API or syncer. It is a shared library: GraphQL schemas, generated SDK types, the domain layer that turns fuel-core JSON into explorer fields, and a handful of value objects and DAOs, imported by both the frontend (`packages/app-explorer`, via the `@fuel-explorer/graphql` and `@fuel-explorer/graphql/sdk` exports) and the API server in `packages/api-lite`. -- [Introduction](#introduction) - - [System Design](#system-design) - - [Syncer Execution Flow](#syncer-execution-flow) - - [API Execution Flow](#api-execution-flow) - - [Public Endpoints](#public-endpoints) -- [Environment](#environment) - - [Node](#node) - - [PNPM](#pnpm) - - [Docker Desktop](#docker-desktop) - - [AWS CLI](#aws-cli) - - [Kubernetes CLI](#kubernetes-cli) - - [Lens](#lens) -- [Project Setup](#project-setup) - - [Cloning Project](#cloning-project) - - [Installing Dependencies](#installing-dependencies) - - [Environment Variables](#environment-variables) - - [Running the API](#running-the-api) - - [Running Syncer with PM2](#running-syncer-with-pm2) - - [Running the Database](#running-the-database) - - [Using local database](#using-local-database) - - [Using remote database](#using-remote-database) - - [Syncing Blocks](#syncing-blocks) - - [Password Management](#password-management) -- [Common Issues](#common-issues) - - [Fuel Core endpoint is not available](#fuel-core-endpoint-is-not-available) - - [Contract ABI is out of date](#contract-abi-is-out-of-date) - - [NFT not being indexed](#nft-not-being-indexed) - - [Wrong password on PostgreSQL or RabbitMQ](#wrong-password-on-postgresql-or-rabbitmq) - - [Deadlock on database tables](#deadlock-on-database-tables) -- [Observability and Troubleshooting](#observability-and-troubleshooting) - - [AWS Console](#aws-console) - - [Logs](#logs) - - [Metrics](#metrics) - - [Alerts](#alerts) - - [Bash access](#bash) -- [Deployment](#deployment) - - [Flux](#flux) - - [release.yaml](#releaseyaml) - - [env-configmap.yaml](#env-configmapyaml) - - [env-secrets.yaml](#env-secretsyaml) - - [Helm Template](#helm-template) - - [Chart.yaml](#chartyaml) - - [values.yaml](#valuesyaml) -- [Maintenance Tasks](#maintenance-tasks) - - [Stop services](#stop-services) - - [Apply migrations](#apply-migrations) - - [Process past data](#process-past-data) - - -## Introduction - -The Fuel Explorer Backend serves two core functions: - -API Provider for the Frontend: - -It delivers a rich REST and GraphQL interface that exposes detailed data on blocks, transactions, inputs, outputs, contracts, predicates, accounts, and receipts. The API features robust pagination and aggregated endpoints tailored to power explorer charts and visualizations. - -Blockchain Indexer & Data Processor: - -It ingests and persists data from both L1 and L2 networks, then enriches it by computing account balances, tracking NFT ownership, supporting bridge and staking workflows, converting asset values to USD, and performing other crucial transformations—ensuring the frontend receives fully processed, ready-to-use information. - -### System Design - - - -### Syncer Execution Flow - -The syncer continuously polls Fuel Core for the latest block height and compares it against the highest height already indexed. Whenever there’s a gap, it publishes RabbitMQ messages in batches of ten blocks. Six consumer instances then dequeue these messages, fetch each full block from Fuel Core, extract all relevant data—transactions, inputs, outputs, contracts, predicates, and receipts—and write them into the database. - -Meanwhile, supporting side‐processes run in parallel to: - -* Index L1 and Cosmos networks -* Calculate and update account balances -* Persist up-to-date exchange rates -* Execute periodic jobs (for example, rebuilding materialized views) - -### API Execution Flow - -The API layer runs eight stateless instances behind a load‐balancer, each handling incoming frontend requests by querying the database for the required data. When traffic spikes, a Kubernetes replica set automatically scales the number of pods in the cluster to maintain performance and availability. - -### Public Endpoints - -Here are the environment-specific endpoints: - -``` -https://explorer-indexer-devnet.fuel.network -https://explorer-indexer-testnet.fuel.network -https://explorer-indexer-mainnet.fuel.network -``` - -## Environment - -To run the backend locally, ensure you have Node.js, PNPM, Docker, AWS CLI, Kubernetes CLI or Lens installed and configured. Other dependencies like PostgreSQL and RabbitMQ will be provisioned via Docker. - -### Node - -In production we are using Node.js 20, to install: - -``` -brew install node@20 -``` - -or, use NVM to have more flexibility: - -``` -curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash -nvm install 20 -nvm use 20 -``` - -### PNPM - -The project uses pnpm, a high-performance Node.js package manager that hard-links dependencies from a global content-addressable store into isolated node_modules, drastically reducing disk usage, preventing phantom packages, and speeding up installs. - -To install pnpm: - -``` -npm install -g pnpm -``` - -or, if you’re on Node.js v16.9+ with Corepack enabled: - -``` -corepack enable -corepack prepare pnpm@latest --activate -``` - -### Docker Desktop - -To install Docker Desktop on OSX, download the installer on Docker's website: - -``` -https://docs.docker.com/desktop/setup/install/mac-install -``` - -### AWS CLI - -To install AWS CLI on OSX use the command: - -``` -brew install awscli -``` - -After that you need to login to the AWS account: - -``` -aws configure sso --profile fuel-dev - -SSO session name (Recommended): fuel-dev -SSO start URL [None]: https://fuelsh.awsapps.com/start -SSO region [None]: us-east-1 -SSO registration scopes [sso:account:access]: sso:account:access -Attempting to automatically open the SSO authorization page in your default browser. -If the browser does not open or you wish to use a different device to authorize this request, open the following URL: - -https://device.sso.us-east-1.amazonaws.com/ - -Then enter the code: - -XXXX-YYYY -``` - -You'll be prompted to open the AWS SSO and login using you Fuel account. After successfully login, you need to select the account, be sure to select the correct one, where the cluster environment is running. In general we use 3 accounts: devnet (249945542445), testnet (533267304813), mainnet (767398027608). - -Remember to always login before use Kubernetes CLI, otherwise it's gonna show an error. - -### Kubernetes CLI - -To install Kubernetes CLI on OSX use the command: - -``` -brew install kubectl -``` - -Since kubectl is just a client for the Kubernetes API, you must configure its context and credentials for the specific environment you’ll be working in (e.g. dev, testnet, or mainnet) before running any commands: - -``` -aws eks update-kubeconfig --name fuel-dev-2 --region us-east-1 --profile fuel-dev -aws eks update-kubeconfig --name fuel-prod-testnet --region us-east-1 --profile fuel-dev -aws eks update-kubeconfig --name fuel-prod-mainnet --region us-east-1 --profile fuel-dev -``` - -Always identify which namespace to use since namespace naming isn’t standardized and can vary by environment, so always verify the exact namespace before running any commands: - -``` -kubectl get namespaces -``` - -This error means that you are logged in one account and pointing your kubectl config to the wrong cluster: - -``` -Unhandled Error err=couldn't get current server API group list: the server has asked for the client to provide credentials -``` - -Use this command to identify which cluster are available in the account: - -``` -aws eks list-clusters --profile fuel-dev -``` - -### Lens - -Alternatively, you can use a GUI tool like Lens to explore your cluster’s configuration, though it may not support every advanced operation. - -``` -https://k8slens.dev -``` - -## Project Setup - -### Cloning Project - -To get started, clone the repository by running: - -``` -git clone https://github.com/FuelLabs/fuel-explorer -``` - -Because our codebase is organized as a monorepo with multiple projects, the backend’s working directory is located at: - -``` -packages/graphql -``` - -### Installing Dependencies - -Once you’ve cloned the repository, install all dependencies by running: - -``` -pnpm install -``` - -### Environment Variables - -You’ll need to configure numerous environment variables, and their values will differ depending on how you run the project—whether against a local database or via RabbitMQ. - -``` -FUEL_PROVIDER: fuel core endpoint -SERVER_PORT: backend port -SERVER_API_KEY: backend api key -DB_HOST: database host -DB_PORT: database port -DB_USER: database user -DB_PASS: database password -DB_NAME: database name -RABBITMQ_HOST: rabbitmq host -RABBITMQ_PORT: rabbitmq port -RABBITMQ_USER: rabbitmq user -RABBITMQ_PASS: rabbitmq password -QUEUE_CONCURRENCY: amount of processes that rabbitmq use to consume queue -SSL: enable SSL on database and rabbitmq -DEBUG: debug mode -``` - -Recommend get the .env file with other team member. - -### Running the API - -First, build the project from the root directory: - -``` -pnpm build:prod -``` - -To run you can use the script or running the file directly: - -``` -pnpm run-start -``` - -or - -``` -npx tsx src/app.ts -``` - -### Running Syncer with PM2 - -In production environment we are using PM2 to manage Node.js processes. You don't need to use it locally, however, depending on the task you need to perform could be easier to use PM2 to start processes like syncer, consumer, api and other. - -``` -pnpm dev:syncer -``` - -### Running the Database - -First step is to run the explorer locally and there are different strategies to do that: - -#### Using remote database - -If you just need to create a new endpoint, return more informations from database or even change the payload, sometimes is easier to just point to the devnet or testnet database and run the backend with this database, otherwise you will need to sync blocks manually in order to have data to implement and testing. - -In order to use the remote database, you need to make a port-forward on the Kubernetes cluster. Please check the correct namespace on the cluster. - -``` -kubectl port-forward deploy/db-proxy-explorer 5432 -n -``` - -You need to use the cluster configuration on .env file: - -``` -DB_HOST="127.0.0.1" -DB_PORT=5432 -DB_USER=explorer -DB_PASS= -DB_NAME=explorer -``` - -Remember to avoid using index commands on remote database, unless you know what you are doing. - -#### Using local database - -This approach is recommended when you need to add or modify index behavior or analyze problems with this process. - -First you need to start the database on Docker: - -``` -docker compose up fuel_explorer_pgsql -d -``` - -You need to use the local configuration on .env file: - -``` -DB_HOST="127.0.0.1" -DB_PORT=5435 -DB_USER=postgres -DB_PASS=postgres -DB_NAME=postgres -``` - -Apply the migrations by running the setup tool: - -``` -pnpm setup:backend -``` - -### Syncing blocks - -By running the local database you need to sync blocks: - -``` -npx tsx src/sync-block-range 2000000 2000010 -``` - -### Password Management - -The password are kept in BitWarden or could be requested directly to the DevOps team. - -## Common issues - -### Fuel core endpoint is not available: - -Fuel Core can become unavailable due to cluster network issues, leading to sync failures and API errors from missing chain data. If this occurs, first verify Fuel Core’s status by checking the logs or running a curl request from within the cluster. Then escalate to DevOps with your findings so they can diagnose and restore connectivity. - -### Contract ABI is out of date: - -Occasionally a contract’s ABI will change, which can break event synchronization. Logs will pinpoint the affected contract; to resolve the issue, update its ABI. Once corrected, event processing will automatically resume from the block where it stopped. - -### NFT not being indexed: - -Thunder collections use a dedicated metadata configuration mechanism—unlike the Fuel Network NFT standard, which relies on LOG_DATA events. As a result, we need to define the collection’s URL pattern so we can correctly extract its metadata and insert it into the collection table. - -### Wrong password on PostgreSQL or RabbitMQ - -We’ve previously run into issues where service passwords were changed but not updated in the Fuel Explorer service’s env-secrets.yaml, causing authentication failures. - -### Deadlock on database tables - -Be cautious when running heavy queries—especially ALTER TABLE statements—as they can lock the entire table and lead to application downtime. If you detect a lock or performance degradation, immediately cancel the query and use an alternative approach (for example, an online schema-change tool or rolling migration) to make your schema changes. - -## Observability and Troubleshooting - -### AWS Console - -You can monitor resources like PostgreSQL directly in the AWS Console, just search for “RDS” and select the explorer database. We’re running Aurora RDS v2, which is fully elastic: it automatically scales under heavy load and exposes detailed charts for metrics like CPU utilization, I/O, and slow queries. - -### Logs - -Logs can be accessed in OpenSearch at the following endpoint: - -Devnet: - -``` -https://grafana-fuel-prod-2.fuel.network -username: admin -password: -``` - -Testnet: - -``` -https://search-fuel-prod-testnet-trl5zlea2v7wvzy57ggryh6uqm.us-east-1.es.amazonaws.com/_dashboards -username: fuel-elastic -password: -``` - -Mainnet: - -``` -https://search-fuel-prod-mainnet-ca-qix4o6twktwywwjdqueqxz2umy.ca-central-1.es.amazonaws.com/_dashboards -username: fuel-elastic -password: -``` - -You can also stream the pod’s logs directly from its stdout by running the following command: - -``` -kubectl logs pod -n namespace -``` - -### Metrics - -Grafana offers intuitive, real-time dashboards that visualize key metrics: - -Devnet: - -``` -https://grafana-fuel-dev-2.swayswap.io -username: admin -password: -``` - -Testnet: - -``` -https://grafana-fuel-prod-testnet.fuel.network -username: admin -password: -``` - -Mainnet: - -``` -https://grafana-fuel-prod-mainnet-ca.fuel.network -username: admin -password: -``` - -Check the password for OpenSearch and Grafana on https://github.com/fuelLabs/fuel-deployment-v2 - -### Alerts - -We’ve set up both PagerDuty and a dedicated Slack integration to ensure immediate visibility—and rapid response—whenever our sync process fails. The alerts are triggered based on exported metrics: - -Devnet: - -``` -https://explorer-indexer-devnet.fuel.network/metrics -``` - -Testnet: - -``` -https://explorer-indexer-testnet.fuel.network/metrics -``` - -Mainnet: - -``` -https://explorer-indexer-mainnet.fuel.network/metrics -``` - -### Bash - -At times, you’ll need to inspect running processes or run local tests (for example, with curl). To get a shell inside the pod, run: - -``` -kubectl exec -it pod -n namespace -- /bin/bash -``` - -## Deployment - -### Flux - -We manage all deployments through Flux, which is a GitOps operator, separated by environments: - -#### Deployment on Devnet - -``` -https://github.com/FuelLabs/fuel-deployment-v2/tree/master/kustomize/environments/fuel-dev-2/fuel-apps/explorer -``` - -#### Deployment on Testnet - -``` -https://github.com/FuelLabs/fuel-deployment-v2/tree/master/kustomize/environments/fuel-prod-testnet/fuel-apps/explorer -``` - -#### Deployment on Mainnet - -``` -https://github.com/FuelLabs/fuel-deployment-v2/tree/master/kustomize/environments/fuel-prod-mainnet/fuel-apps/mainnet/fuel-explorer-backend-indexer -``` - -### Configuration - -There are 3 important files: release.yaml, env-configmap.yaml and env-secret.yaml - -#### release.yaml - -Deployments are split into two pods: api and syncer. To release a new version, set the image:tag property to your commit hash. This manifest also specifies key settings like CPU and memory requests/limits and DNS configuration. - -#### env-configmap.yaml - -This file contains all of the production environment variables, mirroring the settings you use in your local .env file. - -#### env-secrets.yaml - -This file stores only the PostgreSQL and RabbitMQ passwords encrypted with SOPS by the DevOps team, who manage the required encryption keys. - -### Helm Template - -Our deployment pipeline leverages Helm to render Kubernetes manifests from our charts—providing consistent templating, configurable values overrides, and seamless release rollbacks. - -Everytime that the Helm template changes you need to dump the version, which is deployed by a GitHub Action: - -``` -helm/fuel-explorer -``` - -The most important files are Chart.yaml and values.yaml - -#### Chart.yaml - -This file specifies the version that our GitHub Actions workflow will deploy (and inject into deployment.yaml); only update it when you’ve modified any Helm configurations. - -#### values.yaml - -This file defines high-level Helm template settings—volumes, probes, and other critical configurations, so always review any changes with the DevOps team before modifying it. - -## Maintenance Tasks - -Here are the Explorer Backend’s most frequently performed maintenance tasks: - -### Stop services - -Kubernetes uses ReplicaSets to maintain a desired number of pod replicas, since you can’t explicitly start or stop pods, you scale them with the kubectl scale command: - -``` -kubectl scale deployment service --replicas=0 -n namespace -``` - -### Apply migrations - -Before applying migrations, tunnel the database port with kubectl port-forward and then run the migration commands manually against the forwarded endpoint: - -``` -kubectl port-forward deploy/db-proxy-explorer 5432 -n testnet -``` - -### Process past data - -The indexer processes only new data by default; whenever you add a column or introduce a new table, you must reprocess the historical data to incorporate those schema changes. - -In general, this process is done by creating a Node.js script and run that on the database. It could be done locally or inside the cluster, like testnet or mainnet. If the amount of data are not that big, is possible to use port-forward in order the database and process the data, otherwise is better to execute inside the cluster through the bash. The command to acess the bash is: - -``` -kubectl exec -it pod -n namespace -- /bin/bash -``` +The explorer's Postgres-backed API and syncer, and the Postgres database itself, were removed. The explorer now runs on `packages/api-lite`, which serves the same GraphQL schema from the S3 block recorder and fuel-core, with a sqlite index, and no database to operate. See `docker/vps/deploy.md` for how it is deployed. diff --git a/packages/graphql/database/migrations/001_create_schema_and_base_tables.sql b/packages/graphql/database/migrations/001_create_schema_and_base_tables.sql deleted file mode 100644 index 0228f6e87..000000000 --- a/packages/graphql/database/migrations/001_create_schema_and_base_tables.sql +++ /dev/null @@ -1,82 +0,0 @@ -CREATE SCHEMA IF NOT EXISTS indexer; - -CREATE TABLE IF NOT EXISTS indexer.blocks ( - _id integer PRIMARY KEY, - id character varying(66) NOT NULL UNIQUE, - timestamp timestamp without time zone NOT NULL, - data jsonb NOT NULL, - gas_used character varying(66), - producer character varying(66) -); - -CREATE INDEX IF NOT EXISTS blocks_id_idx ON indexer.blocks(_id); -CREATE INDEX IF NOT EXISTS blocks_hash_idx ON indexer.blocks(id); -CREATE INDEX IF NOT EXISTS blocks_timestamp_idx ON indexer.blocks(timestamp); - -CREATE TABLE IF NOT EXISTS indexer.transactions ( - _id character varying(66) PRIMARY KEY, - tx_hash character varying(66) NOT NULL UNIQUE, - timestamp timestamp without time zone, - data jsonb NOT NULL, - block_id integer NOT NULL REFERENCES indexer.blocks(_id) -); - -CREATE INDEX IF NOT EXISTS transactions_id_idx ON indexer.transactions(_id); -CREATE INDEX IF NOT EXISTS transactions_hash_idx ON indexer.transactions(tx_hash); -CREATE INDEX IF NOT EXISTS transactions_timestamp_idx ON indexer.transactions(timestamp); -CREATE INDEX IF NOT EXISTS transactions_block_id_idx ON indexer.transactions(block_id); - -CREATE TABLE IF NOT EXISTS indexer.contracts ( - _id SERIAL PRIMARY KEY, - contract_hash character varying(66) NOT NULL UNIQUE, - data jsonb NOT NULL -); - -CREATE INDEX IF NOT EXISTS contracts_id_idx ON indexer.contracts(_id); -CREATE INDEX IF NOT EXISTS contracts_hash_idx ON indexer.contracts(contract_hash); - -CREATE TABLE IF NOT EXISTS indexer.inputs ( - _id SERIAL PRIMARY KEY, - data jsonb NOT NULL, - transaction_id character varying(66) NOT NULL REFERENCES indexer.transactions(_id) -); - -CREATE INDEX IF NOT EXISTS inputs_id_idx ON indexer.inputs(_id); -CREATE INDEX IF NOT EXISTS inputs_transaction_id_idx ON indexer.inputs(transaction_id); - -CREATE TABLE IF NOT EXISTS indexer.outputs ( - _id SERIAL PRIMARY KEY, - data jsonb NOT NULL, - transaction_id character varying(66) NOT NULL REFERENCES indexer.transactions(_id) -); - -CREATE INDEX IF NOT EXISTS outputs_id_idx ON indexer.outputs(_id); -CREATE INDEX IF NOT EXISTS outputs_transaction_id_idx ON indexer.outputs(transaction_id); - -CREATE TABLE IF NOT EXISTS indexer.predicates ( - _id SERIAL PRIMARY KEY, - bytecode text NOT NULL, - address character varying(66) NOT NULL UNIQUE -); - -CREATE INDEX IF NOT EXISTS predicates_id_idx ON indexer.predicates(_id); -CREATE INDEX IF NOT EXISTS predicates_address_idx ON indexer.predicates(address); - -CREATE TABLE IF NOT EXISTS indexer.transactions_accounts ( - _id text not null, - block_id integer not null, - tx_hash text not null, - account_hash text not null, - primary key (_id, block_id, tx_hash, account_hash) -); - -CREATE INDEX IF NOT EXISTS transactions_accounts_id_idx ON indexer.transactions_accounts (_id); -CREATE INDEX IF NOT EXISTS transactions_accounts_block_id_idx ON indexer.transactions_accounts (block_id); -CREATE INDEX IF NOT EXISTS transactions_accounts_tx_hash_idx ON indexer.transactions_accounts (tx_hash); -CREATE INDEX IF NOT EXISTS transactions_accounts_account_hash_idx ON indexer.transactions_accounts (account_hash); - -CREATE TABLE IF NOT EXISTS indexer.migration ( - version integer not null -); - -INSERT INTO indexer.migration (version) SELECT 0 WHERE NOT EXISTS (SELECT 1 FROM indexer.migration); diff --git a/packages/graphql/database/migrations/002_create_assets_contracts.sql b/packages/graphql/database/migrations/002_create_assets_contracts.sql deleted file mode 100644 index d7ae6dbf6..000000000 --- a/packages/graphql/database/migrations/002_create_assets_contracts.sql +++ /dev/null @@ -1,14 +0,0 @@ -create table if not exists indexer.assets_contracts ( - asset_id text not null, - contract_id text not null, - transaction_id text not null, - sub_id text, - name text, - symbol text, - decimals integer, - error text, - primary key (asset_id, contract_id) -); -create index if not exists assets_contracts_asset_id_idx on indexer.assets_contracts (asset_id); -create index if not exists assets_contracts_contract_id_idx on indexer.assets_contracts (contract_id); -update indexer.migration set version = 1; diff --git a/packages/graphql/database/migrations/003_add_assets_contracts_columns.sql b/packages/graphql/database/migrations/003_add_assets_contracts_columns.sql deleted file mode 100644 index 26785a651..000000000 --- a/packages/graphql/database/migrations/003_add_assets_contracts_columns.sql +++ /dev/null @@ -1,8 +0,0 @@ -alter table indexer.assets_contracts add column block_id integer null; -alter table indexer.assets_contracts add column _id text null; - -create index on indexer.assets_contracts (_id); -create index on indexer.assets_contracts (transaction_id); -create index on indexer.assets_contracts (sub_id); -create index on indexer.assets_contracts (block_id); -update indexer.migration set version = 2; diff --git a/packages/graphql/database/migrations/004_add_owner_to_assets_contracts.sql b/packages/graphql/database/migrations/004_add_owner_to_assets_contracts.sql deleted file mode 100644 index 03cc65b2c..000000000 --- a/packages/graphql/database/migrations/004_add_owner_to_assets_contracts.sql +++ /dev/null @@ -1,3 +0,0 @@ -alter table indexer.assets_contracts add column owner text null; -create index on indexer.assets_contracts (owner); -update indexer.migration set version = 3; diff --git a/packages/graphql/database/migrations/005_add_metadata_to_assets_contracts.sql b/packages/graphql/database/migrations/005_add_metadata_to_assets_contracts.sql deleted file mode 100644 index cbad69709..000000000 --- a/packages/graphql/database/migrations/005_add_metadata_to_assets_contracts.sql +++ /dev/null @@ -1,2 +0,0 @@ -alter table indexer.assets_contracts add column metadata jsonb default '{}'; -update indexer.migration set version = 4; diff --git a/packages/graphql/database/migrations/006_ensure_migration_table.sql b/packages/graphql/database/migrations/006_ensure_migration_table.sql deleted file mode 100644 index 56c61881c..000000000 --- a/packages/graphql/database/migrations/006_ensure_migration_table.sql +++ /dev/null @@ -1,4 +0,0 @@ -create table if not exists indexer.migration ( - version integer not null -); -update indexer.migration set version = 5; diff --git a/packages/graphql/database/migrations/007_add_total_supply_to_assets_contracts.sql b/packages/graphql/database/migrations/007_add_total_supply_to_assets_contracts.sql deleted file mode 100644 index d12ca6138..000000000 --- a/packages/graphql/database/migrations/007_add_total_supply_to_assets_contracts.sql +++ /dev/null @@ -1,2 +0,0 @@ -alter table indexer.assets_contracts add column total_supply numeric default null; -update indexer.migration set version = 6; diff --git a/packages/graphql/database/migrations/008_create_nft_collections.sql b/packages/graphql/database/migrations/008_create_nft_collections.sql deleted file mode 100644 index 4743aba65..000000000 --- a/packages/graphql/database/migrations/008_create_nft_collections.sql +++ /dev/null @@ -1,17 +0,0 @@ -create table if not exists indexer.collections ( - contract_id text not null, - name text, - url text, - primary key (contract_id) -); -insert into indexer.collections (contract_id, name, url) values ('0x45c964371490bdfc2610ca116853d22a9b6e0de1abb67f61b81ab9d291b0015c', 'Fuel Pumps', 'https://ipfs.io/ipfs/QmXyd5j7dDaYDuXZZ62uqh5CsrG9nUXNy7eQmedxEEwU25/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x3f3f87bb15c693784e90521c64bac855ce23d971356a6ccd57aa92e02e696432', 'Executoors', 'https://ipfs.io/ipfs/bafybeif44cbambuyvtfhk6lbaozshy4xs3p4saeqnizxlon4age6pkr2ua/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x0d34ec513cbaf7e15737120725cd3e235a8fd1716fa0eedc5da4a64c182e5a9f', 'FuelMonkees', 'https://gateway.lighthouse.storage/ipfs/bafybeidfwggiv7mjxbrrtpozsdhknl3hyhwyzmzesqiulvflpehhxdsjii/Monkee%20{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0xaa919d413a57cb6c577b2e172480cbe2f88df0e28203fed52249cabca6cee74a', 'Fuel Pengus', 'https://ipfs.io/ipfs/QmNZqtRxyyuh1nbXUapSgCmGTW2GofXERZzkLBmwVxjmES/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x65aa85875bf92fb5b487ade154f88507d74b233ef901b4a172f4616b527a4784', 'Fuel Dudes', 'https://ipfs.io/ipfs/QmYvaFhBXHXDiccmZnh17gPCT8R62EyY1KWyLz7Zz6dJd4/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x4365ec565b25febe517770709edb54f081fc67fbb4f561ac53b2b608371079db', 'Fuel Rocks', 'https://ipfs.io/ipfs/bafybeie5loshrrqky4boemlnxc5fzsoc4c7cs6gqgbwvt6r7h56nre7oj4/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0xb03ec5c6eeaf6d09ed6755e21dff896234c8f509b813f3ff17ef14a436fa8462', 'Sangoro', 'https://ipfs.io/ipfs/QmQJjbRChfHyaYPutY2ZBuJqByfseVNG5bwz7gSuQeYESU/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x59b10bd361740618f12bba00f1083ef304a294b37ed7a8756c1b9cfc9b491b16', 'Fuel BomBa', 'https://ipfs.io/ipfs/QmSY7YZGZtY6nWsAm7Wr9bgA36ZahPxYiYBA241m3BFyyS/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x0c10a1c5ef62b346a27a16cc4c270f5e74c1c94a7f8233fcf0223716b6c9f326', 'Griffy Amplify', 'https://api.thundernft.market/v1/metadata/griffy/{subId}') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0xf0b6e2320caccb9071e45b1150b4da6f5edf74e7375ac6c87084822a87832de2', 'BearBros', 'https://ipfs.io/ipfs/bafybeihaphqpylne3ft7dlfh4qlisscgn7osd7d7avhgvcpfiskia6fx5i/{subId}.json') on conflict (contract_id) do nothing; -update indexer.migration set version = 7; diff --git a/packages/graphql/database/migrations/009_add_transactions_count_to_blocks.sql b/packages/graphql/database/migrations/009_add_transactions_count_to_blocks.sql deleted file mode 100644 index bf7e44106..000000000 --- a/packages/graphql/database/migrations/009_add_transactions_count_to_blocks.sql +++ /dev/null @@ -1,2 +0,0 @@ -alter table indexer.blocks add column transactions_count integer null; -update indexer.migration set version = 8; diff --git a/packages/graphql/database/migrations/010_create_asset_rate_tables.sql b/packages/graphql/database/migrations/010_create_asset_rate_tables.sql deleted file mode 100644 index 07f9ff8bb..000000000 --- a/packages/graphql/database/migrations/010_create_asset_rate_tables.sql +++ /dev/null @@ -1,86 +0,0 @@ -create table if not exists indexer.assets_rate_provider ( - asset_id text not null, - symbol text not null, - value text not null, - provider text not null, - primary key (symbol) -); - --- network independent -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x', 'BTC', 'bitcoin', 'coingecko') on conflict (symbol) do nothing; - --- mainnet -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07', 'ETH', 'ethereum', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82', 'FUEL', 'fuel', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xa38a5a8beeb08d95744bc7f58528073f4052b254def59eba20c99c202b5acaa3', 'WETH', 'weth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x239ed6e12b7ce4089ee245244e3bf906999a6429c2a9a445a1e1faf56914a4ab', 'weETH', 'wrapped-eeth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xbae80f7fb8aa6b90d9b01ef726ec847cc4f59419c4d5f2ea88fec785d1b0e849', 'rsETH', 'kelp-dao-restaked-eth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xf3f9a0ed0ce8eac5f89d6b83e41b3848212d5b5f56108c54a205bb228ca30c16', 'rETH', 'reth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x7843c74bef935e837f2bcf67b5d64ecb46dd53ff86375530b0caf3699e8ffafe', 'wbETH', 'wrapped-beacon-eth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xaf3111a248ff7a3238cdeea845bb2d43cf3835f1f6b8c9d28360728b55b9ce5b', 'Manta mBTC', 'manta-mbtc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xafd219f513317b1750783c6581f55530d6cf189a5863fd18bd1b3ffcec1714b4', 'Manta mETH', 'manta-meth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x89cb9401e55d49c3269654dd1cdfb0e80e57823a4a7db98ba8fc5953b120fef4', 'Manta mUSD', 'manta-musd', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x0aa5eb2bb97ca915288b653a2529355d4dc66de2b37533213f0e4aeee3d3421f', 'pumpBTC', 'pumpbtc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xb5ecb0a1e08e2abbabf624ffea089df933376855f468ade35c6375b00c33996a', 'FBTC', 'ignition-fbtc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x1186afea9affb88809c210e13e2330b5258c2cef04bb8fff5eff372b7bd3f40f', 'SolvBTC', 'solv-btc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x7a4f087c957d30218223c2baaaa365355c9ca81b6ea49004cfb1590a5399216f', 'SolvBTC.BBN', 'solv-protocol-solvbtc-bbn', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x9e46f919fbf978f3cad7cd34cca982d5613af63ff8aab6c379e4faa179552958', 'sDAI', 'savings-dai', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xa0265fb5c32f6e8db3197af3c7eb05c48ae373605b8165b6f4a51c5b0ba4812e', 'USDT', 'tether', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x286c479da40dc953bddc3bb4c453b608bba2e0ac483b077bd475174115395e6b', 'USDC', 'usd-coin', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xb6133b2ef9f6153eb869125d23dcf20d1e735331b5e41b15a6a7a6cec70e8651', 'USDe', 'usde', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xd05563025104fc36496c15c7021ad6b31034b0e89a356f4f818045d1f48808bc', 'sUSDe', 'ethena-staked-usde', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x1a7815cc9f75db5c24a5b0814bfb706bb9fe485333e98254015de8f48f84c67b', 'wstETH', 'wrapped-steth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x91b3559edb2619cde8ffb2aa7b3c3be97efd794ea46700db7092abeee62281b0', 'ezETH', 'everclear-bridged-ezeth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x1493d4ec82124de8f9b625682de69dcccda79e882b89a55a8c737b12de67bd68', 'pzETH', 'renzo-restaked-lst', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x4fc8ac9f101df07e2c2dec4a53c8c42c439bdbe5e36ea2d863a61ff60afafc30', 'steakLRT', 'steakhouse-resteaking-vault', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x33a6d90877f12c7954cca6d65587c25e9214c7bed2231c188981c7114c1bdb78', 'USDF', 'usdf', 'coingecko') on conflict (symbol) do nothing; --- insert into indexer.assets_rate_provider (asset_id, symbol, coingecko_id) values ('0x642a5db59ec323c2f846d4d4cf3e58d78aff64accf4f8f6455ba0aa3ef000a3b', 'Mantle mETH', ''); --- insert into indexer.assets_rate_provider (asset_id, symbol, coingecko_id) values ('0x78d4522ec607f6e8efb66ea49439d1ee48623cf763f9688a8eada025def033d9', 'rsUSDe', ''); --- insert into indexer.assets_rate_provider (asset_id, symbol, coingecko_id) values ('0x962792286fbc9b1d5860b4551362a12249362c21594c77abf4b3fe2bbe8d977a', 'rstETH', ''); --- insert into indexer.assets_rate_provider (asset_id, symbol, coingecko_id) values ('0x05fc623e57bd7bc1258efa8e4f62b05af5471d73df6f2c2dc11ecc81134c4f36', 'amphrETH', ''); --- insert into indexer.assets_rate_provider (asset_id, symbol, coingecko_id) values ('0xf2fc648c23a5db24610a1cf696acc4f0f6d9a7d6028dd9944964ab23f6e35995', 'Re7LRT', ''); - --- testnet - -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07', 'ETH', 'ethereum', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x324d0c35a4299ef88138a656d5272c5a3a9ccde2630ae055dacaf9d13443d53b', 'FUEL', 'fuel', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xa38a5a8beeb08d95744bc7f58528073f4052b254def59eba20c99c202b5acaa3', 'WETH', 'weth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x239ed6e12b7ce4089ee245244e3bf906999a6429c2a9a445a1e1faf56914a4ab', 'weETH', 'wrapped-eeth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xbae80f7fb8aa6b90d9b01ef726ec847cc4f59419c4d5f2ea88fec785d1b0e849', 'rsETH', 'kelp-dao-restaked-eth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xf3f9a0ed0ce8eac5f89d6b83e41b3848212d5b5f56108c54a205bb228ca30c16', 'rETH', 'reth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x7843c74bef935e837f2bcf67b5d64ecb46dd53ff86375530b0caf3699e8ffafe', 'wbETH', 'wrapped-beacon-eth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xaf3111a248ff7a3238cdeea845bb2d43cf3835f1f6b8c9d28360728b55b9ce5b', 'Manta mBTC', 'manta-mbtc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xafd219f513317b1750783c6581f55530d6cf189a5863fd18bd1b3ffcec1714b4', 'Manta mETH', 'manta-meth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x89cb9401e55d49c3269654dd1cdfb0e80e57823a4a7db98ba8fc5953b120fef4', 'Manta mUSD', 'manta-musd', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x0aa5eb2bb97ca915288b653a2529355d4dc66de2b37533213f0e4aeee3d3421f', 'pumpBTC', 'pumpbtc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xb5ecb0a1e08e2abbabf624ffea089df933376855f468ade35c6375b00c33996a', 'FBTC', 'ignition-fbtc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x1186afea9affb88809c210e13e2330b5258c2cef04bb8fff5eff372b7bd3f40f', 'SolvBTC', 'solv-btc', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x7a4f087c957d30218223c2baaaa365355c9ca81b6ea49004cfb1590a5399216f', 'SolvBTC.BBN', 'solv-protocol-solvbtc-bbn', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x9e46f919fbf978f3cad7cd34cca982d5613af63ff8aab6c379e4faa179552958', 'sDAI', 'savings-dai', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xa0265fb5c32f6e8db3197af3c7eb05c48ae373605b8165b6f4a51c5b0ba4812e', 'USDT', 'tether', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xc26c91055de37528492e7e97d91c6f4abe34aae26f2c4d25cff6bfe45b5dc9a9', 'USDC', 'usd-coin', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x86a1beb50c844f5eff9afd21af514a13327c93f76edb89333af862f70040b107', 'USDe', 'usde', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xd2886b34454e2e0de47a82d8e6314b26e1e1312519247e8e2ef137672a909aeb', 'sUSDe', 'ethena-staked-usde', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0xb42cd9ddf61898da1701adb3a003b0cf4ca6df7b5fe490ec2c295b1ca43b33c8', 'wstETH', 'wrapped-steth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x91b3559edb2619cde8ffb2aa7b3c3be97efd794ea46700db7092abeee62281b0', 'ezETH', 'everclear-bridged-ezeth', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x1493d4ec82124de8f9b625682de69dcccda79e882b89a55a8c737b12de67bd68', 'pzETH', 'renzo-restaked-lst', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x4fc8ac9f101df07e2c2dec4a53c8c42c439bdbe5e36ea2d863a61ff60afafc30', 'steakLRT', 'steakhouse-resteaking-vault', 'coingecko') on conflict (symbol) do nothing; -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) values ('0x33a6d90877f12c7954cca6d65587c25e9214c7bed2231c188981c7114c1bdb78', 'USDF', 'usdf', 'coingecko') on conflict (symbol) do nothing; - -create index if not exists assets_rate_provider_asset_id_idx on indexer.assets_rate_provider (asset_id); -create index if not exists assets_rate_provider_symbol_idx on indexer.assets_rate_provider (symbol); - -create table if not exists indexer.assets_rates ( - _id serial, - asset_id text not null, - symbol text not null, - rate numeric not null, - timestamp timestamp without time zone NOT NULL, - primary key (_id) -); - -create index if not exists assets_rates_id_idx on indexer.assets_rates (_id); -create index if not exists assets_rates_asset_id_idx on indexer.assets_rates (asset_id); -create index if not exists assets_rates_symbol_idx on indexer.assets_rates (symbol); - -update indexer.migration set version = 9; diff --git a/packages/graphql/database/migrations/011_add_nft_collections.sql b/packages/graphql/database/migrations/011_add_nft_collections.sql deleted file mode 100644 index b39e413c2..000000000 --- a/packages/graphql/database/migrations/011_add_nft_collections.sql +++ /dev/null @@ -1,3 +0,0 @@ -insert into indexer.collections (contract_id, name, url) values ('0x202b55f66b8bafaf3b4fdf0653f1a4320607781dbd368bb576bc09250dd7dbbe', 'Koby', 'https://bafybeibspxhadwg2hfces4h5pdxd2qo5bdic4kbxsif66jn423adlivmpu.ipfs.w3s.link/{subId}.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0x5d0188a9f77c4e5e48c459b5d02ccedac1a26d45b9f9c9e886f8563395bad32d', 'AI Quantum Flux', 'https://bafybeia65kpvylfbv7t2tg2qy54ivgckp3dhvcx7zbqvvn7xiedjbcbf6m.ipfs.dweb.link/{subId}_AQF.json') on conflict (contract_id) do nothing; -insert into indexer.collections (contract_id, name, url) values ('0xc5c219d360dcddbdaad2e0a33afc3550794ed4dfc484efb13562023189a08851', 'Alien Inva NFT', 'https://bafybeib4owydunce3koezxs7odwoemxydgfahizxqxylrbmcycj54rrpw4.ipfs.4everland.io/{subId}.json') on conflict (contract_id) do nothing; diff --git a/packages/graphql/database/migrations/012_create_balance_tables.sql b/packages/graphql/database/migrations/012_create_balance_tables.sql deleted file mode 100644 index 2375e3f3a..000000000 --- a/packages/graphql/database/migrations/012_create_balance_tables.sql +++ /dev/null @@ -1,21 +0,0 @@ -create table if not exists indexer.balance_index ( - block_height integer not null -); - -insert into indexer.balance_index (block_height) select 1 where not exists (select 1 from indexer.balance_index); - -create table if not exists indexer.balance ( - _id serial not null, - block_height integer not null, - tx_hash text not null, - account_hash text not null, - asset_id text not null, - balance text not null, - primary key (_id) -); - -create index if not exists balance_block_height_idx on indexer.balance (block_height); -create index if not exists balance_tx_hash_idx on indexer.balance (tx_hash); -create index if not exists balance_account_hash_idx on indexer.balance (account_hash); -create index if not exists balance_asset_id_idx on indexer.balance (asset_id); -create unique index if not exists balance_unique_idx on indexer.balance (tx_hash, account_hash, asset_id); diff --git a/packages/graphql/database/migrations/013_create_l1_contract_tables.sql b/packages/graphql/database/migrations/013_create_l1_contract_tables.sql deleted file mode 100644 index 0c6fe8ee1..000000000 --- a/packages/graphql/database/migrations/013_create_l1_contract_tables.sql +++ /dev/null @@ -1,59 +0,0 @@ -drop table if exists indexer.contract_l1_logs; -drop table if exists indexer.contract_l1_args; -drop table if exists indexer.contract_l1_index; - -create table if not exists indexer.contract_l1_index ( - _id serial primary key, - contract_hash text unique, - block_height int, - name text, - status text, - network text -); - -create index if not exists contract_l1_index_contract_hash_idx on indexer.contract_l1_index (contract_hash); - -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xBa0e6bF94580D49B5Aaaa54279198D424B23eCC3', 21220898, 'SequencerProxy', 'active', 'mainnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0x481aeEB9bdFe08f050d22F0b352356691c4B0b59', 21220911, 'FuelStreamX', 'active', 'mainnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xC20c2EA5fC5f26200f3339512f336c2ecE41FC18', 21414415, 'RewardDistribution', 'active', 'mainnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xAEB0c00D0125A8a788956ade4f4F12Ead9f65DDf', 21039400, 'FuelMessagePortal', 'active', 'mainnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xa4cA04d02bfdC3A2DF56B9b6994520E69dF43F67', 20678194, 'FuelERC20GatewayV4', 'active', 'mainnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xf3D20Db1D16A4D0ad2f280A5e594FF3c7790f130', 20620432, 'FuelChainState', 'active', 'mainnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0x675B68AA4d9c2d3BB3F0397048e62E6B7192079c', 21213754, 'Token', 'active', 'mainnet') on conflict (contract_hash) do nothing; - -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0x0E5CAcD6899a1E2a4B4E6e0c8a1eA7feAD3E25eD', 7203292, 'SequencerProxy', 'active', 'testnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0x130F143e0F6d87371ca510e11340C2F3cD407a2b', 7203302, 'FuelStreamX', 'active', 'testnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0x7c8deB33b992629130CE160f766881A191d874ce', 7334044, 'RewardDistribution', 'active', 'testnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0x01855B78C1f8868DE70e84507ec735983bf262dA', 6339191, 'FuelMessagePortal', 'active', 'testnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xd1d5a4379dccC46D5c8D1c6c2656ce705698e359', 6626184, 'FuelERC20GatewayV4', 'active', 'testnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xf38F1e65adc58fc74BaaA132f645Aa5307F2d304', 6505507, 'FuelChainState', 'active', 'testnet') on conflict (contract_hash) do nothing; -insert into indexer.contract_l1_index (contract_hash, block_height, name, status, network) values ('0xd7Fc4e8FB2c05567C313f4C9b9e07641a361a550', 7203281, 'Token', 'active', 'testnet') on conflict (contract_hash) do nothing; - - -create table if not exists indexer.contract_l1_logs ( - _id serial primary key, - contract_hash text, - block_height int, - tx_hash text, - event text, - signature text, - raw_log jsonb default '{}', - decoded_args jsonb default '{}', - decoded_data jsonb default '{}', - timestamp timestamp without time zone, - log_index int -); - -create index if not exists contract_l1_logs_contract_hash_idx on indexer.contract_l1_logs (contract_hash); -create index if not exists contract_l1_logs_event_idx on indexer.contract_l1_logs (event); -create unique index if not exists contract_l1_logs_block_log_idx on indexer.contract_l1_logs (block_height, log_index); - -create table if not exists indexer.contract_l1_args ( - _id serial primary key, - contract_l1_log_id int, - key text, - value text -); - -create index if not exists contract_l1_args_key_value_idx on indexer.contract_l1_args (key, value); -create unique index if not exists contract_l1_args_log_key_idx on indexer.contract_l1_args (contract_l1_log_id, key); diff --git a/packages/graphql/database/migrations/014_create_cosmos_tables.sql b/packages/graphql/database/migrations/014_create_cosmos_tables.sql deleted file mode 100644 index 835e65b0b..000000000 --- a/packages/graphql/database/migrations/014_create_cosmos_tables.sql +++ /dev/null @@ -1,36 +0,0 @@ -drop table if exists indexer.cosmos_events; -drop table if exists indexer.cosmos_responses; -drop table if exists indexer.cosmos_index; - -create table if not exists indexer.cosmos_index ( - block_height int -); - -create table if not exists indexer.cosmos_responses ( - _id serial primary key, - block_height int, - tx_hash text, - data text, - timestamp timestamp without time zone -); - -create index if not exists cosmos_responses_block_height_idx on indexer.cosmos_responses (block_height); -create index if not exists cosmos_responses_tx_hash_idx on indexer.cosmos_responses (tx_hash); -create index if not exists cosmos_responses_timestamp_idx on indexer.cosmos_responses (timestamp); - -create table if not exists indexer.cosmos_events ( - _id serial primary key, - cosmos_response_id int, - type text, - key text, - value text, - index int -); - -create index if not exists cosmos_events_response_id_idx on indexer.cosmos_events (cosmos_response_id); -create index if not exists cosmos_events_type_idx on indexer.cosmos_events (type); -create index if not exists cosmos_events_key_idx on indexer.cosmos_events (key); -create index if not exists cosmos_events_value_idx on indexer.cosmos_events (value); -create index if not exists cosmos_events_type_key_value_idx on indexer.cosmos_events (type, key, value); - -insert into indexer.cosmos_index (block_height) select 1 where not exists (select 1 from indexer.cosmos_index); diff --git a/packages/graphql/database/migrations/015_add_total_fee_and_timestamptz.sql b/packages/graphql/database/migrations/015_add_total_fee_and_timestamptz.sql deleted file mode 100644 index dbadba227..000000000 --- a/packages/graphql/database/migrations/015_add_total_fee_and_timestamptz.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE indexer.blocks -ADD COLUMN total_fee character varying(66); -ALTER TABLE indexer.contract_l1_logs ALTER COLUMN timestamp TYPE TIMESTAMPTZ USING timestamp AT TIME ZONE 'UTC'; -ALTER TABLE indexer.cosmos_responses ALTER COLUMN timestamp TYPE TIMESTAMPTZ USING timestamp AT TIME ZONE 'UTC'; diff --git a/packages/graphql/database/migrations/016_create_receipts_tables.sql b/packages/graphql/database/migrations/016_create_receipts_tables.sql deleted file mode 100644 index 46a58fe14..000000000 --- a/packages/graphql/database/migrations/016_create_receipts_tables.sql +++ /dev/null @@ -1,50 +0,0 @@ -create table if not exists indexer.receipts ( - _id serial primary key, - block_id integer, - transaction_id text, - tx_hash text, - indent int, - receipt_amount text, - receipt_asset_id text, - receipt_contract_id text, - receipt_data text, - receipt_digest text, - receipt_gas text, - receipt_gas_used text, - receipt_id text, - receipt_is text, - receipt_len text, - receipt_nonce text, - receipt_param1 text, - receipt_param2 text, - receipt_pc text, - receipt_ptr text, - receipt_ra text, - receipt_rb text, - receipt_rc text, - receipt_rd text, - receipt_reason text, - receipt_type text, - receipt_recipient text, - receipt_result text, - receipt_sender text, - receipt_sub_id text, - receipt_to text, - receipt_to_address text, - receipt_val text -); - -create index if not exists receipts_tx_hash_idx on indexer.receipts (tx_hash); -create index if not exists receipts_transaction_id_idx on indexer.receipts (transaction_id); -create index if not exists receipts_block_id_idx on indexer.receipts (block_id); -create index if not exists receipts_receipt_type_idx on indexer.receipts (receipt_type); - -create table if not exists indexer.receipts_data ( - _id serial primary key, - receipt_id int, - key text, - value text -); - -create index if not exists receipts_data_key_idx on indexer.receipts_data (key); -create index if not exists receipts_data_value_idx on indexer.receipts_data (value); diff --git a/packages/graphql/database/migrations/017_add_da_height_to_blocks.sql b/packages/graphql/database/migrations/017_add_da_height_to_blocks.sql deleted file mode 100644 index c4abfb198..000000000 --- a/packages/graphql/database/migrations/017_add_da_height_to_blocks.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE indexer.blocks ADD COLUMN da_height text; -create index on indexer.blocks (da_height); \ No newline at end of file diff --git a/packages/graphql/database/migrations/018_convert_timestamps_create_ro_user.sql b/packages/graphql/database/migrations/018_convert_timestamps_create_ro_user.sql deleted file mode 100644 index 7e7410d7f..000000000 --- a/packages/graphql/database/migrations/018_convert_timestamps_create_ro_user.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Convert timestamps to timestamptz -ALTER TABLE indexer.blocks ALTER COLUMN timestamp TYPE TIMESTAMPTZ USING timestamp AT TIME ZONE 'UTC'; -ALTER TABLE indexer.transactions ALTER COLUMN timestamp TYPE TIMESTAMPTZ USING timestamp AT TIME ZONE 'UTC'; - --- Grant permissions to read-only user (user may not exist in dev, that's ok) -GRANT USAGE ON SCHEMA indexer TO explorer_ro; -GRANT SELECT ON ALL TABLES IN SCHEMA indexer TO explorer_ro; diff --git a/packages/graphql/database/migrations/019_create_staking_mvs_and_jobs.sql b/packages/graphql/database/migrations/019_create_staking_mvs_and_jobs.sql deleted file mode 100644 index c0c54c829..000000000 --- a/packages/graphql/database/migrations/019_create_staking_mvs_and_jobs.sql +++ /dev/null @@ -1,194 +0,0 @@ --- daily_staked_mv -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.daily_staked_mv AS -SELECT - DATE_TRUNC('day', t."timestamp") AS day, - SUM(CAST(r.receipt_amount AS BIGINT)) AS daily_staked -FROM - indexer.transactions_accounts ta -JOIN - indexer.transactions t - ON ta.tx_hash = t.tx_hash - AND t."timestamp" > (NOW() - INTERVAL '60 days') - AND t."data"->>'scriptData' LIKE '%76465706f736974%' -JOIN - indexer.receipts r - ON r.tx_hash = t.tx_hash - AND r.receipt_type = 'CALL' - AND r.receipt_to = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' - AND CAST(r.receipt_amount AS BIGINT) > 0 -WHERE - ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY - day -WITH DATA; - -CREATE UNIQUE INDEX IF NOT EXISTS daily_staked_mv_day_idx ON indexer.daily_staked_mv(day); -GRANT SELECT ON indexer.daily_staked_mv TO explorer_ro; - --- daily_unbond_mv -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.daily_unbond_mv AS -SELECT - DATE_TRUNC('day', t."timestamp") AS day, - SUM(CAST(r.receipt_amount AS BIGINT)) AS daily_unbond -FROM - indexer.transactions_accounts ta -JOIN - indexer.transactions t - on ta.tx_hash = t.tx_hash - and t."timestamp" > (now() - INTERVAL '60 days') - and t."data"->>'scriptData' like '%87769746864726177%' -JOIN - indexer.receipts r - on r.tx_hash = ta.tx_hash - and r.receipt_type = 'TRANSFER_OUT' - and r.receipt_asset_id = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' - and CAST(r.receipt_amount AS BIGINT) > 0 -WHERE - ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY - day -WITH DATA; - -CREATE UNIQUE INDEX IF NOT EXISTS daily_unbond_mv_day_idx ON indexer.daily_unbond_mv(day); -GRANT SELECT ON indexer.daily_unbond_mv TO explorer_ro; - --- total_staking_mv -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.total_staking_mv AS -SELECT - l1.day AS day, - (l1.daily_staked + l2.daily_staked) AS daily_staked -FROM ( - SELECT - DATE_TRUNC('day', cr."timestamp") AS day, - SUM(CAST(regexp_replace(ce2.value, '[^0-9]', '', 'g') AS BIGINT)) AS daily_staked - FROM - indexer.cosmos_responses cr - LEFT JOIN - indexer.cosmos_events ce - ON ce.cosmos_response_id = cr._id - AND ce."type" = 'delegate' - AND ce."key" = 'delegator' - AND ce."value" != '0x85308a35b3ad660213ea91a5d37bbf9620708ecc' - JOIN - indexer.cosmos_events ce2 - ON ce2.cosmos_response_id = cr._id - AND ce2."type" = 'delegate' - AND ce2."key" = 'amount' - AND ce2."index" = ce."index" - WHERE - cr."timestamp" > (now() - INTERVAL '60 days') - GROUP BY - day -) l1 -JOIN ( - SELECT - DATE_TRUNC('day', t."timestamp") AS day, - SUM(CAST(r.receipt_amount AS BIGINT)) AS daily_staked - FROM - indexer.transactions_accounts ta - JOIN - indexer.transactions t - ON ta.tx_hash = t.tx_hash - AND t."timestamp" > (now() - INTERVAL '60 days') - AND t."data"->>'scriptData' LIKE '%76465706f736974%' - JOIN - indexer.receipts r - ON r.tx_hash = ta.tx_hash - AND r.receipt_type = 'CALL' - AND r.receipt_to = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' - AND CAST(r.receipt_amount AS BIGINT) > 0 - WHERE - ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' - GROUP BY - day -) l2 -ON l2.day = l1.day -WITH DATA; - -CREATE UNIQUE INDEX IF NOT EXISTS total_staking_mv_day_idx ON indexer.total_staking_mv(day); -GRANT SELECT ON indexer.total_staking_mv TO explorer_ro; - --- daily_claims_mv -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.daily_claims_mv AS -SELECT - DATE_TRUNC('day', t."timestamp") AS day, - (SUM(CAST(r.receipt_amount AS BIGINT)) / 1000000000) AS daily_claims -FROM - indexer.transactions_accounts ta -JOIN - indexer.transactions t - on ta.tx_hash = t.tx_hash - and t."timestamp" > (now() - INTERVAL '60 days') - and t."data"->>'scriptData' like '%d636c61696d5f72657761726473%' -JOIN - indexer.receipts r - on r.tx_hash = ta.tx_hash - and r.receipt_type = 'TRANSFER_OUT' - and r.receipt_asset_id = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' - and CAST(r.receipt_amount AS BIGINT) > 0 -WHERE - ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY - day -WITH DATA; - -CREATE UNIQUE INDEX IF NOT EXISTS daily_claims_mv_day_idx ON indexer.daily_claims_mv(day); -GRANT SELECT ON indexer.daily_claims_mv TO explorer_ro; - --- inflows_mv -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.inflows_mv AS -select - sum((i.data->>'amount')::numeric) as amount, - DATE_TRUNC('day', t."timestamp") as day -from - indexer.transactions_accounts a - join indexer.transactions t on (a.tx_hash = t.tx_hash) - join indexer.outputs i on (i.transaction_id = t._id) -where - account_hash in ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') - and i.data->>'assetId' = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' - and i.data->>'to' not in ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') - and i.data->>'__typename' = 'CoinOutput' -group by day -WITH DATA; - -CREATE UNIQUE INDEX IF NOT EXISTS inflows_mv_day_idx ON indexer.inflows_mv(day); -GRANT SELECT ON indexer.inflows_mv TO explorer_ro; - --- outflows_mv -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.outflows_mv AS -select - sum((i.data->>'amount')::numeric) as amount, - DATE_TRUNC('day', t."timestamp") as day -from - indexer.transactions_accounts a - join indexer.transactions t on (a.tx_hash = t.tx_hash) - join indexer.outputs i on (i.transaction_id = t._id) -where - account_hash in ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') - and i.data->>'assetId' = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' - and i.data->>'to' in ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') - and i.data->>'__typename' = 'CoinOutput' -group by day -WITH DATA; - -CREATE UNIQUE INDEX IF NOT EXISTS outflows_mv_day_idx ON indexer.outflows_mv(day); -GRANT SELECT ON indexer.outflows_mv TO explorer_ro; - --- database_jobs table -create table if not exists indexer.database_jobs ( - _id serial, - query text UNIQUE, - recurrent boolean not null default FALSE, - interval_seconds integer, - status text, - last_run TIMESTAMPTZ, - error_message text -); - -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) values ('REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.daily_staked_mv', true, 86400, 'pending') on conflict (query) do nothing; -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) values ('REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.daily_unbond_mv', true, 86400, 'pending') on conflict (query) do nothing; -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) values ('REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.total_staking_mv', true, 86400, 'pending') on conflict (query) do nothing; -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) values ('REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.daily_claims_mv', true, 86400, 'pending') on conflict (query) do nothing; -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) values ('REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.inflows_mv', true, 86400, 'pending') on conflict (query) do nothing; -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) values ('REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.outflows_mv', true, 86400, 'pending') on conflict (query) do nothing; diff --git a/packages/graphql/database/migrations/020_receipts_id_to_bigserial.sql b/packages/graphql/database/migrations/020_receipts_id_to_bigserial.sql deleted file mode 100644 index ee8017038..000000000 --- a/packages/graphql/database/migrations/020_receipts_id_to_bigserial.sql +++ /dev/null @@ -1,10 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.receipts ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.receipts__id_seq AS bigint; - --- Update foreign key column in receipts_data table (this table actually exists) -ALTER TABLE indexer.receipts_data ALTER COLUMN receipt_id TYPE bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/021_balance_id_to_bigserial.sql b/packages/graphql/database/migrations/021_balance_id_to_bigserial.sql deleted file mode 100644 index a2fab2f24..000000000 --- a/packages/graphql/database/migrations/021_balance_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.balance ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.balance__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/022_l1_index_id_to_bigserial.sql b/packages/graphql/database/migrations/022_l1_index_id_to_bigserial.sql deleted file mode 100644 index 304271901..000000000 --- a/packages/graphql/database/migrations/022_l1_index_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.contract_l1_index ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.contract_l1_index__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/023_l1_logs_id_to_bigserial.sql b/packages/graphql/database/migrations/023_l1_logs_id_to_bigserial.sql deleted file mode 100644 index e83ce33b7..000000000 --- a/packages/graphql/database/migrations/023_l1_logs_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.contract_l1_logs ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.contract_l1_logs__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/024_l1_args_id_to_bigserial.sql b/packages/graphql/database/migrations/024_l1_args_id_to_bigserial.sql deleted file mode 100644 index 67ce15301..000000000 --- a/packages/graphql/database/migrations/024_l1_args_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.contract_l1_args ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.contract_l1_args__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/025_cosmos_responses_id_to_bigserial.sql b/packages/graphql/database/migrations/025_cosmos_responses_id_to_bigserial.sql deleted file mode 100644 index 5168344ca..000000000 --- a/packages/graphql/database/migrations/025_cosmos_responses_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.cosmos_responses ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.cosmos_responses__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/026_cosmos_events_id_to_bigserial.sql b/packages/graphql/database/migrations/026_cosmos_events_id_to_bigserial.sql deleted file mode 100644 index 7dd51177c..000000000 --- a/packages/graphql/database/migrations/026_cosmos_events_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.cosmos_events ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.cosmos_events__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/027_receipts_data_id_to_bigserial.sql b/packages/graphql/database/migrations/027_receipts_data_id_to_bigserial.sql deleted file mode 100644 index a6b50c98a..000000000 --- a/packages/graphql/database/migrations/027_receipts_data_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ -BEGIN; --- Change serial to bigserial (preserves auto-increment behavior) -ALTER TABLE indexer.receipts_data ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.receipts_data__id_seq AS bigint; -COMMIT; \ No newline at end of file diff --git a/packages/graphql/database/migrations/028_add_vacuum_jobs.sql b/packages/graphql/database/migrations/028_add_vacuum_jobs.sql deleted file mode 100644 index a55af0e8a..000000000 --- a/packages/graphql/database/migrations/028_add_vacuum_jobs.sql +++ /dev/null @@ -1,32 +0,0 @@ --- Add VACUUM ANALYZE maintenance jobs for database optimization --- These jobs reclaim dead rows, update statistics, and improve query planner decisions - --- Hot tables (frequently updated during indexing) - run daily -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.transactions', true, 86400, 'pending') -on conflict (query) do nothing; - -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.transactions_accounts', true, 86400, 'pending') -on conflict (query) do nothing; - -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.contracts', true, 86400, 'pending') -on conflict (query) do nothing; - --- Less frequently updated tables - run weekly -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.blocks', true, 604800, 'pending') -on conflict (query) do nothing; - -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.outputs', true, 604800, 'pending') -on conflict (query) do nothing; - -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.inputs', true, 604800, 'pending') -on conflict (query) do nothing; - -insert into indexer.database_jobs (query, recurrent, interval_seconds, status) -values ('VACUUM ANALYZE indexer.predicates', true, 604800, 'pending') -on conflict (query) do nothing; diff --git a/packages/graphql/database/migrations/029_add_search_indexes.sql b/packages/graphql/database/migrations/029_add_search_indexes.sql deleted file mode 100644 index 0a2ddab93..000000000 --- a/packages/graphql/database/migrations/029_add_search_indexes.sql +++ /dev/null @@ -1,9 +0,0 @@ --- Add composite indexes for search query performance optimization --- These indexes optimize queries that filter by account_hash and order by _id - --- Composite index for getRecentTransactionsByOwner query (account_hash, _id DESC) --- This allows the query to use index-only scan when fetching recent transactions for an account -CREATE INDEX CONCURRENTLY ON indexer.transactions_accounts (account_hash, _id DESC); - --- Index on asset_id for fast asset lookups -CREATE INDEX CONCURRENTLY ON indexer.assets_contracts (asset_id); diff --git a/packages/graphql/database/migrations/030_create_recent_transactions_mv.sql b/packages/graphql/database/migrations/030_create_recent_transactions_mv.sql deleted file mode 100644 index 7fb77bc56..000000000 --- a/packages/graphql/database/migrations/030_create_recent_transactions_mv.sql +++ /dev/null @@ -1,34 +0,0 @@ --- Create materialized view for recent account transactions (last 7 days) --- This optimizes searches for accounts with many transactions by avoiding full table scans --- Joins with transactions table to filter by timestamp - -CREATE MATERIALIZED VIEW IF NOT EXISTS indexer.recent_account_transactions_mv AS -SELECT - ta.account_hash, - ta.tx_hash, - ta._id, - ta.block_id, - t.timestamp -FROM - indexer.transactions_accounts ta - INNER JOIN indexer.transactions t ON ta.tx_hash = t.tx_hash -WHERE - t.timestamp > NOW() - INTERVAL '7 days' -WITH DATA; - --- Create unique index for concurrent refresh (required for CONCURRENTLY keyword) -CREATE UNIQUE INDEX IF NOT EXISTS recent_account_transactions_mv_idx -ON indexer.recent_account_transactions_mv(account_hash, _id DESC); - --- Grant read access to explorer_ro user -GRANT SELECT ON indexer.recent_account_transactions_mv TO explorer_ro; - --- Add to database jobs for periodic refresh (every 4 hours to keep data fresh) -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -VALUES ( - 'REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.recent_account_transactions_mv', - true, - 14400, - 'pending' -) -ON CONFLICT (query) DO NOTHING; diff --git a/packages/graphql/database/migrations/031_add_statistics_indexes.sql b/packages/graphql/database/migrations/031_add_statistics_indexes.sql deleted file mode 100644 index abf6f50d8..000000000 --- a/packages/graphql/database/migrations/031_add_statistics_indexes.sql +++ /dev/null @@ -1,20 +0,0 @@ --- Add indexes for statistics queries optimization --- These queries scan the full transactions/blocks table filtered by timestamp --- Without these indexes, AWS RDS performs expensive sequential scans - --- Index on transactions.timestamp for getTotalFee() and other statistics queries --- This is critical because getTotalFee scans all transactions from the last 24 hours -CREATE INDEX ON indexer.transactions ("timestamp" DESC); - --- Index on blocks.timestamp for tps(), getMaxTps(), and other block statistics --- Queries filter by timestamp range to get last 24 hours of data -CREATE INDEX ON indexer.blocks ("timestamp" DESC); - --- Add to maintenance jobs for periodic ANALYZE to update index statistics -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -VALUES ('ANALYZE indexer.transactions', true, 86400, 'pending') -ON CONFLICT (query) DO NOTHING; - -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -VALUES ('ANALYZE indexer.blocks', true, 86400, 'pending') -ON CONFLICT (query) DO NOTHING; diff --git a/packages/graphql/database/migrations/032_create_hourly_statistics_mv.sql b/packages/graphql/database/migrations/032_create_hourly_statistics_mv.sql deleted file mode 100644 index e346a1f4f..000000000 --- a/packages/graphql/database/migrations/032_create_hourly_statistics_mv.sql +++ /dev/null @@ -1,44 +0,0 @@ --- Create materialized view for hourly statistics to eliminate expensive JSON extraction --- getTotalFee() query was taking 11+ seconds due to full table scan + JSON extraction --- This view pre-computes hourly aggregations and refreshes every 10 minutes - --- Force drop if exists (handle stuck migrations) -DROP MATERIALIZED VIEW IF EXISTS indexer.hourly_statistics CASCADE; -DROP INDEX IF EXISTS hourly_statistics_hour_idx; - --- Create the materialized view -CREATE MATERIALIZED VIEW indexer.hourly_statistics AS -SELECT - date_trunc('hour', t."timestamp") AS hour, - SUM((t.data->'status'->>'totalFee')::numeric) AS total_fee, - SUM((t.data->'status'->>'gasUsed')::bigint) AS total_gas_used -FROM indexer.transactions t -WHERE t."timestamp" > NOW() - INTERVAL '7 days' -GROUP BY date_trunc('hour', t."timestamp"); - --- Create unique index for concurrent refresh (required for CONCURRENTLY keyword) -CREATE UNIQUE INDEX hourly_statistics_hour_idx -ON indexer.hourly_statistics(hour); - --- Grant read access to explorer_ro user -GRANT SELECT ON indexer.hourly_statistics TO explorer_ro; - --- Schedule periodic refresh every 10 minutes (600 seconds) -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -VALUES ( - 'REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.hourly_statistics', - true, - 1800, - 'pending' -) -ON CONFLICT (query) DO NOTHING; - --- Add ANALYZE job for this view (daily) -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -VALUES ( - 'ANALYZE indexer.hourly_statistics', - true, - 86400, - 'pending' -) -ON CONFLICT (query) DO NOTHING; diff --git a/packages/graphql/database/migrations/033_add_moor_token.sql b/packages/graphql/database/migrations/033_add_moor_token.sql deleted file mode 100644 index c3719f78c..000000000 --- a/packages/graphql/database/migrations/033_add_moor_token.sql +++ /dev/null @@ -1,10 +0,0 @@ --- Migration 32: Add MOOR token rate provider (CMC DEX) --- MOOR is the governance token of the Moor protocol on Fuel Network - --- Add MOOR token for mainnet using CMC DEX as price source -insert into indexer.assets_rate_provider (asset_id, symbol, value, provider) -values ('0xa9d7987a3f2c2fb02b287c3a2ef619046e930848c6050d31efef48ad6d3bdee8', 'MOOR', 'Fuel Network', 'cmc-dex') -on conflict (symbol) do update set asset_id = excluded.asset_id, value = excluded.value, provider = excluded.provider; - --- Update migration version -UPDATE indexer.migration SET version = 32; diff --git a/packages/graphql/database/migrations/034_drop_unused_receipts_indexes.sql b/packages/graphql/database/migrations/034_drop_unused_receipts_indexes.sql deleted file mode 100644 index 86eb4c5ca..000000000 --- a/packages/graphql/database/migrations/034_drop_unused_receipts_indexes.sql +++ /dev/null @@ -1,26 +0,0 @@ --- Migration 33: Drop unused indexes on receipts table --- --- Analysis: Performance Insights showed INSERT INTO indexer.receipts was 73% of DB load --- Index usage stats revealed 3 indexes with 0 scans consuming ~28 GB --- --- Findings: --- receipts_transaction_id_idx: 0 scans, 11 GB - no code queries by transaction_id --- receipts_receipt_type_idx: 0 scans, 8.3 GB - filter applied after tx_hash join --- receipts_receipt_to_idx: 0 scans, 8.5 GB - filter applied after tx_hash join --- --- Expected impact: --- - ~40% reduction in INSERT latency (3 fewer indexes to maintain) --- - ~28 GB disk space savings --- --- NOTE: For production, run DROP INDEX CONCURRENTLY manually (cannot run in transaction): --- DROP INDEX CONCURRENTLY IF EXISTS indexer.receipts_transaction_id_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.receipts_receipt_type_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.receipts_receipt_to_idx; - --- For dev/local environments (small tables, ok to lock briefly): -DROP INDEX IF EXISTS indexer.receipts_transaction_id_idx; -DROP INDEX IF EXISTS indexer.receipts_receipt_type_idx; -DROP INDEX IF EXISTS indexer.receipts_receipt_to_idx; - --- Update migration version -UPDATE indexer.migration SET version = 33; diff --git a/packages/graphql/database/migrations/035_add_receipts_vacuum_job.sql b/packages/graphql/database/migrations/035_add_receipts_vacuum_job.sql deleted file mode 100644 index 776a56bff..000000000 --- a/packages/graphql/database/migrations/035_add_receipts_vacuum_job.sql +++ /dev/null @@ -1,20 +0,0 @@ --- Migration 34: Add VACUUM job for receipts table --- --- After dropping 3 unused indexes (migration 33), add recurring VACUUM --- to maintain table health and reclaim dead tuple space. --- --- VACUUM ANALYZE: --- - Reclaims space from dead tuples (from updates/deletes) --- - Updates statistics for query planner --- - Does NOT lock the table (safe for production) - --- Add VACUUM ANALYZE job for receipts (every 12 hours = 43200 seconds) --- This is more frequent than other tables due to high INSERT volume (~195/sec) -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -SELECT 'VACUUM ANALYZE indexer.receipts', true, 43200, 'pending' -WHERE NOT EXISTS ( - SELECT 1 FROM indexer.database_jobs WHERE query = 'VACUUM ANALYZE indexer.receipts' -); - --- Update migration version -UPDATE indexer.migration SET version = 34; \ No newline at end of file diff --git a/packages/graphql/database/migrations/036_optimize_hourly_statistics_mv.sql b/packages/graphql/database/migrations/036_optimize_hourly_statistics_mv.sql deleted file mode 100644 index c4c0153bb..000000000 --- a/packages/graphql/database/migrations/036_optimize_hourly_statistics_mv.sql +++ /dev/null @@ -1,35 +0,0 @@ --- Migration 35: Optimize hourly_statistics MV from 7 days to 24 hours --- --- Analysis: AWS Performance Insights showed hourly_statistics refresh was 36% of DB load --- The API only queries 24 hours of data (BlockDAO.ts getTotalFee), but MV stored 7 days --- --- Before: 7 days of data refreshed every 30 minutes --- After: 24 hours of data refreshed every 30 minutes --- --- Expected impact: --- - ~7x reduction in refresh query cost --- - ~7x reduction in MV storage size --- - Faster refresh completion time - --- Recreate the materialized view with 24-hour window -DROP MATERIALIZED VIEW IF EXISTS indexer.hourly_statistics CASCADE; - -CREATE MATERIALIZED VIEW indexer.hourly_statistics AS -SELECT - date_trunc('hour', t."timestamp") AS hour, - SUM((t.data->'status'->>'totalFee')::numeric) AS total_fee, - SUM((t.data->'status'->>'gasUsed')::bigint) AS total_gas_used -FROM indexer.transactions t -WHERE t."timestamp" > NOW() - INTERVAL '24 hours' -GROUP BY date_trunc('hour', t."timestamp"); - --- Recreate unique index for concurrent refresh -CREATE UNIQUE INDEX hourly_statistics_hour_idx -ON indexer.hourly_statistics(hour); - --- Grant read access to explorer_ro user -GRANT SELECT ON indexer.hourly_statistics TO explorer_ro; - --- Update migration version -UPDATE indexer.migration SET version = 35; - diff --git a/packages/graphql/database/migrations/037_outputs_id_to_bigserial.sql b/packages/graphql/database/migrations/037_outputs_id_to_bigserial.sql deleted file mode 100644 index 20b126972..000000000 --- a/packages/graphql/database/migrations/037_outputs_id_to_bigserial.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Change serial to bigserial (preserves auto-increment behavior) --- The outputs table hit the max value of its int4 sequence (2,147,483,647) --- This was missed in the original bigserial migrations (020-027) -ALTER TABLE indexer.outputs ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.outputs__id_seq AS bigint; diff --git a/packages/graphql/database/migrations/038_inputs_id_to_bigserial.sql b/packages/graphql/database/migrations/038_inputs_id_to_bigserial.sql deleted file mode 100644 index efefb116d..000000000 --- a/packages/graphql/database/migrations/038_inputs_id_to_bigserial.sql +++ /dev/null @@ -1,6 +0,0 @@ --- Preventive migration: inputs table also uses SERIAL (int4) --- Converting to bigserial before hitting the max value limit -ALTER TABLE indexer.inputs ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.inputs__id_seq AS bigint; diff --git a/packages/graphql/database/migrations/039_predicates_id_to_bigserial.sql b/packages/graphql/database/migrations/039_predicates_id_to_bigserial.sql deleted file mode 100644 index c0f6b77ba..000000000 --- a/packages/graphql/database/migrations/039_predicates_id_to_bigserial.sql +++ /dev/null @@ -1,6 +0,0 @@ --- Preventive migration: predicates table also uses SERIAL (int4) --- Converting to bigserial before hitting the max value limit -ALTER TABLE indexer.predicates ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.predicates__id_seq AS bigint; diff --git a/packages/graphql/database/migrations/040_contracts_id_to_bigserial.sql b/packages/graphql/database/migrations/040_contracts_id_to_bigserial.sql deleted file mode 100644 index fb1674895..000000000 --- a/packages/graphql/database/migrations/040_contracts_id_to_bigserial.sql +++ /dev/null @@ -1,6 +0,0 @@ --- Preventive migration: contracts table also uses SERIAL (int4) --- Converting to bigserial before hitting the max value limit -ALTER TABLE indexer.contracts ALTER COLUMN _id TYPE bigint USING _id::bigint; - --- Update the sequence to use bigint values -ALTER SEQUENCE indexer.contracts__id_seq AS bigint; diff --git a/packages/graphql/database/migrations/041_optimize_staking_mvs.sql b/packages/graphql/database/migrations/041_optimize_staking_mvs.sql deleted file mode 100644 index 90c373692..000000000 --- a/packages/graphql/database/migrations/041_optimize_staking_mvs.sql +++ /dev/null @@ -1,30 +0,0 @@ --- Migration 041: Add statement_timeout protection and composite index --- --- Adds statement_timeout to all MV refresh jobs to prevent runaway queries, --- and a composite index on cosmos_events for efficient delegate joins. - --- ============================================================ --- 1. Add composite index on cosmos_events for the delegate join pattern --- (cosmos_response_id, type, key, index) covers the delegate join --- ============================================================ -CREATE INDEX CONCURRENTLY IF NOT EXISTS cosmos_events_resp_type_key_idx_idx -ON indexer.cosmos_events (cosmos_response_id, type, key, index); - --- ============================================================ --- 2. Add statement_timeout to heavy MV refresh jobs --- Using CHR(59) to represent semicolons inside the query strings, --- since the migration runner splits on literal semicolons. --- ============================================================ - --- hourly_statistics -UPDATE indexer.database_jobs -SET query = 'SET statement_timeout = ''10min''' || CHR(59) || ' REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.hourly_statistics' || CHR(59) || ' RESET statement_timeout' || CHR(59) -WHERE query = 'REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.hourly_statistics'; - --- recent_account_transactions_mv -UPDATE indexer.database_jobs -SET query = 'SET statement_timeout = ''30min''' || CHR(59) || ' REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.recent_account_transactions_mv' || CHR(59) || ' RESET statement_timeout' || CHR(59) -WHERE query = 'REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.recent_account_transactions_mv'; - --- Update migration version -UPDATE indexer.migration SET version = 41; diff --git a/packages/graphql/database/migrations/042_drop_unused_indexes.sql b/packages/graphql/database/migrations/042_drop_unused_indexes.sql deleted file mode 100644 index 7d9d544a3..000000000 --- a/packages/graphql/database/migrations/042_drop_unused_indexes.sql +++ /dev/null @@ -1,35 +0,0 @@ --- Migration 042: Drop unused and redundant indexes --- --- Analysis from pg_stat_user_indexes (0 scans = never used by any query): --- --- transactions_hash_idx (148 MB prod est.) - 0 scans, redundant with transactions_tx_hash_key (UNIQUE) --- blocks_hash_idx (147 MB prod est.) - 0 scans, redundant with blocks_id_key (UNIQUE) --- transactions_timestamp_idx (27 MB) - 0 scans, superseded by transactions_timestamp_idx1 (DESC) --- blocks_da_height_idx (8.7 MB) - 0 scans, no code references --- cosmos_events_type_idx - 2 scans, fully covered by (type, key, value) composite --- cosmos_events_key_idx - 0 scans, fully covered by (type, key, value) composite --- cosmos_events_value_idx - 0 scans, rarely queried standalone --- --- Expected savings: ~330 MB+ on production (proportional to table growth) --- Additional benefit: faster INSERT/UPDATE on these tables (fewer indexes to maintain) --- --- NOTE: For production, run DROP INDEX CONCURRENTLY manually outside a transaction: --- DROP INDEX CONCURRENTLY IF EXISTS indexer.transactions_hash_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.blocks_hash_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.transactions_timestamp_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.blocks_da_height_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.cosmos_events_type_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.cosmos_events_key_idx; --- DROP INDEX CONCURRENTLY IF EXISTS indexer.cosmos_events_value_idx; - --- For dev/local environments: -DROP INDEX IF EXISTS indexer.transactions_hash_idx; -DROP INDEX IF EXISTS indexer.blocks_hash_idx; -DROP INDEX IF EXISTS indexer.transactions_timestamp_idx; -DROP INDEX IF EXISTS indexer.blocks_da_height_idx; -DROP INDEX IF EXISTS indexer.cosmos_events_type_idx; -DROP INDEX IF EXISTS indexer.cosmos_events_key_idx; -DROP INDEX IF EXISTS indexer.cosmos_events_value_idx; - --- Update migration version -UPDATE indexer.migration SET version = 42; diff --git a/packages/graphql/database/migrations/043_replace_staking_mvs_with_agg_tables.sql b/packages/graphql/database/migrations/043_replace_staking_mvs_with_agg_tables.sql deleted file mode 100644 index 47d9105aa..000000000 --- a/packages/graphql/database/migrations/043_replace_staking_mvs_with_agg_tables.sql +++ /dev/null @@ -1,177 +0,0 @@ --- Migration 043: Replace staking materialized views with aggregate tables --- --- Problem: The 6 staking materialized views (daily_staked_mv, daily_unbond_mv, --- daily_claims_mv, total_staking_mv, inflows_mv, outflows_mv) refresh daily by --- scanning millions of rows. The total_staking_mv alone was taking 8+ hours, --- locking tables and degrading page loads. --- --- Solution: Replace all MVs with regular aggregate tables that will be --- incrementally updated during indexing. This eliminates the expensive full-table --- scans and lock contention. - --- ============================================================================ --- Step 1: Create aggregate tables --- ============================================================================ - -CREATE TABLE IF NOT EXISTS indexer.daily_staked_agg ( - day DATE PRIMARY KEY, - daily_staked NUMERIC NOT NULL DEFAULT 0 -); - -CREATE TABLE IF NOT EXISTS indexer.daily_unbond_agg ( - day DATE PRIMARY KEY, - daily_unbond NUMERIC NOT NULL DEFAULT 0 -); - -CREATE TABLE IF NOT EXISTS indexer.daily_claims_agg ( - day DATE PRIMARY KEY, - daily_claims NUMERIC NOT NULL DEFAULT 0 -); - -CREATE TABLE IF NOT EXISTS indexer.total_staking_agg ( - day DATE PRIMARY KEY, - l1_staked NUMERIC NOT NULL DEFAULT 0, - l2_staked NUMERIC NOT NULL DEFAULT 0 -); - -CREATE TABLE IF NOT EXISTS indexer.daily_inflows_agg ( - day DATE PRIMARY KEY, - amount NUMERIC NOT NULL DEFAULT 0 -); - -CREATE TABLE IF NOT EXISTS indexer.daily_outflows_agg ( - day DATE PRIMARY KEY, - amount NUMERIC NOT NULL DEFAULT 0 -); - --- ============================================================================ --- Step 2: Grant SELECT to explorer_ro --- ============================================================================ - -GRANT SELECT ON indexer.daily_staked_agg TO explorer_ro; -GRANT SELECT ON indexer.daily_unbond_agg TO explorer_ro; -GRANT SELECT ON indexer.daily_claims_agg TO explorer_ro; -GRANT SELECT ON indexer.total_staking_agg TO explorer_ro; -GRANT SELECT ON indexer.daily_inflows_agg TO explorer_ro; -GRANT SELECT ON indexer.daily_outflows_agg TO explorer_ro; - --- ============================================================================ --- Step 3: Backfill aggregate tables from existing data --- ============================================================================ - --- Backfill daily_staked_agg (L2 fuel staking deposits) -INSERT INTO indexer.daily_staked_agg (day, daily_staked) -SELECT DATE_TRUNC('day', t."timestamp")::date AS day, SUM(CAST(r.receipt_amount AS BIGINT)) -FROM indexer.transactions_accounts ta -JOIN indexer.transactions t ON ta.tx_hash = t.tx_hash AND t."data"->>'scriptData' LIKE '%76465706f736974%' -JOIN indexer.receipts r ON r.tx_hash = t.tx_hash AND r.receipt_type = 'CALL' AND r.receipt_to = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' AND CAST(r.receipt_amount AS BIGINT) > 0 -WHERE ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY day -ON CONFLICT (day) DO UPDATE SET daily_staked = EXCLUDED.daily_staked; - --- Backfill daily_unbond_agg -INSERT INTO indexer.daily_unbond_agg (day, daily_unbond) -SELECT DATE_TRUNC('day', t."timestamp")::date AS day, SUM(CAST(r.receipt_amount AS BIGINT)) -FROM indexer.transactions_accounts ta -JOIN indexer.transactions t ON ta.tx_hash = t.tx_hash AND t."data"->>'scriptData' LIKE '%87769746864726177%' -JOIN indexer.receipts r ON r.tx_hash = ta.tx_hash AND r.receipt_type = 'TRANSFER_OUT' AND r.receipt_asset_id = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' AND CAST(r.receipt_amount AS BIGINT) > 0 -WHERE ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY day -ON CONFLICT (day) DO UPDATE SET daily_unbond = EXCLUDED.daily_unbond; - --- Backfill daily_claims_agg -INSERT INTO indexer.daily_claims_agg (day, daily_claims) -SELECT DATE_TRUNC('day', t."timestamp")::date AS day, SUM(CAST(r.receipt_amount AS BIGINT)) -FROM indexer.transactions_accounts ta -JOIN indexer.transactions t ON ta.tx_hash = t.tx_hash AND t."data"->>'scriptData' LIKE '%d636c61696d5f72657761726473%' -JOIN indexer.receipts r ON r.tx_hash = ta.tx_hash AND r.receipt_type = 'TRANSFER_OUT' AND r.receipt_asset_id = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' AND CAST(r.receipt_amount AS BIGINT) > 0 -WHERE ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY day -ON CONFLICT (day) DO UPDATE SET daily_claims = EXCLUDED.daily_claims; - --- Backfill total_staking_agg - L1 cosmos side -INSERT INTO indexer.total_staking_agg (day, l1_staked, l2_staked) -SELECT DATE_TRUNC('day', cr."timestamp")::date AS day, SUM(CAST(regexp_replace(ce_amount.value, '[^0-9]', '', 'g') AS NUMERIC)), 0 -FROM indexer.cosmos_responses cr -JOIN indexer.cosmos_events ce_del ON ce_del.cosmos_response_id = cr._id AND ce_del."type" = 'delegate' AND ce_del."key" = 'delegator' AND ce_del."value" != '0x85308a35b3ad660213ea91a5d37bbf9620708ecc' -JOIN indexer.cosmos_events ce_amount ON ce_amount.cosmos_response_id = cr._id AND ce_amount."type" = 'delegate' AND ce_amount."key" = 'amount' AND ce_amount."index" = ce_del."index" -GROUP BY day -ON CONFLICT (day) DO UPDATE SET l1_staked = EXCLUDED.l1_staked; - --- Backfill total_staking_agg - L2 fuel side -INSERT INTO indexer.total_staking_agg (day, l1_staked, l2_staked) -SELECT DATE_TRUNC('day', t."timestamp")::date AS day, 0, SUM(CAST(r.receipt_amount AS BIGINT)) -FROM indexer.transactions_accounts ta -JOIN indexer.transactions t ON ta.tx_hash = t.tx_hash AND t."data"->>'scriptData' LIKE '%76465706f736974%' -JOIN indexer.receipts r ON r.tx_hash = ta.tx_hash AND r.receipt_type = 'CALL' AND r.receipt_to = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' AND CAST(r.receipt_amount AS BIGINT) > 0 -WHERE ta.account_hash = '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c' -GROUP BY day -ON CONFLICT (day) DO UPDATE SET l2_staked = EXCLUDED.l2_staked; - --- Backfill daily_inflows_agg -INSERT INTO indexer.daily_inflows_agg (day, amount) -SELECT DATE_TRUNC('day', t."timestamp")::date AS day, SUM((i.data->>'amount')::numeric) -FROM indexer.transactions_accounts a -JOIN indexer.transactions t ON a.tx_hash = t.tx_hash -JOIN indexer.outputs i ON i.transaction_id = t._id -WHERE account_hash IN ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') -AND i.data->>'assetId' = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' -AND i.data->>'to' NOT IN ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') -AND i.data->>'__typename' = 'CoinOutput' -GROUP BY day -ON CONFLICT (day) DO UPDATE SET amount = EXCLUDED.amount; - --- Backfill daily_outflows_agg -INSERT INTO indexer.daily_outflows_agg (day, amount) -SELECT DATE_TRUNC('day', t."timestamp")::date AS day, SUM((i.data->>'amount')::numeric) -FROM indexer.transactions_accounts a -JOIN indexer.transactions t ON a.tx_hash = t.tx_hash -JOIN indexer.outputs i ON i.transaction_id = t._id -WHERE account_hash IN ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') -AND i.data->>'assetId' = '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82' -AND i.data->>'to' IN ('0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2') -AND i.data->>'__typename' = 'CoinOutput' -GROUP BY day -ON CONFLICT (day) DO UPDATE SET amount = EXCLUDED.amount; - --- ============================================================================ --- Step 4: Drop old materialized views --- ============================================================================ - -DROP MATERIALIZED VIEW IF EXISTS indexer.total_staking_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.cosmos_daily_staked_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.fuel_daily_staked_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.daily_staked_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.daily_unbond_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.daily_claims_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.inflows_mv CASCADE; -DROP MATERIALIZED VIEW IF EXISTS indexer.outflows_mv CASCADE; - --- ============================================================================ --- Step 5: Delete MV refresh jobs from database_jobs --- ============================================================================ - -DELETE FROM indexer.database_jobs WHERE query LIKE '%daily_staked_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%daily_unbond_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%daily_claims_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%total_staking_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%inflows_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%outflows_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%cosmos_daily_staked_mv%'; -DELETE FROM indexer.database_jobs WHERE query LIKE '%fuel_daily_staked_mv%'; - --- ============================================================================ --- Step 6: Add cleanup job for rows older than 90 days --- ============================================================================ - -INSERT INTO indexer.database_jobs (query, recurrent, interval_seconds, status) -VALUES ( - 'DELETE FROM indexer.daily_staked_agg WHERE day < NOW() - INTERVAL ''90 days''' || CHR(59) || ' DELETE FROM indexer.daily_unbond_agg WHERE day < NOW() - INTERVAL ''90 days''' || CHR(59) || ' DELETE FROM indexer.daily_claims_agg WHERE day < NOW() - INTERVAL ''90 days''' || CHR(59) || ' DELETE FROM indexer.total_staking_agg WHERE day < NOW() - INTERVAL ''90 days''' || CHR(59) || ' DELETE FROM indexer.daily_inflows_agg WHERE day < NOW() - INTERVAL ''90 days''' || CHR(59) || ' DELETE FROM indexer.daily_outflows_agg WHERE day < NOW() - INTERVAL ''90 days''' || CHR(59), - true, 86400, 'pending' -) ON CONFLICT (query) DO NOTHING; - --- ============================================================================ --- Step 7: Update migration version --- ============================================================================ - -UPDATE indexer.migration SET version = 43; diff --git a/packages/graphql/database/migrations/044_optimize_storage_drop_unused_data.sql b/packages/graphql/database/migrations/044_optimize_storage_drop_unused_data.sql deleted file mode 100644 index 68c860877..000000000 --- a/packages/graphql/database/migrations/044_optimize_storage_drop_unused_data.sql +++ /dev/null @@ -1,46 +0,0 @@ --- Migration 044: Optimize storage by removing unused data --- --- Problem: Three tables store data the API never reads, consuming ~53GB locally --- and likely 500GB+ in production: --- - outputs (6.4GB): Never read by any DAO or resolver --- - receipts (37GB): Only 42 MESSAGE_OUT rows out of 86M are ever read --- - inputs (9.6GB): Only the nonce field is read (for bridge withdrawals) --- --- Solution: Truncate outputs, delete non-MESSAGE_OUT receipts, extract nonce --- from inputs JSON and drop the data column. - --- ============================================================================ --- Step 1: Truncate outputs table (never read by API) --- ============================================================================ - -TRUNCATE indexer.outputs; - --- ============================================================================ --- Step 2: Delete non-MESSAGE_OUT receipts (only type read by BridgeDAO) --- ============================================================================ - -DELETE FROM indexer.receipts WHERE receipt_type != 'MESSAGE_OUT'; - --- ============================================================================ --- Step 3: Truncate receipts_data (write-only, never read by API) --- ============================================================================ - -TRUNCATE indexer.receipts_data; - --- ============================================================================ --- Step 4: Extract nonce from inputs JSON, drop data column --- ============================================================================ - -ALTER TABLE indexer.inputs ADD COLUMN IF NOT EXISTS nonce TEXT; - -UPDATE indexer.inputs SET nonce = data->>'nonce' WHERE data IS NOT NULL; - -ALTER TABLE indexer.inputs DROP COLUMN IF EXISTS data; - -CREATE INDEX IF NOT EXISTS idx_inputs_nonce ON indexer.inputs (nonce) WHERE nonce IS NOT NULL; - --- ============================================================================ --- Step 5: Update migration version --- ============================================================================ - -UPDATE indexer.migration SET version = 44; diff --git a/packages/graphql/database/migrations/045_vacuum_receipts.sql b/packages/graphql/database/migrations/045_vacuum_receipts.sql deleted file mode 100644 index 3f4bcfe43..000000000 --- a/packages/graphql/database/migrations/045_vacuum_receipts.sql +++ /dev/null @@ -1,16 +0,0 @@ --- Migration 045: Reclaim disk space from deleted receipts --- --- Migration 044 deleted ~86M non-MESSAGE_OUT rows from indexer.receipts using DELETE. --- DELETE marks rows as dead tuples but doesn't release disk space. --- VACUUM FULL rewrites the table, reclaiming all dead tuple space. --- --- WARNING: VACUUM FULL takes an exclusive lock on the table. --- Run during a maintenance window when the syncer is stopped. --- Expected to reclaim ~37GB in production. - -VACUUM FULL indexer.receipts; - --- Also vacuum inputs after dropping the data column in migration 044 -VACUUM FULL indexer.inputs; - -UPDATE indexer.migration SET version = 45; diff --git a/packages/graphql/database/migrations/046_replace_hourly_statistics_mv_with_agg_table.sql b/packages/graphql/database/migrations/046_replace_hourly_statistics_mv_with_agg_table.sql deleted file mode 100644 index d3c1ee368..000000000 --- a/packages/graphql/database/migrations/046_replace_hourly_statistics_mv_with_agg_table.sql +++ /dev/null @@ -1,46 +0,0 @@ --- Migration 046: Replace hourly_statistics MV with aggregate table --- --- Problem: REFRESH MATERIALIZED VIEW was the top DB query at 201,290ms latency --- It does a full seq scan of all 24h transactions every 30 minutes. --- --- Solution: Incremental aggregate table updated per-batch during indexing. --- Each batch recomputes only the affected hours (typically 1-2 hours), --- reducing cost from full 24h scan to a narrow timestamp index scan. --- --- Benchmark (local, 17k blocks): --- Before: 2,132ms (full seq scan + disk sort) --- After: ~25ms (index scan on timestamp for affected hours only) - --- Create the aggregate table -CREATE TABLE IF NOT EXISTS indexer.hourly_statistics_agg ( - hour TIMESTAMPTZ NOT NULL, - total_fee NUMERIC NOT NULL DEFAULT 0, - total_gas_used BIGINT NOT NULL DEFAULT 0, - PRIMARY KEY (hour) -); - --- Grant read access -GRANT SELECT ON indexer.hourly_statistics_agg TO explorer_ro; - --- Backfill from blocks table (source of truth). --- Avoids using the MV which had incorrect total_gas_used and could be stale --- by up to 30 minutes (its refresh interval). --- NOTE: this is a full seq scan of indexer.blocks — expected to take several --- minutes on large databases. Migration runs offline so this is acceptable. -INSERT INTO indexer.hourly_statistics_agg (hour, total_fee, total_gas_used) -SELECT date_trunc('hour', timestamp), SUM(total_fee::numeric), SUM(gas_used::numeric) -FROM indexer.blocks -GROUP BY 1 -ON CONFLICT (hour) DO UPDATE - SET total_fee = excluded.total_fee, - total_gas_used = excluded.total_gas_used; - --- Remove the old MV refresh jobs (query strings include SET/RESET statement_timeout wrappers) -DELETE FROM indexer.database_jobs -WHERE query LIKE '%REFRESH MATERIALIZED VIEW CONCURRENTLY indexer.hourly_statistics%'; - -DELETE FROM indexer.database_jobs -WHERE query LIKE '%ANALYZE indexer.hourly_statistics%'; - --- Drop the old MV -DROP MATERIALIZED VIEW IF EXISTS indexer.hourly_statistics CASCADE; diff --git a/packages/graphql/database/migrations/047_optimize_balance_index.sql b/packages/graphql/database/migrations/047_optimize_balance_index.sql deleted file mode 100644 index eb77bcbd4..000000000 --- a/packages/graphql/database/migrations/047_optimize_balance_index.sql +++ /dev/null @@ -1,17 +0,0 @@ --- Migration 047: Add composite index for balance lookups --- --- Problem: IndexBalance fetches the latest balance per (account_hash, asset_id) pair. --- The new batched LATERAL query and the old per-pair query both use: --- WHERE account_hash = $1 AND asset_id = $2 ORDER BY _id DESC LIMIT 1 --- Without a composite index, PostgreSQL uses separate single-column indexes and --- must filter/sort remaining rows, leading to excessive I/O on the 96M+ row table. --- --- Solution: Composite index on (account_hash, asset_id, _id DESC) so each lookup --- becomes a single index seek returning exactly 1 row with no post-filter sort. --- --- Benchmark (testnet, 96M rows, 20 pairs): --- Before (per-pair loop, no composite index): ~N × index scan + sort per pair --- After (batched LATERAL + this index): 0.3ms, 1 row fetched per pair, no sort - -CREATE INDEX CONCURRENTLY IF NOT EXISTS balance_account_asset_id_idx -ON indexer.balance (account_hash, asset_id, _id DESC); diff --git a/packages/graphql/database/migrations/048_drop_unused_recent_account_transactions_mv.sql b/packages/graphql/database/migrations/048_drop_unused_recent_account_transactions_mv.sql deleted file mode 100644 index b9badc410..000000000 --- a/packages/graphql/database/migrations/048_drop_unused_recent_account_transactions_mv.sql +++ /dev/null @@ -1,11 +0,0 @@ --- Migration 048: Drop unused recent_account_transactions_mv --- --- This MV was created in migration 030 to optimize account transaction searches. --- It is not queried anywhere in the codebase — confirmed by grep of all source files. --- The 4-hour refresh job scans 7 days of transactions_accounts + transactions --- and shows up as the #3 load query in Performance Insights despite zero consumers. - -DELETE FROM indexer.database_jobs -WHERE query LIKE '%recent_account_transactions_mv%'; - -DROP MATERIALIZED VIEW IF EXISTS indexer.recent_account_transactions_mv CASCADE; diff --git a/packages/graphql/database/migrations/049_drop_unused_redundant_indexes.sql b/packages/graphql/database/migrations/049_drop_unused_redundant_indexes.sql deleted file mode 100644 index 1dcdc2d48..000000000 --- a/packages/graphql/database/migrations/049_drop_unused_redundant_indexes.sql +++ /dev/null @@ -1,25 +0,0 @@ --- Migration 049: Drop unused redundant indexes --- --- Each index below has 0 (or 1) scans in pg_stat_user_indexes, is not backed --- by a UNIQUE/PK constraint, and is either an exact-column duplicate of --- another index or fully covered as a leading-column prefix of a wider --- composite. Dropping them changes no current query plan and removes the --- corresponding write amplification. - --- Non-unique duplicate of UNIQUE blocks_id_key (constraint). -DROP INDEX CONCURRENTLY IF EXISTS indexer.blocks_id_idx1; - --- Single-column (_id) covered by leading column of the composite PK --- (_id, block_id, tx_hash, account_hash). -DROP INDEX CONCURRENTLY IF EXISTS indexer.transactions_accounts__id_idx; - --- Non-unique duplicate of inputs_pkey on (_id). -DROP INDEX CONCURRENTLY IF EXISTS indexer.inputs__id_idx1; - --- Single-column (tx_hash) covered by leading column of the composite UNIQUE --- balance_tx_hash_account_hash_asset_id_idx (tx_hash, account_hash, asset_id). -DROP INDEX CONCURRENTLY IF EXISTS indexer.balance_tx_hash_idx; - --- Identical column definition to balance_account_asset_id_idx2 --- on (account_hash, asset_id, _id DESC) — the latter is the one in active use. -DROP INDEX CONCURRENTLY IF EXISTS indexer.balance_account_hash_asset_id__id_idx; diff --git a/packages/graphql/database/migrations/050_tune_autovacuum_large_tables.sql b/packages/graphql/database/migrations/050_tune_autovacuum_large_tables.sql deleted file mode 100644 index 3294b4ef7..000000000 --- a/packages/graphql/database/migrations/050_tune_autovacuum_large_tables.sql +++ /dev/null @@ -1,31 +0,0 @@ --- Migration 050: Tune autovacuum thresholds for large tables --- --- The default autovacuum scale factors (vacuum=0.1, analyze=0.05) require --- autovacuum to wait for ~10% of the table to change before vacuuming and ~5% --- before analyzing. On tables with hundreds of millions to billions of rows --- this means autovacuum and autoanalyze rarely (or never) fire on the normal --- write churn pattern, leaving stats stale and dead tuples accumulating. --- --- Per-table overrides below scale the trigger thresholds proportionally to --- table size so they fire on a more reasonable absolute change. - --- 1.92B rows, default analyze trigger ~96M rows of churn. -ALTER TABLE indexer.transactions_accounts - SET (autovacuum_vacuum_scale_factor = 0.005, - autovacuum_analyze_scale_factor = 0.001); - --- 5.01B rows, default analyze trigger ~250M rows of churn. -ALTER TABLE indexer.inputs - SET (autovacuum_vacuum_scale_factor = 0.005, - autovacuum_analyze_scale_factor = 0.001); - --- 548M rows, default analyze trigger ~27M rows of churn. -ALTER TABLE indexer.transactions - SET (autovacuum_vacuum_scale_factor = 0.005, - autovacuum_analyze_scale_factor = 0.001); - --- 462M rows with steady UPDATE churn (1%+ dead tuples observed) — slightly --- looser than the insert-mostly tables above. -ALTER TABLE indexer.balance - SET (autovacuum_vacuum_scale_factor = 0.01, - autovacuum_analyze_scale_factor = 0.005); diff --git a/packages/graphql/ecosystem-dev.config.cjs b/packages/graphql/ecosystem-dev.config.cjs deleted file mode 100644 index cdd016afc..000000000 --- a/packages/graphql/ecosystem-dev.config.cjs +++ /dev/null @@ -1,77 +0,0 @@ -const IS_DEBUG = process.env.DEBUG; -const APP = process.env.APP; - -const commonOptions = { - interpreter: 'tsx', - node_args: IS_DEBUG ? ['--inspect-brk'] : [], - // watch: true, - ignore_watch: ['node_modules', './src/**/*.gen.js'], -}; - -module.exports = { - apps: [ - ...(APP === 'graphql' - ? [ - { - ...commonOptions, - name: 'graphql', - script: './src/app.ts', - }, - ] - : []), - ...(APP === 'syncer' - ? [ - { - ...commonOptions, - name: 'syncer', - script: './src/syncer.ts', - }, - ] - : []), - ...(APP === 'assets' - ? [ - { - ...commonOptions, - name: 'assets', - script: './src/assets.ts', - }, - ] - : []), - ...(APP === 'balance' - ? [ - { - ...commonOptions, - name: 'balance', - script: './src/balance.ts', - }, - ] - : []), - ...(APP === 'l1' - ? [ - { - ...commonOptions, - name: 'l1', - script: './src/l1.ts', - }, - ] - : []), - ...(APP === 'cosmos' - ? [ - { - ...commonOptions, - name: 'cosmos', - script: './src/cosmos.ts', - }, - ] - : []), - ...(APP === 'jobs' - ? [ - { - ...commonOptions, - name: 'jobs', - script: './src/jobs.ts', - }, - ] - : []), - ], -}; diff --git a/packages/graphql/ecosystem-prod-api.config.cjs b/packages/graphql/ecosystem-prod-api.config.cjs deleted file mode 100644 index 27b7f040a..000000000 --- a/packages/graphql/ecosystem-prod-api.config.cjs +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = { - apps: [ - { - name: 'graphql', - script: './dist/app.js', - mode: 'cluster', - instances: '8', - }, - ], -}; diff --git a/packages/graphql/ecosystem-prod-syncer.config.cjs b/packages/graphql/ecosystem-prod-syncer.config.cjs deleted file mode 100644 index b8750d5fa..000000000 --- a/packages/graphql/ecosystem-prod-syncer.config.cjs +++ /dev/null @@ -1,40 +0,0 @@ -module.exports = { - apps: [ - { - name: 'syncer', - script: './dist/syncer.js', - mode: 'cluster', - instances: '1', - }, - { - name: 'assets', - script: './dist/assets.js', - mode: 'cluster', - instances: '1', - }, - { - name: 'balance', - script: './dist/balance.js', - mode: 'cluster', - instances: '1', - }, - { - name: 'l1', - script: './dist/l1.js', - mode: 'cluster', - instances: '1', - }, - { - name: 'cosmos', - script: './dist/cosmos.js', - mode: 'cluster', - instances: '1', - }, - { - name: 'jobs', - script: './dist/jobs.js', - mode: 'cluster', - instances: '1', - }, - ], -}; diff --git a/packages/graphql/ecosystem.config.cjs b/packages/graphql/ecosystem.config.cjs deleted file mode 100644 index c29608c5a..000000000 --- a/packages/graphql/ecosystem.config.cjs +++ /dev/null @@ -1,22 +0,0 @@ -module.exports = { - apps: [ - { - name: 'graphql', - script: './dist/app.js', - mode: 'cluster', - instances: '8', - }, - { - name: 'syncer', - script: './dist/syncer.js', - mode: 'cluster', - instances: '1', - }, - { - name: 'timer', - script: './dist/timer.js', - mode: 'cluster', - instances: '1', - }, - ], -}; diff --git a/packages/graphql/explorer_backend_indexer_architecture.png b/packages/graphql/explorer_backend_indexer_architecture.png deleted file mode 100644 index 91ef13fc8..000000000 Binary files a/packages/graphql/explorer_backend_indexer_architecture.png and /dev/null differ diff --git a/packages/graphql/jest.config.ts b/packages/graphql/jest.config.ts deleted file mode 100644 index 98f0d96be..000000000 --- a/packages/graphql/jest.config.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Config } from '@jest/types'; - -const config: Config.InitialOptions = { - testEnvironment: 'node', - roots: ['/src'], - testMatch: [ - '**/__tests__/**/*.+(ts|tsx|js)', - '**/?(*.)+(spec|test).+(ts|tsx|js)', - ], - transform: { - '^.+\\.(t|j)sx?$': '@swc/jest', - }, - moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], - collectCoverage: false, - coverageDirectory: 'coverage', - coverageReporters: ['text', 'lcov'], - verbose: true, - moduleNameMapper: { - '^~/(.*)$': '/src/$1', - }, -}; - -export default config; diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 53ec21995..68caa560b 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -24,30 +24,8 @@ "build:sdk": "tsup", "ts:check": "tsc --noEmit", "codegen": "run-s codegen:*", - "run-dev": "npx tsx watch src/app.ts", - "run-dev:syncer": "npx tsx watch src/syncer.ts", - "run-dev:cosmos": "npx tsx watch src/cosmos.ts", - "run-dev:all": "run-p run-dev run-dev:syncer run-dev:cosmos", - "run-start": "npx tsx src/app.ts", "codegen:gql-fuelcore": "gqlg --schemaFilePath ./src/graphql/schemas/fuelcore.graphql --destDirPath ./src/graphql/generated/fuelcore --ext graphql --includeCrossReferences --depthLimit 6", - "codegen:sdk": "gql-gen -r dotenv/config --config codegen.sdk.ts", - "dev:graphql": "APP=graphql pm2 start ecosystem-dev.config.cjs", - "dev:syncer": "APP=syncer pm2 start ecosystem-dev.config.cjs", - "dev:timer": "APP=timer pm2 start ecosystem-dev.config.cjs", - "pm2:start": "pm2 start ecosystem.config.cjs --update-env", - "pm2:restart": "pm2 restart ecosystem.config.cjs --update-env", - "pm2:reset": "pm2 delete ecosystem.config.cjs && pnpm server:start", - "pm2:stop": "pm2 stop ecosystem.config.cjs", - "pm2:delete": "pm2 delete ecosystem.config.cjs", - "server:start": "pm2-runtime ecosystem.config.cjs", - "start:api": "pm2-runtime ecosystem-prod-api.config.cjs", - "start:syncer": "pm2-runtime ecosystem-prod-syncer.config.cjs", - "db:migrate": "tsx ./scripts/migrate.ts", - "db:migrate:dry": "tsx ./scripts/migrate.ts --dry-run", - "db:migrate:status": "tsx ./scripts/migrate.ts --status", - "db:migrate:setup": "tsx ./scripts/setup-migrations.ts", - "test": "jest --config jest.config.ts", - "test:watch": "jest --config jest.config.ts --watch" + "codegen:sdk": "gql-gen -r dotenv/config --config codegen.sdk.ts" }, "peerDependencies": { "graphql": ">=16.10.0", @@ -55,42 +33,15 @@ "graphql-tag": ">=2.12.6" }, "dependencies": { - "app-commons": "workspace:*", - "@fuel-infrastructure/fuelsequencerjs": "0.0.14", - "@graphql-tools/load": "8.0.2", - "@graphql-tools/load-files": "7.0.0", - "@graphql-tools/merge": "9.0.4", - "@graphql-tools/schema": "10.0.4", - "@graphql-tools/stitch": "^9.2.10", - "@graphql-tools/utils": "^10.2.3", - "@types/cors": "^2.8.17", - "bignumber.js": "9.1.2", - "commander": "12.1.0", - "cors": "^2.8.5", "dayjs": "1.11.11", "dotenv": "16.4.5", "drizzle-orm": "^0.31.2", - "ethers": "^6.13.1", - "express": "5.0.0", "graphql": "16.10.0", - "graphql-yoga": "5.6.0", - "kafkajs": "2.2.4", "lodash": "^4.17.21", - "node-fetch": "3.3.2", "npm-run-all": "^4.1.5", - "pg": "^8.12.0", - "pg-boss": "9.0.3", - "pg-promise": "11.9.1", - "pino": "9.2.0", - "pino-pretty": "11.2.1", - "pm2": "^5.4.1", "shallow-equal-object": "1.1.1", "tai64": "^1.0.0", - "winston": "3.13.0", - "xstate": "^5.14.0", - "yargs": "17.7.2", - "zod": "3.23.8", - "bech32": "2.0.0" + "zod": "3.23.8" }, "devDependencies": { "@fuels/ts-config": "0.26.0", @@ -101,17 +52,9 @@ "@graphql-codegen/typescript-graphql-request": "^6.2.0", "@graphql-codegen/typescript-operations": "^4.2.2", "@graphql-tools/graphql-file-loader": "8.0.1", - "@swc/core": "1.4.1", - "@swc/jest": "0.2.36", - "@testcontainers/postgresql": "10.10.0", "@types/fs-extra": "11.0.4", - "@types/jest": "29.5.12", "@types/lodash": "4.17.6", "@types/node": "^20.14.9", - "@types/pg": "^8.11.6", - "@types/yargs": "17.0.32", - "chalk": "5.3.0", - "drizzle-kit": "^0.22.8", "fs-extra": "11.2.0", "gql-generator": "2.0.0", "graphql": "16.10.0", @@ -119,8 +62,6 @@ "graphql-config": "5.0.3", "graphql-request": "6.1.0", "graphql-tag": "^2.12.6", - "jest": "29.7.0", - "testcontainers": "10.10.0", "tsup": "8.1.0", "tsx": "4.16.0", "typescript": "^5.5.2" diff --git a/packages/graphql/scripts/migrate.ts b/packages/graphql/scripts/migrate.ts deleted file mode 100755 index 2989ddab7..000000000 --- a/packages/graphql/scripts/migrate.ts +++ /dev/null @@ -1,322 +0,0 @@ -#!/usr/bin/env tsx -/** - * Database Migration Runner - * - * Reads all .sql files from database/migrations/ and executes pending ones. - * Tracks executed migrations in {schema}._migrations table. - * Statements execute individually (like psql -f), with graceful error handling. - */ - -import fs from 'node:fs'; -import path from 'node:path'; -import { DatabaseConnection } from '../src/infra/database/DatabaseConnection'; - -interface MigrationRecord { - id: number; - filename: string; - executed_at: Date; -} - -export const DB_SCHEMA = process.env.DB_SCHEMA || 'indexer'; -export const MIGRATIONS_DIR = path.join(__dirname, '../database/migrations'); - -export class MigrationRunner { - private db: DatabaseConnection; - - constructor() { - this.db = DatabaseConnection.getInstance(); - } - - /** - * Ensure migrations tracking table exists - */ - async ensureMigrationsTable(): Promise { - // Check if schema exists first (don't create - let migrations handle it) - const schemaExists = await this.db.query( - 'SELECT 1 FROM information_schema.schemata WHERE schema_name = $1', - [DB_SCHEMA], - ); - - if (schemaExists.length === 0) { - // Schema doesn't exist yet - will be created by first migration - return; - } - - const sql = ` - CREATE TABLE IF NOT EXISTS ${DB_SCHEMA}._migrations ( - id SERIAL PRIMARY KEY, - filename VARCHAR(255) NOT NULL UNIQUE, - executed_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP - ); - `; - await this.db.query(sql, []); - } - - /** - * Get list of executed migrations - */ - async getExecutedMigrations(): Promise> { - try { - // Check if schema exists first - const schemaExists = await this.db.query( - 'SELECT 1 FROM information_schema.schemata WHERE schema_name = $1', - [DB_SCHEMA], - ); - if (schemaExists.length === 0) { - return new Set(); - } - - const result = await this.db.query( - `SELECT filename FROM ${DB_SCHEMA}._migrations ORDER BY filename`, - [], - ); - return new Set(result.map((r: MigrationRecord) => r.filename)); - } catch { - return new Set(); - } - } - - /** - * Get all migration files sorted by filename - */ - async getAllMigrationFiles(): Promise { - // Check if migrations directory exists - if (!fs.existsSync(MIGRATIONS_DIR)) { - console.log(`Creating migrations directory: ${MIGRATIONS_DIR}`); - fs.mkdirSync(MIGRATIONS_DIR, { recursive: true }); - return []; - } - - const files = fs - .readdirSync(MIGRATIONS_DIR) - .filter((file) => file.endsWith('.sql')) - .sort(); // Lexicographic sort (001, 002, etc.) - - return files; - } - - /** - * Get pending migrations - */ - async getPendingMigrations(): Promise { - const executed = await this.getExecutedMigrations(); - const allFiles = await this.getAllMigrationFiles(); - return allFiles.filter((file) => !executed.has(file)); - } - - /** - * Execute a single migration with schema replacement - */ - async executeMigration(filename: string, dryRun = false): Promise { - const filePath = path.join(MIGRATIONS_DIR, filename); - let sql = fs.readFileSync(filePath, 'utf-8'); - - // Replace schema references if DB_SCHEMA is different - if (DB_SCHEMA !== 'indexer') { - sql = sql.replace(/\bindexer\./g, `${DB_SCHEMA}.`); - sql = sql.replace( - /CREATE SCHEMA IF NOT EXISTS indexer/g, - `CREATE SCHEMA IF NOT EXISTS ${DB_SCHEMA}`, - ); - } - - if (dryRun) { - console.log(`\n[DRY RUN] Would execute: ${filename}`); - console.log('─'.repeat(80)); - console.log(sql.slice(0, 500) + (sql.length > 500 ? '...' : '')); - console.log('─'.repeat(80)); - return; - } - - // Split into statements and execute individually (like psql -f) - const statements = sql - .split(';') - .map((s) => s.trim()) - .filter((s) => { - if (s.length === 0) return false; - // Remove pure comment blocks (all lines start with --) - const lines = s - .split('\n') - .map((l) => l.trim()) - .filter((l) => l.length > 0); - return lines.some((line) => !line.startsWith('--')); - }); - - const total = statements.length; - for (let i = 0; i < statements.length; i++) { - const statement = statements[i]; - const preview = statement.replace(/\s+/g, ' ').slice(0, 60); - process.stdout.write(` [${i + 1}/${total}] ${preview}...`); - const stmtStart = Date.now(); - try { - await this.db.query(statement, []); - console.log(` ${Date.now() - stmtStart}ms`); - } catch (error: any) { - // Ignore common non-fatal errors (match psql -f behavior) - const ignorable = - error.code === '23505' || // duplicate key - error.code === '42P07' || // relation already exists - error.code === '42710' || // object already exists - error.code === '42704' || // role/object does not exist (for GRANT) - error.code === '42P01' || // relation does not exist - error.code === '0A000' || // cannot alter type used by view - error.message?.includes('already exists') || - error.message?.includes('does not exist') || - error.message?.includes('cannot alter type'); - if (ignorable) { - console.log(` skipped (${error.code || 'exists'})`); - } else { - console.log(' FAILED'); - throw new Error(`Failed to execute ${filename}: ${error.message}`); - } - } - } - - // Ensure _migrations table exists (schema should exist now after first migration) - await this.ensureMigrationsTable(); - - // Record successful migration - await this.db.query( - `INSERT INTO ${DB_SCHEMA}._migrations (filename) VALUES ($1)`, - [filename], - ); - } - - /** - * Run all pending migrations - */ - async run(dryRun = false): Promise { - console.log('🔍 Checking for pending migrations...\n'); - - await this.ensureMigrationsTable(); - const pending = await this.getPendingMigrations(); - - if (pending.length === 0) { - console.log('✅ No pending migrations\n'); - return; - } - - console.log(`Found ${pending.length} pending migration(s):\n`); - for (const file of pending) { - console.log(` - ${file}`); - } - console.log(''); - - if (dryRun) { - console.log('🔍 DRY RUN MODE - No changes will be made\n'); - } - - for (let i = 0; i < pending.length; i++) { - const file = pending[i]; - const startTime = Date.now(); - - console.log(`[${i + 1}/${pending.length}] Running ${file}...`); - - try { - await this.executeMigration(file, dryRun); - const duration = Date.now() - startTime; - console.log(`✅ Completed in ${duration}ms\n`); - } catch (error: any) { - console.error(`❌ Failed: ${error.message}\n`); - process.exit(1); - } - } - - if (!dryRun) { - console.log(`✅ Successfully executed ${pending.length} migration(s)\n`); - } else { - console.log( - `🔍 DRY RUN: ${pending.length} migration(s) would be executed\n`, - ); - } - } - - /** - * Show migration status - */ - async status(): Promise { - await this.ensureMigrationsTable(); - - const executed = await this.getExecutedMigrations(); - const allFiles = await this.getAllMigrationFiles(); - const pending = allFiles.filter((f) => !executed.has(f)); - - console.log('\n=== Migration Status ===\n'); - console.log(`Schema: ${DB_SCHEMA}`); - console.log(`Total migrations: ${allFiles.length}`); - console.log(`Executed: ${executed.size}`); - console.log(`Pending: ${pending.length}\n`); - - if (allFiles.length > 0) { - console.log('Migrations:'); - console.log('─'.repeat(80)); - console.log( - `${'Filename'.padEnd(50)} ${'Status'.padEnd(15)} ${'Executed'}`, - ); - console.log('─'.repeat(80)); - - for (const file of allFiles) { - const status = executed.has(file) ? '✅ executed' : '⏳ pending'; - console.log( - `${file.padEnd(50)} ${status.padEnd(15)} ${executed.has(file) ? 'Yes' : 'No'}`, - ); - } - - console.log('─'.repeat(80)); - } - - console.log(''); - } -} - -// CLI -async function main() { - const args = process.argv.slice(2); - const dryRun = args.includes('--dry-run'); - const showStatus = args.includes('--status'); - const showHelp = args.includes('--help') || args.includes('-h'); - - if (showHelp) { - console.log(` -Database Migration Runner - -Usage: - tsx scripts/migrate.ts [options] - -Options: - --dry-run Preview pending migrations without executing - --status Show migration status - --help, -h Show this help message - -Environment Variables: - DB_SCHEMA Schema to use (default: indexer) - DB_HOST Database host - DB_PORT Database port - DB_USER Database user - DB_PASS Database password - DB_NAME Database name - -Examples: - tsx scripts/migrate.ts Run pending migrations - tsx scripts/migrate.ts --dry-run Preview pending migrations - tsx scripts/migrate.ts --status Show migration status -`); - process.exit(0); - } - - const runner = new MigrationRunner(); - - try { - if (showStatus) { - await runner.status(); - } else { - await runner.run(dryRun); - } - process.exit(0); - } catch (error: any) { - console.error(`\n❌ Migration failed: ${error.message}\n`); - process.exit(1); - } -} - -main(); diff --git a/packages/graphql/scripts/run.sh b/packages/graphql/scripts/run.sh deleted file mode 100755 index d27f05cd0..000000000 --- a/packages/graphql/scripts/run.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -if [ "$1" = "api" ]; then - echo "Running API" - pnpm start:api -elif [ "$1" = "syncer" ]; then - echo "Running Syncer" - pnpm start:syncer -fi diff --git a/packages/graphql/scripts/setup-migrations.ts b/packages/graphql/scripts/setup-migrations.ts deleted file mode 100644 index cd8736549..000000000 --- a/packages/graphql/scripts/setup-migrations.ts +++ /dev/null @@ -1,128 +0,0 @@ -#!/usr/bin/env tsx -/** - * Setup _migrations table for production deployment - * - * This script populates the _migrations table with existing migration filenames - * WITHOUT re-running them. It reads the current version from the old migration - * system (indexer.migration.version) and marks migrations up to that version as applied. - * - * Usage: - * pnpm db:migrate:setup - * - * This should be run ONCE during the migration system upgrade, before - * running any new migrations with `pnpm db:migrate`. - */ - -import fs from 'node:fs'; -import { DatabaseConnection } from '../src/infra/database/DatabaseConnection'; -import { DB_SCHEMA, MIGRATIONS_DIR, MigrationRunner } from './migrate'; - -async function setupMigrations(): Promise { - const db = DatabaseConnection.getInstance(); - const runner = new MigrationRunner(); - - console.log('🔧 Setting up _migrations table...\n'); - console.log(`Schema: ${DB_SCHEMA}`); - console.log(`Migrations directory: ${MIGRATIONS_DIR}\n`); - - // Check if schema exists - const schemaExists = await db.query( - 'SELECT 1 FROM information_schema.schemata WHERE schema_name = $1', - [DB_SCHEMA], - ); - - if (schemaExists.length === 0) { - console.error(`❌ Schema "${DB_SCHEMA}" does not exist.`); - console.error( - 'Run migrations first or ensure the database has been initialized.\n', - ); - process.exit(1); - } - - // Get current version from old migration system - let currentVersion = -1; - try { - const versionResult = await db.query( - `SELECT version FROM ${DB_SCHEMA}.migration LIMIT 1`, - [], - ); - if (versionResult.length > 0) { - currentVersion = versionResult[0].version; - console.log( - `📊 Current migration version (old system): ${currentVersion}`, - ); - } - } catch { - console.log('📊 No old migration table found, will mark all as applied'); - } - - // Ensure _migrations table exists - await runner.ensureMigrationsTable(); - - // Get all migration files - const files = fs - .readdirSync(MIGRATIONS_DIR) - .filter((file) => file.endsWith('.sql')) - .sort(); - - console.log(`Found ${files.length} migration files\n`); - - // Check which are already set up - const existing = await db.query( - `SELECT filename FROM ${DB_SCHEMA}._migrations`, - [], - ); - const existingSet = new Set(existing.map((r: any) => r.filename)); - - let added = 0; - let skipped = 0; - let pending = 0; - - for (const file of files) { - // Extract migration number from filename (e.g., "001" from "001_create_schema.sql") - const match = file.match(/^(\d+)_/); - if (!match) { - console.log(`⚠️ Skipping ${file} (invalid filename format)`); - continue; - } - - const migrationNum = Number.parseInt(match[1], 10); - // Old version N corresponds to new migration N+1 - // e.g., version 31 = migrations 001-032 have been run - const maxMigrationToSetup = currentVersion + 1; - - if (existingSet.has(file)) { - console.log(`⏭️ Skipping ${file} (already exists)`); - skipped++; - } else if (currentVersion >= 0 && migrationNum > maxMigrationToSetup) { - console.log( - `⏸️ Pending ${file} (not yet applied, version ${currentVersion})`, - ); - pending++; - } else { - await db.query( - `INSERT INTO ${DB_SCHEMA}._migrations (filename) VALUES ($1)`, - [file], - ); - console.log(`✅ Added ${file}`); - added++; - } - } - - console.log( - `\n✅ Done! Added ${added}, skipped ${skipped}, pending ${pending}\n`, - ); - - if (pending > 0) { - console.log( - `Run 'pnpm db:migrate' to apply the ${pending} pending migration(s).\n`, - ); - } - - process.exit(0); -} - -setupMigrations().catch((error) => { - console.error(`\n❌ Setup failed: ${error.message}\n`); - process.exit(1); -}); diff --git a/packages/graphql/src/app.ts b/packages/graphql/src/app.ts deleted file mode 100644 index e00da295d..000000000 --- a/packages/graphql/src/app.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { env } from './config'; -import { logger } from './core/Logger'; -import { GraphQLServer } from './graphql/GraphQLServer'; -import { DatabaseConnection } from './infra/database/DatabaseConnection'; -import { DatabaseConnectionReplica } from './infra/database/DatabaseConnectionReplica'; -import { Server } from './infra/server/App'; - -(async () => { - const port = Number(env.get('SERVER_PORT')); - const graphQLServer = new GraphQLServer(); - const schema = graphQLServer.schema(); - const yoga = graphQLServer.setup(schema); - const httpServer = new Server(); - const app = await httpServer.setup(); - DatabaseConnection.getInstance(); - DatabaseConnectionReplica.getInstance(); - - app.use(yoga.graphqlEndpoint, yoga); - httpServer.listen(app, port).then(async () => { - logger.info( - 'GraphQL', - `Server is running on http://localhost:${port}${yoga.graphqlEndpoint}`, - ); - - const others = ['SIGINT', 'SIGUSR1', 'SIGUSR2', 'SIGTERM']; - //biome-ignore lint/complexity/noForEach: - others.forEach((eventType) => { - process.on(eventType, async (err) => { - logger.error('GraphQL', 'GraphQL shutdown error', err); - process.exit(1); - }); - }); - }); -})(); diff --git a/packages/graphql/src/application/uc/GetAccountAssets.ts b/packages/graphql/src/application/uc/GetAccountAssets.ts deleted file mode 100644 index f9f7c3980..000000000 --- a/packages/graphql/src/application/uc/GetAccountAssets.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { bn } from 'fuels'; -import { client } from '~/graphql/GraphQLSDK'; -import { convertToUsd } from '~/infra/dao/utils'; -import AssetGateway from '~/infra/gateway/AssetGateway'; - -export default class GetAccountAssets { - async execute(input: Input): Promise { - const assetGateway = new AssetGateway(); - const { data } = (await client.sdk.balances({ - filter: { owner: input.accountId }, - last: input.last, - })) as any; - const balances = data.balances; - const { data: chainData } = await client.sdk.chain(); - const chainId = Number(chainData.chain.consensusParameters.chainId); - const assets = []; - for (const balance of balances.nodes) { - const indexedAsset = await assetGateway.getAsset( - balance.assetId, - chainId, - ); - const asset = indexedAsset - ? Object.assign(balance, indexedAsset) - : balance; - asset.amountInUsd = asset.rate - ? convertToUsd(asset.amount, asset.decimals, asset.rate).formatted - : null; - assets.push(asset); - } - const _assets = assets.filter((asset) => !bn(asset.amount).isZero()); - return { - data: _assets, - pageInfo: { - count: _assets.length, - }, - }; - } -} - -type Input = { - accountId: string; - last: number; -}; - -type Output = { - data: { - assetId: string; - contractId: string; - amount: number; - owner: string; - symbol: string; - icon: string; - decimals: number; - suspicious: boolean; - verified: boolean; - network: []; - }[]; - pageInfo: {}; -}; diff --git a/packages/graphql/src/application/uc/GetAssetsRate.ts b/packages/graphql/src/application/uc/GetAssetsRate.ts deleted file mode 100644 index e757ff2c7..000000000 --- a/packages/graphql/src/application/uc/GetAssetsRate.ts +++ /dev/null @@ -1,26 +0,0 @@ -import DataCache from '~/infra/cache/DataCache'; -import AssetDAO from '~/infra/dao/AssetDAO'; - -export default class GetAssetsRate { - async execute(): Promise { - const assetDAO = new AssetDAO(); - const output = await assetDAO.getAssetsRate(); - return output; - } - - async executeCached(): Promise { - const cachedAssetsRate = DataCache.getInstance().get('assetsRate'); - if (cachedAssetsRate) { - return cachedAssetsRate; - } - - const output = await this.execute(); - DataCache.getInstance().save('assetsRate', 60000, output); - return output; - } -} - -type Output = { - symbol: string; - rate: number; -}; diff --git a/packages/graphql/src/application/uc/GetMetrics.ts b/packages/graphql/src/application/uc/GetMetrics.ts deleted file mode 100644 index faf130dbe..000000000 --- a/packages/graphql/src/application/uc/GetMetrics.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import { logger } from '~/core/Logger'; -import { client } from '~/graphql/GraphQLSDK'; -import BlockDAO from '~/infra/dao/BlockDAO'; - -const FUEL_CORE_TIMEOUT_MS = 5000; - -export default class GetMetrics { - private blockDAO = new BlockDAO(); - - async getFuelCoreLastBlockHeight() { - const startTime = Date.now(); - try { - const { data } = await client.sdk.blocks({ last: 1 }); - const latencyMs = Date.now() - startTime; - logger.debug('Metrics', `Fuel core response time: ${latencyMs}ms`); - const blocks = data.blocks; - const [lastBlock] = blocks.nodes; - const height = Number(lastBlock?.header.height ?? '0'); - return height; - } catch (e) { - const latencyMs = Date.now() - startTime; - logger.error('Metrics', `Fuel core request failed after ${latencyMs}ms`); - throw e; - } - } - - async getIndexerLastBlockHeight() { - return (await this.blockDAO.findLatestBlockHeight()) ?? 0; - } - - async execute(): Promise { - const indexerLastBlockHeight = await this.getIndexerLastBlockHeight(); - let fuelCoreLastBlockHeight = indexerLastBlockHeight; - let fuelCoreHealth = 1; - let fuelCoreLatencyMs = -1; - const startTime = Date.now(); - try { - const response = await Promise.race([ - this.getFuelCoreLastBlockHeight(), - setTimeout(FUEL_CORE_TIMEOUT_MS).then(() => null), - ]); - fuelCoreLatencyMs = Date.now() - startTime; - if (!response) { - logger.warn( - 'Metrics', - `Fuel core timeout after ${FUEL_CORE_TIMEOUT_MS}ms`, - ); - fuelCoreHealth = 0; - } else { - fuelCoreLastBlockHeight = response; - } - } catch (e: any) { - fuelCoreLatencyMs = Date.now() - startTime; - fuelCoreHealth = 0; - logger.error( - 'Metrics', - `Fuel core error after ${fuelCoreLatencyMs}ms: ${e.message}`, - ); - } - const indexerBlockHeightDelay = - fuelCoreLastBlockHeight - indexerLastBlockHeight; - const indexerHealth = indexerBlockHeightDelay < 100 ? 1 : 0; - return { - explorer_indexer_fuel_core_last_block_height: fuelCoreLastBlockHeight, - explorer_indexer_last_block_height_synced: indexerLastBlockHeight, - explorer_indexer_block_height_sync_delay: indexerBlockHeightDelay, - explorer_indexer_health: indexerHealth, - explorer_indexer_fuel_core_health: fuelCoreHealth, - explorer_indexer_fuel_core_latency_ms: fuelCoreLatencyMs, - }; - } -} diff --git a/packages/graphql/src/application/uc/GetTransaction.ts b/packages/graphql/src/application/uc/GetTransaction.ts deleted file mode 100644 index 2b961f989..000000000 --- a/packages/graphql/src/application/uc/GetTransaction.ts +++ /dev/null @@ -1,131 +0,0 @@ -import { concat, hash } from 'fuels'; -import type { GQLOperationReceipt } from '~/graphql/generated/sdk-provider'; -import TransactionDAO from '~/infra/dao/TransactionDAO'; -import { convertToUsd } from '~/infra/dao/utils'; -import AssetGateway from '~/infra/gateway/AssetGateway'; - -export default class GetTransaction { - assetGateway: AssetGateway; - - constructor() { - this.assetGateway = new AssetGateway(); - } - - async execute(id: string, chainId?: number, baseAssetId?: string) { - const transactionDAO = new TransactionDAO(); - const transaction = await transactionDAO.getByHash(id); - if (!transaction) return; - if (chainId === undefined || chainId === null) { - const output = transaction?.toGQLNode(); - return output; - } - for (const groupedInputs of transaction.groupedInputs) { - if (!groupedInputs.inputs) continue; - for (const input of groupedInputs.inputs) { - if (input.__typename === 'InputCoin') { - const asset = await this.assetGateway.getAsset( - input.assetId, - chainId, - ); - this.mergeAssetProps(input, asset); - } - } - } - for (const output of transaction.data.outputs) { - if ( - output && - (output.__typename === 'CoinOutput' || - output.__typename === 'ChangeOutput' || - output.__typename === 'VariableOutput') - ) { - const asset = await this.assetGateway.getAsset(output.assetId, chainId); - this.mergeAssetProps(output, asset); - } - } - for (const operation of transaction.operations) { - if (!operation.receipts) continue; - await this.parseOperationsR(operation.receipts, chainId); - } - if (transaction.data.isMint && transaction.data.mintAssetId) { - const asset = await this.assetGateway.getAsset( - transaction.data.mintAssetId, - chainId, - ); - - transaction.data.mintedAsset = { - __typename: 'Asset', - }; - this.mergeAssetProps(transaction.data.mintedAsset, asset); - } - const output = transaction?.toGQLNode(); - if (baseAssetId && output.gasCosts?.fee) { - const baseAsset = await this.assetGateway.getAsset(baseAssetId, chainId); - const feeInUsd = convertToUsd( - output.gasCosts.fee, - baseAsset.decimals, - baseAsset.rate, - ); - output.gasCosts.feeInUsd = feeInUsd?.formatted; - } - return output; - } - - mergeAssetProps(target: any, asset: Asset) { - if (!asset) return; - target.assetId = asset.assetId; - target.name = asset.name; - target.symbol = asset.symbol; - target.icon = asset.icon; - target.contractId = asset.contractId; - target.decimals = asset.decimals; - target.suspicious = asset.suspicious; - target.rate = asset.rate; - const usdAmount = convertToUsd( - target.amount, - Number(asset.decimals), - asset.rate, - ); - target.amountInUsd = usdAmount?.formatted; - } - - async parseOperationsR(receipts: GQLOperationReceipt[], chainId: number) { - if (!receipts) return; - for (const receipt of receipts) { - if ( - receipt.item && - receipt.item.receiptType === 'MINT' && - receipt.item.id && - receipt.item.subId - ) { - const assetId = hash(concat([receipt.item.id, receipt.item.subId])); - const asset = await this.assetGateway.getAsset(assetId, chainId); - this.mergeAssetProps(receipt.item, asset); - } - if ( - receipt.item && - receipt.item.receiptType === 'TRANSFER_OUT' && - receipt.item.assetId - ) { - const asset = await this.assetGateway.getAsset( - receipt.item.assetId, - chainId, - ); - this.mergeAssetProps(receipt.item, asset); - } - if (receipt.receipts) { - this.parseOperationsR(receipt.receipts, chainId); - } - } - } -} - -type Asset = { - assetId: string; - name: string; - symbol: string; - icon: string; - contractId: string; - decimals: string; - suspicious: boolean; - rate: number; -}; diff --git a/packages/graphql/src/application/uc/IndexAsset/GetAssetDetails.ts b/packages/graphql/src/application/uc/IndexAsset/GetAssetDetails.ts deleted file mode 100644 index e656d5ee7..000000000 --- a/packages/graphql/src/application/uc/IndexAsset/GetAssetDetails.ts +++ /dev/null @@ -1,110 +0,0 @@ -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import DataCache from '~/infra/cache/DataCache'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -export interface AssetDetails { - market_cap: number; - circulating_supply: number; - total_supply: number; - max_supply: number; - fully_diluted_valuation: number; - description: string; - links: { - homepage: string[]; - whitepaper: string; - github: string[]; - reddit: string; - twitter: string; - official_forum: string[]; - }; - block_time_in_minutes: number; - hashing_algorithm: string; - genesis_date: string; -} - -export default class GetAssetDetails { - async execute(symbol: string): Promise { - logger.debug('GetAssetDetails', `Fetching details for asset: ${symbol}`); - - try { - // Get CoinGecko ID from database - const connection = DatabaseConnection.getInstance(); - const [mapping] = await connection.query( - 'select value from indexer.assets_rate_provider where symbol = $1', - [symbol], - ); - - if (!mapping) { - logger.error( - 'GetAssetDetails', - `Asset not found in rate provider: ${symbol}`, - ); - return null; - } - - const coingeckoId = mapping.value; - - const response = await fetch( - `https://pro-api.coingecko.com/api/v3/coins/${coingeckoId}`, - { - headers: { - Accept: 'application/json', - 'x-cg-pro-api-key': env.get('COINGECKO_API_KEY') || '', - }, - }, - ); - - if (!response.ok) { - logger.error( - 'GetAssetDetails', - `Failed to fetch asset details: ${response.status} ${response.statusText}`, - ); - return null; - } - - const rawData = await response.json(); - - // Filter and transform the response to only include requested fields - const filteredData: AssetDetails = { - market_cap: rawData.market_data?.market_cap?.usd || 0, - circulating_supply: rawData.market_data?.circulating_supply || 0, - total_supply: rawData.market_data?.total_supply || 0, - max_supply: rawData.market_data?.max_supply || 0, - fully_diluted_valuation: - rawData.market_data?.fully_diluted_valuation?.usd || 0, - description: rawData.description?.en || '', - links: { - homepage: rawData.links?.homepage || [], - whitepaper: rawData.links?.whitepaper || '', - github: rawData.links?.repos_url?.github || [], - reddit: rawData.links?.subreddit_url || '', - twitter: rawData.links?.twitter_screen_name || '', - official_forum: rawData.links?.official_forum_url || [], - }, - block_time_in_minutes: rawData.block_time_in_minutes || 0, - hashing_algorithm: rawData.hashing_algorithm || '', - genesis_date: rawData.genesis_date || '', - }; - - return filteredData; - } catch (error) { - logger.error('GetAssetDetails', `Error fetching asset details: ${error}`); - return null; - } - } - - async executeCached(assetId: string): Promise { - const cacheKey = `assetDetails_${assetId}`; - const cachedAssetDetails = DataCache.getInstance().get(cacheKey); - if (cachedAssetDetails) { - return cachedAssetDetails; - } - - const output = await this.execute(assetId); - if (output) { - DataCache.getInstance().save(cacheKey, 60000, output); - } - return output; - } -} diff --git a/packages/graphql/src/application/uc/IndexAsset/IndexAsset.ts b/packages/graphql/src/application/uc/IndexAsset/IndexAsset.ts deleted file mode 100644 index 2c284984c..000000000 --- a/packages/graphql/src/application/uc/IndexAsset/IndexAsset.ts +++ /dev/null @@ -1,162 +0,0 @@ -import { Interface, concat, hash } from 'fuels'; -import { Contract, Provider } from 'fuels'; -import { bn } from 'fuels'; -import { env } from '~/config'; -import { abi } from '~/infra/abi/SRC7Abi'; -import type Transaction from '~/infra/dao/Transaction'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; -import NFTIndexer from './NFTIndexer'; - -export default class IndexAsset { - provider?: Provider; - loggedTypes = [ - '10032608944051208538', - '4237256875605624201', - '17462098202904023478', - '17188485204969729195', - '16139176946940135860', - '13791596350235125220', - '14321618427101975361', - '7845998088195677205', - '12152039456660331088', - '17415926155927968170', - '4571204900286667806', - '2161305517876418151', - '16280289466020123285', - ]; - - async execute(transaction: Transaction) { - if (!this.provider) { - const providerUrl = env.get('FUEL_PROVIDER'); - if (!providerUrl) { - throw new Error('FUEL_PROVIDER is not set'); - } - this.provider = new Provider(providerUrl); - } - let index = 1; - const connection = DatabaseConnection.getInstance(); - if (transaction.data.status?.receipts) { - for (const receipt of transaction.data.status.receipts) { - if (receipt.receiptType === 'MINT' && receipt.id && receipt.subId) { - const _id = `${transaction.id}-${new String(index++).padStart( - 8, - '0', - )}`; - const assetId = hash(concat([receipt.id, receipt.subId])); - const asset = { - assetId, - contractId: receipt.id, - transactionId: transaction.data.id, - subId: receipt.subId, - name: null, - symbol: null, - decimals: null, - totalSupply: null, - error: null, - blockId: transaction.blockId, - _id, - metadata: {} as any, - }; - const existingAssetContract = await connection.query( - 'select * from indexer.assets_contracts where asset_id = $1 and contract_id = $2', - [asset.assetId, asset.contractId], - ); - if (existingAssetContract.length > 0) { - continue; - } - try { - const contract = new Contract(receipt.id, abi, this.provider); - const assetBits = { bits: assetId }; - try { - const { value: results } = await contract - .multiCall([ - contract.functions.name(assetBits), - contract.functions.symbol(assetBits), - contract.functions.decimals(assetBits), - contract.functions.total_supply(assetBits), - contract.functions.metadata(assetBits, 'uri'), - ]) - .dryRun(); - asset.name = results[0]; - asset.symbol = results[1]; - asset.decimals = results[2]; - asset.totalSupply = bn(results[3]).toString() as any; - if (results[4]?.String) { - asset.metadata.uri = results[4].String; - } - } catch { - const [name, symbol, decimals, supply] = await Promise.allSettled( - [ - contract.functions.name(assetBits).dryRun(), - contract.functions.symbol(assetBits).dryRun(), - contract.functions.decimals(assetBits).dryRun(), - contract.functions.total_supply(assetBits).dryRun(), - ], - ); - if (name.status === 'fulfilled') asset.name = name.value.value; - if (symbol.status === 'fulfilled') - asset.symbol = symbol.value.value; - if (decimals.status === 'fulfilled') - asset.decimals = decimals.value.value; - if (supply.status === 'fulfilled') - asset.totalSupply = bn(supply.value.value).toString() as any; - try { - const { value } = await contract.functions - .metadata(assetBits, 'uri') - .dryRun(); - if (value?.String) asset.metadata.uri = value.String; - } catch {} - } - } catch (e: any) { - asset.error = e.message; - } - try { - await connection.query( - 'insert into indexer.assets_contracts (asset_id, contract_id, transaction_id, sub_id, name, symbol, decimals, error, block_id, _id, metadata, total_supply) values ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) on conflict do nothing', - [ - asset.assetId, - asset.contractId, - asset.transactionId, - asset.subId, - asset.name, - asset.symbol, - asset.decimals, - asset.error, - asset.blockId, - asset._id, - asset.metadata, - asset.totalSupply, - ], - ); - const nftIndexer = new NFTIndexer(); - await nftIndexer.execute(asset); - } catch (_e: any) {} - } - } - for (const receipt of transaction.data.status.receipts) { - if (receipt.receiptType === 'LOG_DATA') { - if (this.loggedTypes.includes(receipt.rb)) { - const contract = new Interface(abi); - const [log] = contract.decodeLog(receipt.data, receipt.rb); - if (log && Object.keys(log).includes('metadata')) { - const assetId = log.asset.bits; - const key = log.key; - const value = log.metadata.String; - const [asset] = await connection.query( - 'select contract_id, sub_id, metadata from indexer.assets_contracts where asset_id = $1', - [assetId], - ); - if (asset?.metadata) { - asset.metadata[key] = value; - } - await connection.query( - 'update indexer.assets_contracts set metadata = $1 where asset_id = $2', - [asset.metadata, assetId], - ); - } - } - } - } - } - } -} diff --git a/packages/graphql/src/application/uc/IndexAsset/IndexAssetsRate.ts b/packages/graphql/src/application/uc/IndexAsset/IndexAssetsRate.ts deleted file mode 100644 index 4eeeb84d2..000000000 --- a/packages/graphql/src/application/uc/IndexAsset/IndexAssetsRate.ts +++ /dev/null @@ -1,124 +0,0 @@ -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -export default class IndexAssetsRate { - async execute() { - logger.info('IndexAssetsRate', 'Starting rate indexing...'); - const connection = DatabaseConnection.getInstance(); - const mapping = await connection.query( - 'select * from indexer.assets_rate_provider', - [], - ); - logger.info( - 'IndexAssetsRate', - `Found ${mapping.length} assets in rate provider table`, - ); - - // Separate assets by provider - const coingeckoAssets = mapping.filter( - (m: any) => m.provider === 'coingecko', - ); - const cmcDexAssets = mapping.filter((m: any) => m.provider === 'cmc-dex'); - - logger.info( - 'IndexAssetsRate', - `CoinGecko: ${coingeckoAssets.length}, CMC DEX: ${cmcDexAssets.length}`, - ); - - // Fetch CoinGecko prices - if (coingeckoAssets.length > 0) { - await this.fetchCoingeckoPrices(connection, coingeckoAssets); - } - - // Fetch CMC DEX prices - if (cmcDexAssets.length > 0) { - await this.fetchCmcDexPrices(connection, cmcDexAssets); - } - - logger.info('IndexAssetsRate', 'Rate indexing complete'); - } - - private async fetchCoingeckoPrices(connection: any, assets: any[]) { - logger.info('IndexAssetsRate', 'Fetching CoinGecko prices...'); - const ids = assets.map((m: any) => m.value).join(','); - try { - const response = await fetch( - `https://pro-api.coingecko.com/api/v3/simple/price?vs_currencies=usd&ids=${ids}`, - { - headers: { - Accept: 'application/json', - 'x-cg-pro-api-key': env.get('COINGECKO_API_KEY') || '', - }, - }, - ); - const data = await response.json(); - logger.debug( - 'IndexAssetsRate', - `CoinGecko response: ${JSON.stringify(data).slice(0, 200)}...`, - ); - - let successCount = 0; - for (const asset of assets) { - const rate = data[asset.value]?.usd; - if (rate) { - await connection.query( - 'insert into indexer.assets_rates (asset_id, symbol, rate, timestamp) values ($1, $2, $3, $4)', - [asset.asset_id, asset.symbol, rate, new Date()], - ); - successCount++; - } - } - logger.info( - 'IndexAssetsRate', - `CoinGecko: saved ${successCount}/${assets.length} rates`, - ); - } catch (error) { - logger.error('IndexAssetsRate', `CoinGecko fetch failed: ${error}`); - } - } - - private async fetchCmcDexPrices(connection: any, assets: any[]) { - logger.info('IndexAssetsRate', 'Fetching CMC DEX prices...'); - for (const asset of assets) { - try { - const url = `https://dapi.coinmarketcap.com/u-kline/v1/k-line/candles?platform=${encodeURIComponent(asset.value)}&address=${asset.asset_id}&unit=usd&pm=p&interval=1h&limit=1`; - logger.debug( - 'IndexAssetsRate', - `CMC DEX request: ${asset.symbol} -> ${url}`, - ); - - const response = await fetch(url, { - headers: { - Accept: 'application/json', - }, - }); - const data = await response.json(); - logger.debug( - 'IndexAssetsRate', - `CMC DEX response for ${asset.symbol}: ${JSON.stringify(data)}`, - ); - - // Extract close price from the latest candle [open, high, low, close, volume, timestamp] - const rate = data?.data?.[0]?.[3]; - if (rate) { - await connection.query( - 'insert into indexer.assets_rates (asset_id, symbol, rate, timestamp) values ($1, $2, $3, $4)', - [asset.asset_id, asset.symbol, rate, new Date()], - ); - logger.info('IndexAssetsRate', `CMC DEX: ${asset.symbol} = $${rate}`); - } else { - logger.info( - 'IndexAssetsRate', - `CMC DEX: No rate found for ${asset.symbol}`, - ); - } - } catch (error) { - logger.error( - 'IndexAssetsRate', - `Failed to fetch CMC DEX price for ${asset.symbol}: ${error}`, - ); - } - } - } -} diff --git a/packages/graphql/src/application/uc/IndexAsset/NFTIndexer.ts b/packages/graphql/src/application/uc/IndexAsset/NFTIndexer.ts deleted file mode 100644 index 3cd2a4de1..000000000 --- a/packages/graphql/src/application/uc/IndexAsset/NFTIndexer.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -export default class NFTIndexer { - async execute(asset: any) { - const connection = DatabaseConnection.getInstance(); - try { - const [collection] = await connection.query( - 'select * from indexer.collections where contract_id = $1', - [asset.contractId], - ); - if (!collection) return; - const url = collection.url.replace('{subId}', Number(asset.subId)); - const response = await fetch(url); - const metadata = await response.json(); - asset.metadata = { - ...asset.metadata, - ...metadata, - }; - await connection.query( - 'update indexer.assets_contracts set metadata = $1 where asset_id = $2', - [asset.metadata, asset.assetId], - ); - } catch (_e: any) {} - } -} diff --git a/packages/graphql/src/application/uc/IndexBalance.ts b/packages/graphql/src/application/uc/IndexBalance.ts deleted file mode 100644 index 155b3c398..000000000 --- a/packages/graphql/src/application/uc/IndexBalance.ts +++ /dev/null @@ -1,147 +0,0 @@ -import BigNumber from 'bignumber.js'; -import { logger } from '~/core/Logger'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -export default class IndexBalance { - async execute() { - logger.debug('Balance', 'IndexBalance'); - const connection = DatabaseConnection.getInstance(); - const [data] = await connection.query( - 'select block_height as height from indexer.balance_index', - [], - ); - let height = data.height; - while (true) { - const [block] = await connection.query( - `select _id as height, data->'transactions' as transactions from indexer.blocks where _id > $1 and jsonb_array_length(data->'transactions') > 1 order by _id limit 1`, - [height], - ); - if (!block) { - return; - } - await connection.query( - 'delete from indexer.balance where block_height = $1', - [block.height], - ); - - // Collect all (account, asset) pairs across all transactions in this block - const pairs: { accountHash: string; assetId: string }[] = []; - for (const transaction of block.transactions) { - transaction.inputs = transaction.inputs || []; - transaction.outputs = transaction.outputs || []; - for (const input of transaction.inputs) { - if (input.__typename === 'InputCoin') { - pairs.push({ accountHash: input.owner, assetId: input.assetId }); - } - } - for (const output of transaction.outputs) { - if ( - ['ChangeOutput', 'CoinOutput', 'VariableOutput'].includes( - output.__typename, - ) - ) { - pairs.push({ accountHash: output.to, assetId: output.assetId }); - } - } - } - - // Batch fetch latest balance for all (account, asset) pairs in one query - const balanceMap = new Map(); - if (pairs.length > 0) { - const uniquePairs = [ - ...new Map( - pairs.map((p) => [`${p.accountHash}:${p.assetId}`, p]), - ).values(), - ]; - const accountHashes = uniquePairs.map((p) => p.accountHash); - const assetIds = uniquePairs.map((p) => p.assetId); - // JOIN (not LEFT JOIN): pairs with no balance history are absent from - // the result and correctly default to BigNumber(0) via ?? below. - const rows = await connection.query( - `SELECT t.account_hash, t.asset_id, b.balance - FROM unnest($1::text[], $2::text[]) AS t(account_hash, asset_id) - JOIN LATERAL ( - SELECT balance FROM indexer.balance - WHERE account_hash = t.account_hash AND asset_id = t.asset_id - ORDER BY _id DESC LIMIT 1 - ) b ON true`, - [accountHashes, assetIds], - ); - for (const row of rows) { - balanceMap.set( - `${row.account_hash}:${row.asset_id}`, - BigNumber(row.balance), - ); - } - } - - for (const transaction of block.transactions) { - const index: any = {}; - for (const input of transaction.inputs) { - if (input.__typename === 'InputCoin') { - const event = { - type: 'input', - accountHash: input.owner, - assetId: input.assetId, - amount: input.amount, - }; - index[event.accountHash] = index[event.accountHash] || {}; - index[event.accountHash][event.assetId] = - index[event.accountHash][event.assetId] || []; - index[event.accountHash][event.assetId].push(event); - } - } - for (const output of transaction.outputs) { - if ( - ['ChangeOutput', 'CoinOutput', 'VariableOutput'].includes( - output.__typename, - ) - ) { - const event = { - type: 'output', - accountHash: output.to, - assetId: output.assetId, - amount: output.amount, - }; - index[event.accountHash] = index[event.accountHash] || {}; - index[event.accountHash][event.assetId] = - index[event.accountHash][event.assetId] || []; - index[event.accountHash][event.assetId].push(event); - } - } - for (const accountHash in index) { - for (const assetId in index[accountHash]) { - const key = `${accountHash}:${assetId}`; - let balance = balanceMap.get(key) ?? BigNumber(0); - const events = index[accountHash][assetId]; - for (const event of events) { - if (event.type === 'input') { - balance = balance.minus(BigNumber(event.amount)); - } - if (event.type === 'output') { - balance = balance.plus(BigNumber(event.amount)); - } - } - // Update map so subsequent transactions in same block see updated balance - balanceMap.set(key, balance); - await connection.query( - 'insert into indexer.balance (block_height, tx_hash, account_hash, asset_id, balance) values ($1, $2, $3, $4, $5) on conflict do nothing', - [ - block.height, - transaction.id, - accountHash, - assetId, - balance.toString(), - ], - ); - } - } - } - await connection.query( - 'update indexer.balance_index set block_height = $1', - [block.height], - ); - height = block.height; - } - } -} diff --git a/packages/graphql/src/application/uc/IndexCosmos.ts b/packages/graphql/src/application/uc/IndexCosmos.ts deleted file mode 100644 index e59cba22e..000000000 --- a/packages/graphql/src/application/uc/IndexCosmos.ts +++ /dev/null @@ -1,143 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import { env } from '~/config'; -import { COSMOS_EXCLUDED_DELEGATOR } from '~/constants/staking'; -import { logger } from '~/core/Logger'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -export default class IndexCosmos { - async execute() { - const connection = DatabaseConnection.getInstance(); - const [cosmosIndex] = await connection.query( - 'select * from indexer.cosmos_index', - [], - ); - let height = cosmosIndex.block_height; - await connection.query( - 'delete from indexer.cosmos_events where cosmos_response_id in (select _id from indexer.cosmos_responses where block_height >= $1)', - [height], - ); - await connection.query( - 'delete from indexer.cosmos_responses where block_height >= $1', - [height], - ); - while (true) { - try { - const network = env.get('FUEL_CHAIN'); - const envPrefix = network === 'mainnet' ? 'mainnet' : 'testnet'; - const response = await fetch( - `https://rest.seq.${envPrefix}.fuel.network/cosmos/tx/v1beta1/txs?query=tx.height=${height}&limit=1000&offset=0`, - ); - const output = await response.json(); - if (output.total === '0') { - logger.debug('Cosmos', `Waiting for blocks #${height}`); - await setTimeout(5000); - continue; - } - logger.debug('Cosmos', `Indexing block #${height}`); - const tx_responses = output.tx_responses; - if (!Array.isArray(tx_responses)) { - logger.debug( - 'Cosmos', - `Invalid response for block #${height}, skipping`, - ); - height++; - await connection.query( - 'update indexer.cosmos_index set block_height = $1', - [height], - ); - continue; - } - // Skip if already indexed to prevent double-counting in aggregation tables - const alreadyIndexed = await connection.query( - 'SELECT 1 FROM indexer.cosmos_responses WHERE block_height = $1 LIMIT 1', - [height], - ); - if ((alreadyIndexed as any[]).length > 0) { - logger.debug('Cosmos', `Block #${height} already indexed, skipping`); - height++; - await connection.query( - 'update indexer.cosmos_index set block_height = $1', - [height], - ); - continue; - } - - for (const tx of tx_responses) { - const [cosmosResponse] = await connection.query( - 'insert into indexer.cosmos_responses (block_height, tx_hash, data, timestamp) values ($1, $2, $3, $4) returning _id', - [tx.height, tx.txhash, tx.data, tx.timestamp], - ); - - const eventRows: any[][] = []; - let index = 0; - for (const event of tx.events) { - for (const attribute of event.attributes) { - eventRows.push([ - cosmosResponse._id, - event.type, - attribute.key, - attribute.value, - index, - ]); - } - index++; - } - - if (eventRows.length > 0) { - const batchSize = 500; - for (let i = 0; i < eventRows.length; i += batchSize) { - const batch = eventRows.slice(i, i + batchSize); - const placeholders = batch - .map( - (_, idx) => - `($${idx * 5 + 1}, $${idx * 5 + 2}, $${idx * 5 + 3}, $${idx * 5 + 4}, $${idx * 5 + 5})`, - ) - .join(', '); - const params = batch.flat(); - await connection.query( - `INSERT INTO indexer.cosmos_events (cosmos_response_id, type, key, value, index) VALUES ${placeholders}`, - params, - ); - } - } - - // Aggregate L1 delegation events into total_staking_agg - for (const event of tx.events) { - if (event.type === 'delegate') { - const delegatorAttr = event.attributes.find( - (a: any) => a.key === 'delegator', - ); - const amountAttr = event.attributes.find( - (a: any) => a.key === 'amount', - ); - if ( - delegatorAttr && - amountAttr && - delegatorAttr.value !== COSMOS_EXCLUDED_DELEGATOR - ) { - const amount = amountAttr.value.replace(/[^0-9]/g, ''); - if (amount && BigInt(amount) > 0n) { - const day = new Date(tx.timestamp) - .toISOString() - .split('T')[0]; - await connection.query( - 'INSERT INTO indexer.total_staking_agg (day, l1_staked, l2_staked) VALUES ($1, $2, 0) ON CONFLICT (day) DO UPDATE SET l1_staked = indexer.total_staking_agg.l1_staked + $2', - [day, amount], - ); - } - } - } - } - } - height++; - await connection.query( - 'update indexer.cosmos_index set block_height = $1', - [height], - ); - } catch (error: any) { - logger.debug('Cosmos', `Error indexing ${error.message}`); - await setTimeout(5000); - } - } - } -} diff --git a/packages/graphql/src/application/uc/IndexL1/IndexL1.test.ts b/packages/graphql/src/application/uc/IndexL1/IndexL1.test.ts deleted file mode 100644 index 1af297b71..000000000 --- a/packages/graphql/src/application/uc/IndexL1/IndexL1.test.ts +++ /dev/null @@ -1,151 +0,0 @@ -import IndexL1 from './IndexL1'; - -jest.mock('~/config', () => ({ - env: { get: (k: string) => (k === 'FUEL_CHAIN' ? 'mainnet' : 'test-key') }, -})); - -jest.mock('~/core/Logger', () => ({ - logger: { debug: jest.fn(), error: jest.fn(), warn: jest.fn() }, -})); - -const queryMock = jest.fn().mockResolvedValue([]); -jest.mock('~/infra/database/DatabaseConnection', () => ({ - DatabaseConnection: { - getInstance: () => ({ - query: (...args: any[]) => queryMock(...args), - }), - }, -})); - -jest.mock('node:timers/promises', () => ({ - setTimeout: jest.fn().mockResolvedValue(undefined), -})); - -beforeEach(() => { - queryMock.mockReset(); - queryMock.mockResolvedValue([]); -}); - -describe('IndexL1', () => { - it('fetches the finalized block (not latest) to drive indexing window', async () => { - const getBlock = jest - .fn() - .mockImplementation(async (tag: string | number) => { - if (tag === 'finalized') - return { number: 1000, hash: '0xabc', timestamp: 1 }; - return { number: tag as number, hash: '0xdef', timestamp: 2 }; - }); - const getLogs = jest.fn().mockResolvedValue([]); - const getBlockNumber = jest.fn().mockResolvedValue(9999); - - const fakeProvider: any = { getBlock, getLogs, getBlockNumber }; - - class TestIndexL1 extends IndexL1 { - protected createProvider() { - return fakeProvider; - } - } - - const indexer = new TestIndexL1(); - await indexer.syncContract({ - _id: 1, - block_height: 500, - contract_hash: '0x0000000000000000000000000000000000000000', - name: 'FuelMessagePortal', - }); - - expect(getBlock).toHaveBeenCalledWith('finalized'); - expect(getBlockNumber).not.toHaveBeenCalled(); - }); - - it('does not request logs past the finalized block (no +1 off-by-one)', async () => { - const finalizedNumber = 1000; - const getBlock = jest - .fn() - .mockImplementation(async (tag: string | number) => { - if (tag === 'finalized') - return { number: finalizedNumber, hash: '0xabc', timestamp: 1 }; - return { number: tag as number, hash: '0xdef', timestamp: 2 }; - }); - const getLogs = jest.fn().mockResolvedValue([]); - const fakeProvider: any = { getBlock, getLogs, getBlockNumber: jest.fn() }; - - class TestIndexL1 extends IndexL1 { - protected createProvider() { - return fakeProvider; - } - } - - // block_height is close to finalized so the window clamps against finalized (not the +1000 cap) - await new TestIndexL1().syncContract({ - _id: 1, - block_height: finalizedNumber - 5, - contract_hash: '0x0000000000000000000000000000000000000000', - name: 'FuelMessagePortal', - }); - - if (getLogs.mock.calls.length > 0) { - const { toBlock } = getLogs.mock.calls[0][0]; - expect(toBlock).toBeLessThanOrEqual(finalizedNumber); - } - }); - - it('advances cursor to toBlock + 1 after a cycle (next cycle fromBlock is the next unprocessed block)', async () => { - const finalizedNumber = 1000; - const getBlock = jest - .fn() - .mockImplementation(async (tag: string | number) => { - if (tag === 'finalized') - return { number: finalizedNumber, hash: '0xabc', timestamp: 1 }; - return { number: tag as number, hash: '0xdef', timestamp: 2 }; - }); - const getLogs = jest.fn().mockResolvedValue([]); - const fakeProvider: any = { getBlock, getLogs, getBlockNumber: jest.fn() }; - - class TestIndexL1 extends IndexL1 { - protected createProvider() { - return fakeProvider; - } - } - - // Choose block_height close to finalized so toBlock clamps to finalizedNumber. - await new TestIndexL1().syncContract({ - _id: 42, - block_height: finalizedNumber - 5, - contract_hash: '0x0000000000000000000000000000000000000000', - name: 'FuelMessagePortal', - }); - - // Find the UPDATE call that advances the cursor in contract_l1_index. - const updateCall = queryMock.mock.calls.find( - (c) => - typeof c[0] === 'string' && - c[0].includes('update indexer.contract_l1_index'), - ); - expect(updateCall).toBeDefined(); - // Cursor must advance to toBlock + 1 = finalizedNumber + 1. - expect(updateCall?.[1]).toEqual([finalizedNumber + 1, 42]); - }); - - it('skips the cycle when the finalized block cannot be fetched', async () => { - const getBlock = jest.fn().mockRejectedValue(new Error('rpc down')); - const getLogs = jest.fn(); - const fakeProvider: any = { getBlock, getLogs, getBlockNumber: jest.fn() }; - - class TestIndexL1 extends IndexL1 { - protected createProvider() { - return fakeProvider; - } - } - - const indexer = new TestIndexL1(); - await indexer.syncContract({ - _id: 1, - block_height: 500, - contract_hash: '0x0000000000000000000000000000000000000000', - name: 'FuelMessagePortal', - }); - - expect(getLogs).not.toHaveBeenCalled(); - }); -}); diff --git a/packages/graphql/src/application/uc/IndexL1/IndexL1.ts b/packages/graphql/src/application/uc/IndexL1/IndexL1.ts deleted file mode 100644 index 42bcf4797..000000000 --- a/packages/graphql/src/application/uc/IndexL1/IndexL1.ts +++ /dev/null @@ -1,189 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import { ethers } from 'ethers'; -import { type Abi, decodeEventLog } from 'viem'; -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; -import { decodeMessage } from '~/infra/util/util'; -import AbiFactory from './abi/AbiFactory'; -import { createL1Provider } from './createL1Provider'; - -export default class IndexL1 { - protected createProvider(): ethers.JsonRpcProvider { - return createL1Provider(); - } - - async syncContract(contract: { - _id: number; - block_height: number; - contract_hash: string; - name: string; - }) { - const network = env.get('FUEL_CHAIN') || ''; - const connection = DatabaseConnection.getInstance(); - const provider = this.createProvider(); - let finalizedBlock: ethers.Block | null = null; - try { - finalizedBlock = await provider.getBlock('finalized'); - } catch (error: any) { - logger.warn( - 'Timer', - `Contract: ${contract.name} - Failed to fetch finalized block: ${error.message}`, - ); - } - if (!finalizedBlock) { - logger.debug( - 'Timer', - `Contract: ${contract.name} - Waiting for finalized block`, - ); - await setTimeout(10000); - return; - } - const lastBlockNumber = finalizedBlock.number; - if (contract.block_height > lastBlockNumber) { - logger.debug('Timer', `Contract: ${contract.name} - Waiting for block`); - await setTimeout(10000); - return; - } - const abi = AbiFactory.create(network, contract.name); - if (!abi) { - logger.error('Timer', 'ABI not found', contract); - return; - } - // block_height stored in DB is the next block to process (first unprocessed). - // toBlock is inclusive in eth_getLogs, so a window [X, X+999] covers 1000 blocks. - const options = { - fromBlock: contract.block_height, - toBlock: Math.min(lastBlockNumber, contract.block_height + 999), - }; - logger.debug( - 'Timer', - `Contract: ${contract.name} - from block #${options.fromBlock} - to #${options.toBlock}`, - ); - const api = new ethers.Contract(contract.contract_hash, abi, provider); - const logs = await provider.getLogs({ - address: contract.contract_hash, - topics: [], - fromBlock: options.fromBlock, - toBlock: options.toBlock, - }); - logger.debug( - 'Timer', - `Contract: ${contract.name} - Found ${logs.length} logs`, - ); - const blockIndex: { [blockNumber: number]: number } = {}; - for (const log of logs) { - const parsedLog = api.interface.parseLog({ - topics: log.topics, - data: log.data, - }); - logger.debug( - 'Timer', - `Contract: ${contract.name} - Parsed Log: ${parsedLog}`, - ); - const eventName = parsedLog?.name; - const eventSignature = parsedLog?.signature; - const data: { eventName: string; args: any } = decodeEventLog({ - abi: AbiFactory.create(network, contract.name) as Abi, - data: log.data as `0x${string}`, - topics: log.topics as [], - }); - logger.debug( - 'Timer', - `Contract: ${contract.name} - Decoded event Log: ${eventName}, ${data.args.data}`, - ); - - const decodedArgs = decodeMessage(data.args.data); - - logger.debug( - 'Timer', - `Contract: ${contract.name} - Decoded Args: ${decodedArgs}`, - ); - let blockTimestamp = 0; - if (!blockIndex[log.blockNumber]) { - // Retry logic with exponential backoff - let block = null; - const retries = 3; - for (let attempt = 1; attempt <= retries; attempt++) { - try { - block = await provider.getBlock(log.blockNumber); - break; // Success, exit retry loop - } catch (error: any) { - logger.debug( - 'Timer', - `Contract: ${contract.name} - Block fetch attempt ${attempt} failed for block ${log.blockNumber}: ${error.message}`, - ); - - if (attempt < retries) { - const delay = 2 ** attempt * 1000; // exponential backoff: 2s, 4s, 8s - await new Promise((resolve) => setTimeout(resolve as any, delay)); - } - } - } - - if (block) { - blockTimestamp = block.timestamp; - blockIndex[log.blockNumber] = block.timestamp; - } else { - // Use 0 as default timestamp when all retries fail - blockTimestamp = 0; - blockIndex[log.blockNumber] = 0; - logger.debug( - 'Timer', - `Using default timestamp 0 for block ${log.blockNumber} after max retries`, - ); - } - } else { - blockTimestamp = blockIndex[log.blockNumber]; - } - - logger.debug( - 'Timer', - `Contract: ${contract.name} Saving transaction ${log?.transactionHash}. Decoded Args: ${decodedArgs}`, - ); - const [contractL1Log] = await connection.query( - 'insert into indexer.contract_l1_logs (contract_hash, block_height, tx_hash, raw_log, event, signature, decoded_args, decoded_data, timestamp, log_index) values ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) on conflict (block_height, log_index) do update set log_index = EXCLUDED.log_index returning _id', - [ - contract.contract_hash, - log.blockNumber, - log.transactionHash, - log, - eventName, - eventSignature, - JSON.stringify(data.args, (_, v) => - typeof v === 'bigint' ? v.toString() : v, - ), - decodedArgs, - new Date(blockTimestamp * 1000), - log.index, - ], - ); - const args = { ...data.args, ...decodedArgs }; - for (const key in args) { - await connection.query( - 'insert into indexer.contract_l1_args (contract_l1_log_id, key, value) values ($1, $2, $3) on conflict do nothing', - [contractL1Log._id, key, args[key]], - ); - } - } - // Advance cursor past the last processed block so the next cycle starts fresh. - await connection.query( - 'update indexer.contract_l1_index set block_height = $1 where _id = $2', - [options.toBlock + 1, contract._id], - ); - } - - async execute() { - const connection = DatabaseConnection.getInstance(); - while (true) { - const contracts = await connection.query( - `select * from indexer.contract_l1_index where status = 'active' and network = $1`, - [env.get('FUEL_CHAIN')], - ); - await Promise.all( - contracts.map((contract) => this.syncContract(contract)), - ); - await setTimeout(1000); - } - } -} diff --git a/packages/graphql/src/application/uc/IndexL1/L1ReorgSentinel.test.ts b/packages/graphql/src/application/uc/IndexL1/L1ReorgSentinel.test.ts deleted file mode 100644 index 2c57a3964..000000000 --- a/packages/graphql/src/application/uc/IndexL1/L1ReorgSentinel.test.ts +++ /dev/null @@ -1,139 +0,0 @@ -import L1ReorgSentinel from './L1ReorgSentinel'; - -const loggerMock = { debug: jest.fn(), error: jest.fn(), warn: jest.fn() }; - -jest.mock('~/config', () => ({ - env: { get: (k: string) => (k === 'FUEL_CHAIN' ? 'mainnet' : 'test-key') }, -})); - -jest.mock('~/core/Logger', () => ({ - logger: { - debug: (...args: any[]) => loggerMock.debug(...args), - error: (...args: any[]) => loggerMock.error(...args), - warn: (...args: any[]) => loggerMock.warn(...args), - }, -})); - -const queryMock = jest.fn(); -jest.mock('~/infra/database/DatabaseConnection', () => ({ - DatabaseConnection: { getInstance: () => ({ query: queryMock }) }, -})); - -jest.mock('node:timers/promises', () => ({ - setTimeout: jest.fn().mockResolvedValue(undefined), -})); - -beforeEach(() => { - loggerMock.error.mockClear(); - loggerMock.debug.mockClear(); - loggerMock.warn.mockClear(); - queryMock.mockReset(); -}); - -function makeSentinel(provider: any) { - class TestSentinel extends L1ReorgSentinel { - protected createProvider() { - return provider; - } - } - return new TestSentinel(); -} - -describe('L1ReorgSentinel', () => { - it('does not log an error when stored hashes match canonical', async () => { - queryMock.mockResolvedValue([ - { block_height: 100, stored_hash: '0xaaa', contract_hash: '0xc1' }, - { block_height: 101, stored_hash: '0xbbb', contract_hash: '0xc1' }, - ]); - const provider = { - getBlock: jest.fn(async (n: number) => ({ - number: n, - hash: n === 100 ? '0xaaa' : '0xbbb', - })), - }; - - await makeSentinel(provider).checkOnce(); - - expect(loggerMock.error).not.toHaveBeenCalled(); - }); - - it('logs a structured error when a stored hash diverges from canonical', async () => { - queryMock.mockResolvedValue([ - { - block_height: 200, - stored_hash: '0xstale', - contract_hash: '0xcontract', - }, - ]); - const provider = { - getBlock: jest.fn(async () => ({ number: 200, hash: '0xcanonical' })), - }; - - await makeSentinel(provider).checkOnce(); - - expect(loggerMock.error).toHaveBeenCalledTimes(1); - const [tag, message, payload] = loggerMock.error.mock.calls[0]; - expect(tag).toBe('L1ReorgSentinel'); - // Alert prefix must be present so log-routing tooling can key on it. - expect(message).toMatch(/\[L1_REORG_ALERT\]/); - expect(payload).toEqual({ - block_height: 200, - stored_hash: '0xstale', - canonical_hash: '0xcanonical', - contract_hash: '0xcontract', - }); - }); - - it('logs a debug line and does not throw when the provider errors', async () => { - queryMock.mockResolvedValue([ - { block_height: 300, stored_hash: '0xaaa', contract_hash: '0xc1' }, - ]); - const provider = { - getBlock: jest.fn().mockRejectedValue(new Error('rpc failed')), - }; - - await expect(makeSentinel(provider).checkOnce()).resolves.not.toThrow(); - expect(loggerMock.debug).toHaveBeenCalled(); - }); - - it('warns when the provider returns no canonical block for a height we have stored rows for', async () => { - queryMock.mockResolvedValue([ - { block_height: 400, stored_hash: '0xsomething', contract_hash: '0xc1' }, - ]); - const provider = { - getBlock: jest.fn().mockResolvedValue(null), - }; - - await makeSentinel(provider).checkOnce(); - - expect(loggerMock.warn).toHaveBeenCalledTimes(1); - const [tag, message] = loggerMock.warn.mock.calls[0]; - expect(tag).toBe('L1ReorgSentinel'); - expect(message).toMatch(/no block at finalized-depth height 400/); - expect(loggerMock.error).not.toHaveBeenCalled(); - }); - - it('samples per contract (not just globally) so a busy contract cannot monopolize the window', async () => { - // Verify the SQL takes a per-contract partition approach (row_number() OVER partition). - queryMock.mockResolvedValue([]); - const provider = { getBlock: jest.fn() }; - await makeSentinel(provider).checkOnce(); - expect(queryMock).toHaveBeenCalledTimes(1); - const sql = queryMock.mock.calls[0][0] as string; - expect(sql).toMatch(/partition by [\w.]*contract_hash/i); - expect(sql).toMatch(/row_number\(\)/i); - }); - - it('scopes the sample to active contracts for the current network', async () => { - queryMock.mockResolvedValue([]); - const provider = { getBlock: jest.fn() }; - await makeSentinel(provider).checkOnce(); - const sql = queryMock.mock.calls[0][0] as string; - const params = queryMock.mock.calls[0][1] as unknown[]; - expect(sql).toMatch(/indexer\.contract_l1_index/); - expect(sql).toMatch(/status = 'active'/); - expect(sql).toMatch(/network = \$1/); - // First param must be the current FUEL_CHAIN — mocked to 'mainnet'. - expect(params[0]).toBe('mainnet'); - }); -}); diff --git a/packages/graphql/src/application/uc/IndexL1/L1ReorgSentinel.ts b/packages/graphql/src/application/uc/IndexL1/L1ReorgSentinel.ts deleted file mode 100644 index 11be6a9c9..000000000 --- a/packages/graphql/src/application/uc/IndexL1/L1ReorgSentinel.ts +++ /dev/null @@ -1,117 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import type { ethers } from 'ethers'; -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; -import { createL1Provider } from './createL1Provider'; - -type RecentLogRow = { - block_height: number; - stored_hash: string | null; - contract_hash: string; -}; - -export default class L1ReorgSentinel { - protected createProvider(): ethers.JsonRpcProvider { - return createL1Provider(); - } - - // Sample up to this many most-recent rows per contract. Covers one-batch bursts - // on busy contracts (e.g. FuelMessagePortal) without over-sampling quiet ones. - // 20 rows × 7 active contracts ≈ 140 unique (block_height, contract) pairs per cycle. - protected readonly rowsPerContract = 20; - - async checkOnce(): Promise { - const connection = DatabaseConnection.getInstance(); - const network = env.get('FUEL_CHAIN') || ''; - // Per-contract sample, scoped to active contracts for the current network. - // Prevents (a) one busy contract monopolizing a global LIMIT window and - // (b) false positives from stale/inactive/cross-network rows in the table. - const rows = (await connection.query( - `select ranked.block_height, ranked.stored_hash, ranked.contract_hash - from ( - select l.block_height, - l.raw_log->>'blockHash' as stored_hash, - l.contract_hash, - row_number() over (partition by l.contract_hash order by l._id desc) as rn - from indexer.contract_l1_logs l - join indexer.contract_l1_index i - on i.contract_hash = l.contract_hash - where i.status = 'active' and i.network = $1 - ) ranked - where ranked.rn <= $2`, - [network, this.rowsPerContract], - )) as RecentLogRow[]; - - if (rows.length === 0) return; - - const provider = this.createProvider(); - // Bucket by (contract_hash, block_height) so we fetch each canonical block - // once even when a contract emits multiple logs at the same height. - const byHeight = new Map(); - for (const row of rows) { - const bucket = byHeight.get(row.block_height) ?? []; - bucket.push(row); - byHeight.set(row.block_height, bucket); - } - - for (const [height, group] of byHeight) { - let canonicalHash: string | null = null; - try { - const block = await provider.getBlock(height); - canonicalHash = block?.hash ?? null; - } catch (error: any) { - logger.debug( - 'L1ReorgSentinel', - `Failed to fetch canonical block ${height}: ${error.message}`, - ); - continue; - } - // Provider returned null for a block we have stored rows for. For a - // finalized-depth height this is itself suspicious — a truly absent - // block would mean the stored row references an orphaned chain. Upgrade - // severity from silent-skip to explicit warn so ops can spot it. - if (!canonicalHash) { - const storedHashes = group - .map((r) => r.stored_hash) - .filter((h): h is string => Boolean(h)); - if (storedHashes.length > 0) { - logger.warn( - 'L1ReorgSentinel', - `Provider returned no block at finalized-depth height ${height}; stored rows reference: ${storedHashes.join(', ')}`, - ); - } - continue; - } - - for (const row of group) { - if (!row.stored_hash) continue; - if (row.stored_hash.toLowerCase() === canonicalHash.toLowerCase()) - continue; - // Loud alert. Log routing / on-call tooling should key on the - // [L1_REORG_ALERT] literal or the "L1ReorgSentinel" tag. - logger.error( - 'L1ReorgSentinel', - '[L1_REORG_ALERT] Stored L1 block hash diverges from canonical', - { - block_height: row.block_height, - stored_hash: row.stored_hash, - canonical_hash: canonicalHash, - contract_hash: row.contract_hash, - }, - ); - } - } - } - - async execute(): Promise { - while (true) { - try { - await this.checkOnce(); - } catch (error: any) { - logger.debug('L1ReorgSentinel', `checkOnce threw: ${error.message}`); - } - await setTimeout(60000); - } - } -} diff --git a/packages/graphql/src/application/uc/IndexL1/abi/AbiFactory.ts b/packages/graphql/src/application/uc/IndexL1/abi/AbiFactory.ts deleted file mode 100644 index 660373d1a..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/AbiFactory.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { InterfaceAbi } from 'ethers'; -import { contract as fuelChainStateMainnet } from './mainnet/fuelChainStateAbi'; -import { contract as fuelERC20GatewayV4Mainnet } from './mainnet/fuelERC20GatewayV4Abi'; -import { contract as fuelMessagePortalAbiMainnet } from './mainnet/fuelMessagePortalAbi'; -import { contract as fuelStreamXAbiMainnet } from './mainnet/fuelStreamXAbi'; -import { contract as rewardsDistributorAbiMainnet } from './mainnet/rewardsDistributorAbi'; -import { contract as sequencerProxyAbiMainnet } from './mainnet/sequencerProxyAbi'; -import { contract as tokenMainnet } from './mainnet/tokenAbi'; -import { contract as fuelChainStateTestnet } from './testnet/fuelChainStateAbi'; -import { contract as fuelERC20GatewayV4Testnet } from './testnet/fuelERC20GatewayV4Abi'; -import { contract as fuelMessagePortalAbiTestnet } from './testnet/fuelMessagePortalAbi'; -import { contract as fuelStreamXAbiTestnet } from './testnet/fuelStreamXAbi'; -import { contract as rewardsDistributorAbiTestnet } from './testnet/rewardsDistributorAbi'; -import { contract as sequencerProxyAbiTestnet } from './testnet/sequencerProxyAbi'; -import { contract as tokenTestnet } from './testnet/tokenAbi'; - -export default class AbiFactory { - static create(network: string, contract: string) { - const ABI: { [network: string]: { [contract: string]: InterfaceAbi } } = { - mainnet: { - SequencerProxy: sequencerProxyAbiMainnet.abi, - FuelStreamX: fuelStreamXAbiMainnet.abi, - RewardDistribution: rewardsDistributorAbiMainnet.abi, - FuelMessagePortal: fuelMessagePortalAbiMainnet.abi, - FuelERC20GatewayV4: fuelERC20GatewayV4Mainnet.abi, - FuelChainState: fuelChainStateMainnet.abi, - Token: tokenMainnet.abi, - }, - testnet: { - SequencerProxy: sequencerProxyAbiTestnet.abi, - FuelStreamX: fuelStreamXAbiTestnet.abi, - RewardDistribution: rewardsDistributorAbiTestnet.abi, - FuelMessagePortal: fuelMessagePortalAbiTestnet.abi, - FuelERC20GatewayV4: fuelERC20GatewayV4Testnet.abi, - FuelChainState: fuelChainStateTestnet.abi, - Token: tokenTestnet.abi, - }, - }; - if (!ABI[network]) return; - return ABI[network][contract]; - } -} diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelChainStateAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelChainStateAbi.ts deleted file mode 100644 index 0b82a311f..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelChainStateAbi.ts +++ /dev/null @@ -1,581 +0,0 @@ -export const contract = { - address: '0xf3D20Db1D16A4D0ad2f280A5e594FF3c7790f130', - abi: [ - { - inputs: [ - { - internalType: 'uint256', - name: 'timeToFinalize', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'blocksPerCommitInterval', - type: 'uint256', - }, - { - internalType: 'uint32', - name: 'commitCooldown', - type: 'uint32', - }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'CannotRecommit', - type: 'error', - }, - { - inputs: [], - name: 'CommitCooldownTooLarge', - type: 'error', - }, - { - inputs: [], - name: 'FinalizationIsGtCooldown', - type: 'error', - }, - { - inputs: [], - name: 'TimeToFinalizeTooLarge', - type: 'error', - }, - { - inputs: [], - name: 'UnknownBlock', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'previousAdmin', - type: 'address', - }, - { - indexed: false, - internalType: 'address', - name: 'newAdmin', - type: 'address', - }, - ], - name: 'AdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'beacon', - type: 'address', - }, - ], - name: 'BeaconUpgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'commitHeight', - type: 'uint256', - }, - { - indexed: false, - internalType: 'bytes32', - name: 'blockHash', - type: 'bytes32', - }, - ], - name: 'CommitSubmitted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint8', - name: 'version', - type: 'uint8', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - inputs: [], - name: 'BLOCKS_PER_COMMIT_INTERVAL', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'COMMITTER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'COMMIT_COOLDOWN', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'NUM_COMMIT_SLOTS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'TIME_TO_FINALIZE', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'commitHeight', - type: 'uint256', - }, - ], - name: 'blockHashAtCommit', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'blockHash', - type: 'bytes32', - }, - { - internalType: 'uint256', - name: 'commitHeight', - type: 'uint256', - }, - ], - name: 'commit', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'blockHash', - type: 'bytes32', - }, - { - internalType: 'uint256', - name: 'blockHeight', - type: 'uint256', - }, - ], - name: 'finalized', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - ], - name: 'upgradeTo', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - ], - numDeployments: 1, - linkedData: { - factory: 'FuelChainState', - constructorArgs: [604800, 10800, 604800], - }, - implementation: '0x725B2b1a15D818E1f25c68be77816802e6036559', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelERC20GatewayV4Abi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelERC20GatewayV4Abi.ts deleted file mode 100644 index 4c1a35be3..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelERC20GatewayV4Abi.ts +++ /dev/null @@ -1,923 +0,0 @@ -export const contract = { - address: '0xa4cA04d02bfdC3A2DF56B9b6994520E69dF43F67', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'BridgeFull', - type: 'error', - }, - { - inputs: [], - name: 'CallerIsNotPortal', - type: 'error', - }, - { - inputs: [], - name: 'CannotDepositZero', - type: 'error', - }, - { - inputs: [], - name: 'CannotWithdrawZero', - type: 'error', - }, - { - inputs: [], - name: 'GlobalDepositLimit', - type: 'error', - }, - { - inputs: [], - name: 'InvalidAmount', - type: 'error', - }, - { - inputs: [], - name: 'InvalidAssetIssuerID', - type: 'error', - }, - { - inputs: [], - name: 'InvalidMessageSender', - type: 'error', - }, - { - inputs: [], - name: 'InvalidSender', - type: 'error', - }, - { - inputs: [], - name: 'RateLimitExceeded', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'previousAdmin', - type: 'address', - }, - { - indexed: false, - internalType: 'address', - name: 'newAdmin', - type: 'address', - }, - ], - name: 'AdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'beacon', - type: 'address', - }, - ], - name: 'BeaconUpgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Deposit', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint8', - name: 'version', - type: 'uint8', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'bool', - name: 'status', - type: 'bool', - }, - ], - name: 'RateLimitStatusUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'RateLimitUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Withdrawal', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'FUEL_ASSET_DECIMALS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'SET_RATE_LIMITER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'assetIssuerId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'currentPeriodAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'currentPeriodEnd', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'to', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'deposit', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - ], - name: 'depositLimits', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'to', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'depositWithData', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - internalType: 'uint256', - name: 'l2BurntAmount', - type: 'uint256', - }, - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - name: 'finalizeWithdrawal', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'fuelMessagePortal', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'contract FuelMessagePortal', - name: 'fuelMessagePortal', - type: 'address', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'limitAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'rateLimitDuration', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'rateLimitStatus', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bool', - name: 'value', - type: 'bool', - }, - ], - name: 'requireWhitelist', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'rescueETH', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_token', - type: 'address', - }, - { - internalType: 'uint256', - name: '_amount', - type: 'uint256', - }, - { - internalType: 'uint256', - name: '_rateLimitDuration', - type: 'uint256', - }, - ], - name: 'resetRateLimitAmount', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - ], - name: 'sendMetadata', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'id', - type: 'bytes32', - }, - ], - name: 'setAssetIssuerId', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'token', - type: 'address', - }, - { - internalType: 'uint256', - name: 'limit', - type: 'uint256', - }, - ], - name: 'setGlobalDepositLimit', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - ], - name: 'tokensDeposited', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_token', - type: 'address', - }, - { - internalType: 'bool', - name: '_rateLimitStatus', - type: 'bool', - }, - ], - name: 'updateRateLimitStatus', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - ], - name: 'upgradeTo', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'whitelistRequired', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - numDeployments: 2, - linkedData: { - factory: 'FuelERC20GatewayV4', - constructorArgs: [], - }, - transactionHash: - '0x44c0654c83eff10b0126cc97f9d519ba8f1b4a41958886cb58eee3e939760c8e', - implementation: '0xdE2D792ca3C4d02DE3CE1cD1456d8D0990cC3fab', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelMessagePortalAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelMessagePortalAbi.ts deleted file mode 100644 index 4ee8242c8..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelMessagePortalAbi.ts +++ /dev/null @@ -1,1169 +0,0 @@ -export const contract = { - address: '0xAEB0c00D0125A8a788956ade4f4F12Ead9f65DDf', - abi: [ - { - inputs: [ - { - internalType: 'uint256', - name: '_depositLimitGlobal', - type: 'uint256', - }, - { - internalType: 'uint256', - name: '_rateLimitDuration', - type: 'uint256', - }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AlreadyRelayed', - type: 'error', - }, - { - inputs: [], - name: 'AmountPrecisionIncompatibility', - type: 'error', - }, - { - inputs: [], - name: 'AmountTooBig', - type: 'error', - }, - { - inputs: [], - name: 'CurrentMessageSenderNotSet', - type: 'error', - }, - { - inputs: [], - name: 'GlobalDepositLimit', - type: 'error', - }, - { - inputs: [], - name: 'InvalidBlockInHistoryProof', - type: 'error', - }, - { - inputs: [], - name: 'InvalidMessageInBlockProof', - type: 'error', - }, - { - inputs: [], - name: 'MessageBlacklisted', - type: 'error', - }, - { - inputs: [], - name: 'MessageDataTooLarge', - type: 'error', - }, - { - inputs: [], - name: 'MessageRelayFailed', - type: 'error', - }, - { - inputs: [], - name: 'NotSupported', - type: 'error', - }, - { - inputs: [], - name: 'RateLimitExceeded', - type: 'error', - }, - { - inputs: [], - name: 'UnfinalizedBlock', - type: 'error', - }, - { - inputs: [], - name: 'WithdrawalsPaused', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'previousAdmin', - type: 'address', - }, - { - indexed: false, - internalType: 'address', - name: 'newAdmin', - type: 'address', - }, - ], - name: 'AdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'beacon', - type: 'address', - }, - ], - name: 'BeaconUpgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'oldValue', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'newValue', - type: 'address', - }, - ], - name: 'FuelChainStateUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint8', - name: 'version', - type: 'uint8', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - indexed: false, - internalType: 'uint64', - name: 'amount', - type: 'uint64', - }, - ], - name: 'MessageRelayed', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint64', - name: 'amount', - type: 'uint64', - }, - { - indexed: false, - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'MessageSent', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'bool', - name: 'status', - type: 'bool', - }, - ], - name: 'RateLimitStatusUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'ResetRateLimit', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'ETH_DECIMALS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'FUEL_BASE_ASSET_DECIMALS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'MAX_MESSAGE_DATA_SIZE', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PRECISION', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'RATE_LIMIT_DURATION', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'SET_RATE_LIMITER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - ], - name: 'addMessageToBlacklist', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'currentPeriodAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'currentPeriodEnd', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - ], - name: 'depositETH', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'depositLimitGlobal', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'fuelBaseAssetDecimals', - outputs: [ - { - internalType: 'uint8', - name: '', - type: 'uint8', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [], - name: 'fuelChainStateContract', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'getNextOutgoingMessageNonce', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - ], - name: 'incomingMessageSuccessful', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'contract FuelChainState', - name: '', - type: 'address', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'contract FuelChainState', - name: 'fuelChainState', - type: 'address', - }, - { - internalType: 'uint256', - name: '_limitAmount', - type: 'uint256', - }, - ], - name: 'initializerV3', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'limitAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - name: 'messageIsBlacklisted', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'messageSender', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'pauseWithdrawals', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'rateLimitEnabled', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_limitAmount', - type: 'uint256', - }, - ], - name: 'reinitializeV3', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - components: [ - { - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'nonce', - type: 'bytes32', - }, - { - internalType: 'uint64', - name: 'amount', - type: 'uint64', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - internalType: 'struct Message', - name: 'message', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32', - name: 'prevRoot', - type: 'bytes32', - }, - { - internalType: 'uint32', - name: 'height', - type: 'uint32', - }, - { - internalType: 'uint64', - name: 'timestamp', - type: 'uint64', - }, - { - internalType: 'bytes32', - name: 'applicationHash', - type: 'bytes32', - }, - ], - internalType: 'struct FuelBlockHeaderLite', - name: 'rootBlockHeader', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32', - name: 'prevRoot', - type: 'bytes32', - }, - { - internalType: 'uint64', - name: 'timestamp', - type: 'uint64', - }, - { - internalType: 'uint64', - name: 'daHeight', - type: 'uint64', - }, - { - internalType: 'uint32', - name: 'outputMessagesCount', - type: 'uint32', - }, - { - internalType: 'uint32', - name: 'consensusParametersVersion', - type: 'uint32', - }, - { - internalType: 'uint32', - name: 'stateTransitionBytecodeVersion', - type: 'uint32', - }, - { - internalType: 'uint32', - name: 'height', - type: 'uint32', - }, - { - internalType: 'bytes32', - name: 'txRoot', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'outputMessagesRoot', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'eventInboxRoot', - type: 'bytes32', - }, - { - internalType: 'uint16', - name: 'txCount', - type: 'uint16', - }, - ], - internalType: 'struct FuelBlockHeader', - name: 'blockHeader', - type: 'tuple', - }, - { - components: [ - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'bytes32[]', - name: 'proof', - type: 'bytes32[]', - }, - ], - internalType: 'struct MerkleProof', - name: 'blockInHistoryProof', - type: 'tuple', - }, - { - components: [ - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'bytes32[]', - name: 'proof', - type: 'bytes32[]', - }, - ], - internalType: 'struct MerkleProof', - name: 'messageInBlockProof', - type: 'tuple', - }, - ], - name: 'relayMessage', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - ], - name: 'removeMessageFromBlacklist', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_amount', - type: 'uint256', - }, - ], - name: 'resetRateLimitAmount', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'sendMessage', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newFuelChainState', - type: 'address', - }, - ], - name: 'setFuelChainState', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'totalDeposited', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'unpauseWithdrawals', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bool', - name: 'value', - type: 'bool', - }, - ], - name: 'updateRateLimitStatus', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - ], - name: 'upgradeTo', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'withdrawalsPaused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - transactionHash: - '0xaaa628d33a2247ea28a9db05472e879c8aa63689a2561c947dfc8facac06ce11', - numDeployments: 4, - linkedData: { - factory: 'FuelMessagePortalV3', - constructorArgs: [ - '115792089237316195423570985008687907853269984665640564039457584007913129639935', - 604800, - ], - }, - implementation: '0x2C4df10a82CF077122eD99573acA6daCd76F2E67', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelStreamXAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelStreamXAbi.ts deleted file mode 100644 index ea45010a6..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/fuelStreamXAbi.ts +++ /dev/null @@ -1,1293 +0,0 @@ -export const contract = { - address: '0x481aeEB9bdFe08f050d22F0b352356691c4B0b59', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [], - name: 'BridgeCommitmentNotFound', - type: 'error', - }, - { - inputs: [], - name: 'CommitmentNotFinalized', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [], - name: 'EnforcedPause', - type: 'error', - }, - { - inputs: [], - name: 'ExpectedPause', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint8', - name: 'char', - type: 'uint8', - }, - ], - name: 'InvalidCharacter', - type: 'error', - }, - { - inputs: [], - name: 'InvalidCommitmentProof', - type: 'error', - }, - { - inputs: [], - name: 'InvalidExecTxResultCode', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [ - { - internalType: 'string', - name: 's', - type: 'string', - }, - ], - name: 'InvalidIntString', - type: 'error', - }, - { - inputs: [], - name: 'InvalidProofNonce', - type: 'error', - }, - { - inputs: [], - name: 'InvalidStringLength', - type: 'error', - }, - { - inputs: [], - name: 'InvalidToken', - type: 'error', - }, - { - inputs: [], - name: 'InvalidTxResultProof', - type: 'error', - }, - { - inputs: [ - { - internalType: 'string', - name: 's', - type: 'string', - }, - ], - name: 'InvalidUintString', - type: 'error', - }, - { - inputs: [], - name: 'LatestHeaderNotFound', - type: 'error', - }, - { - inputs: [], - name: 'Missing0xPrefix', - type: 'error', - }, - { - inputs: [], - name: 'NonceAlreadyUsed', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [], - name: 'TargetBlockNotInRange', - type: 'error', - }, - { - inputs: [], - name: 'TrustedHeaderNotFound', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint256', - name: 'proofNonce', - type: 'uint256', - }, - { - indexed: true, - internalType: 'uint64', - name: 'startBlock', - type: 'uint64', - }, - { - indexed: true, - internalType: 'uint64', - name: 'endBlock', - type: 'uint64', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'bridgeCommitment', - type: 'bytes32', - }, - ], - name: 'BridgeCommitmentStored', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'blockNumber', - type: 'uint64', - }, - { - indexed: false, - internalType: 'bytes32', - name: 'headerHash', - type: 'bytes32', - }, - ], - name: 'HeadUpdate', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'newHeaderRangeFunctionId', - type: 'bytes32', - }, - ], - name: 'HeaderRangeFunctionIdUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint64', - name: 'trustedBlock', - type: 'uint64', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'trustedHeader', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'uint64', - name: 'targetBlock', - type: 'uint64', - }, - ], - name: 'HeaderRangeRequested', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint64', - name: 'trustedBlock', - type: 'uint64', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'trustedHeader', - type: 'bytes32', - }, - ], - name: 'NextHeaderRequested', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - indexed: false, - internalType: 'int256', - name: 'delta', - type: 'int256', - }, - ], - name: 'SupplyDelta', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'WithdrawalProcessed', - type: 'event', - }, - { - inputs: [], - name: 'BRIDGE_COMMITMENT_MAX', - outputs: [ - { - internalType: 'uint64', - name: '', - type: 'uint64', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'GUARDIAN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'L2_ACCOUNT_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'L2_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint64', - name: '', - type: 'uint64', - }, - ], - name: 'blockHeightToHeaderHash', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - name: 'commitmentTimestamp', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'gateway', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'l2Account', - type: 'address', - }, - ], - name: 'grantL2AccountRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'headerRangeFunctionId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - components: [ - { - internalType: 'address', - name: 'vault', - type: 'address', - }, - { - internalType: 'address', - name: 'gateway', - type: 'address', - }, - { - internalType: 'uint64', - name: 'height', - type: 'uint64', - }, - { - internalType: 'bytes32', - name: 'header', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'nextHeaderFunctionId', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'headerRangeFunctionId', - type: 'bytes32', - }, - { - internalType: 'string', - name: 'tokenCosmosDenomination', - type: 'string', - }, - ], - internalType: 'struct FuelStreamX.InitParameters', - name: '_params', - type: 'tuple', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'header', - type: 'bytes32', - }, - ], - name: 'initializeTrustedHeader', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'latestBlock', - outputs: [ - { - internalType: 'uint64', - name: '', - type: 'uint64', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'nextHeaderFunctionId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_proofNonce', - type: 'uint256', - }, - { - components: [ - { - internalType: 'uint256', - name: 'height', - type: 'uint256', - }, - { - internalType: 'bytes32', - name: 'resultsHash', - type: 'bytes32', - }, - ], - internalType: 'struct BridgeCommitmentLeaf', - name: 'bridgeCommitmentLeaf', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'bridgeCommitmentLeafProof', - type: 'tuple', - }, - { - internalType: 'bytes', - name: 'txResultMarshalled', - type: 'bytes', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'txResultProof', - type: 'tuple', - }, - ], - name: 'processSequencerSupplyUpdate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_proofNonce', - type: 'uint256', - }, - { - components: [ - { - internalType: 'uint256', - name: 'height', - type: 'uint256', - }, - { - internalType: 'bytes32', - name: 'resultsHash', - type: 'bytes32', - }, - ], - internalType: 'struct BridgeCommitmentLeaf', - name: 'bridgeCommitmentLeaf', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'bridgeCommitmentLeafProof', - type: 'tuple', - }, - { - internalType: 'bytes', - name: 'txResultMarshalled', - type: 'bytes', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'txResultProof', - type: 'tuple', - }, - ], - name: 'processSequencerWithdrawalMessage', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'recoveryRegistry', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'string', - name: 'denomination', - type: 'string', - }, - ], - name: 'setCosmosTokenDenomination', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newRecoveryRegistry', - type: 'address', - }, - ], - name: 'setRecoveryRegistry', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'roleAdmin', - type: 'bytes32', - }, - ], - name: 'setRoleAdmin', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint32', - name: 'newTimeToFinalize', - type: 'uint32', - }, - ], - name: 'setTimeToFinalize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - name: 'state_bridgeCommitments', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'state_proofNonce', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'timeToFinalize', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'tokenCosmosDenominationHash', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint64', - name: '_targetBlock', - type: 'uint64', - }, - { - internalType: 'bytes32', - name: '_targetHeader', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: '_bridgeCommitment', - type: 'bytes32', - }, - ], - name: 'updateCommitHeaderRange', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint32', - name: '_height', - type: 'uint32', - }, - { - internalType: 'bytes32', - name: '_header', - type: 'bytes32', - }, - ], - name: 'updateGenesisState', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '_headerRangeFunctionId', - type: 'bytes32', - }, - ], - name: 'updateHeaderRangeFunctionId', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - name: 'usedNonces', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'vault', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - numDeployments: 2, - implementation: '0x6c644cf9B3ca2AFB11f2218ec4a9F2a561C99626', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/rewardsDistributorAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/rewardsDistributorAbi.ts deleted file mode 100644 index 7d47a22a1..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/rewardsDistributorAbi.ts +++ /dev/null @@ -1,721 +0,0 @@ -export const contract = { - address: '0xC20c2EA5fC5f26200f3339512f336c2ecE41FC18', - abi: [ - { - inputs: [ - { - internalType: 'address', - name: '_sequencerInterface', - type: 'address', - }, - { - internalType: 'address', - name: '_fuelToken', - type: 'address', - }, - { - internalType: 'bytes32', - name: '_l2StakingContractId', - type: 'bytes32', - }, - { - internalType: 'address', - name: '_fuelERC20Gateway', - type: 'address', - }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [], - name: 'CollateralLessThanUserDeposits', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [], - name: 'ExceedsLimit', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [], - name: 'InsufficientBalance', - type: 'error', - }, - { - inputs: [], - name: 'InvalidAmount', - type: 'error', - }, - { - inputs: [], - name: 'InvalidCaller', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInputs', - type: 'error', - }, - { - inputs: [], - name: 'NoRewardsToDistribute', - type: 'error', - }, - { - inputs: [], - name: 'NotAuthorized', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - inputs: [], - name: 'UserDepositsHigherThanCollateral', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'CollateralUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: '_foundationAddress', - type: 'address', - }, - ], - name: 'FoundationAddressUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address[]', - name: 'validators', - type: 'address[]', - }, - { - indexed: true, - internalType: 'uint256', - name: 'withdrawAmount', - type: 'uint256', - }, - ], - name: 'RewardsClaimed', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'totalRewards', - type: 'uint256', - }, - { - indexed: true, - internalType: 'uint256', - name: 'userShare', - type: 'uint256', - }, - { - indexed: true, - internalType: 'uint256', - name: 'foundationShare', - type: 'uint256', - }, - ], - name: 'RewardsDistributed', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'UserDepositsUpdated', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'OPERATOR_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'ORACLE_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address[]', - name: 'validators', - type: 'address[]', - }, - { - internalType: 'uint256', - name: 'withdrawAmount', - type: 'uint256', - }, - ], - name: 'claim', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'collateral', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'distribute', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'foundationAddress', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'fuelERC20Gateway', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'fuelToken', - outputs: [ - { - internalType: 'contract IERC1363', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'l2StakingContractId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'sequencerInterface', - outputs: [ - { - internalType: 'contract ISequencerInterface', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_foundationAddress', - type: 'address', - }, - ], - name: 'setFoundationAddress', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '_l2StakingContractId', - type: 'bytes32', - }, - ], - name: 'setL2StakingContractId', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_collateral', - type: 'uint256', - }, - ], - name: 'updateCollateral', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_userDeposits', - type: 'uint256', - }, - ], - name: 'updateUserDeposits', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'userDeposits', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - args: [ - '0xca0c6B264f0F9958Ec186eb2EAa208966187D866', - '0x675B68AA4d9c2d3BB3F0397048e62E6B7192079c', - '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c', - '0xa4cA04d02bfdC3A2DF56B9b6994520E69dF43F67', - ], - numDeployments: 1, - implementation: '0x1cD61731ce62e5691DE2e547fA740Bcd0663B1A8', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/sequencerProxyAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/sequencerProxyAbi.ts deleted file mode 100644 index e2a8a5a59..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/sequencerProxyAbi.ts +++ /dev/null @@ -1,1048 +0,0 @@ -export const contract = { - address: '0xBa0e6bF94580D49B5Aaaa54279198D424B23eCC3', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [], - name: 'EnforcedPause', - type: 'error', - }, - { - inputs: [], - name: 'ExpectedPause', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: false, - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'Authorize', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'validator', - type: 'address', - }, - ], - name: 'ClaimRewards', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Delegate', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'depositor', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'lockup', - type: 'uint256', - }, - ], - name: 'Deposit', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - indexed: false, - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - { - indexed: false, - internalType: 'uint32', - name: 'expiration', - type: 'uint32', - }, - ], - name: 'Grant', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'srcValidator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'dstValidator', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Redelegate', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - indexed: false, - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - ], - name: 'Revoke', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - ], - name: 'SetRewardRecipient', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Transfer', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Unbond', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'voter', - type: 'address', - }, - { - indexed: true, - internalType: 'uint64', - name: 'proposalId', - type: 'uint64', - }, - { - indexed: false, - internalType: 'uint32', - name: 'option', - type: 'uint32', - }, - { - indexed: false, - internalType: 'string', - name: 'metadata', - type: 'string', - }, - ], - name: 'Vote', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Withdraw', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'INTERFACE_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'authorize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'validator', - type: 'address', - }, - ], - name: 'claimRewards', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'delegate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'depositor', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'lockup', - type: 'uint256', - }, - ], - name: 'deposit', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - { - internalType: 'uint32', - name: 'expiration', - type: 'uint32', - }, - ], - name: 'grant', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'srcValidator', - type: 'address', - }, - { - internalType: 'address', - name: 'dstValidator', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'redelegate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - ], - name: 'revoke', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - ], - name: 'setRewardRecipient', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'transfer', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'unbond', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'voter', - type: 'address', - }, - { - internalType: 'uint64', - name: 'proposalId', - type: 'uint64', - }, - { - internalType: 'uint32', - name: 'option', - type: 'uint32', - }, - { - internalType: 'string', - name: 'metadata', - type: 'string', - }, - ], - name: 'vote', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'withdraw', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - ], - numDeployments: 1, - implementation: '0xD31F45Fb6c2011D41E489cb24B45810d578A3279', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/tokenAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/mainnet/tokenAbi.ts deleted file mode 100644 index d64b2f301..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/mainnet/tokenAbi.ts +++ /dev/null @@ -1,1549 +0,0 @@ -export const contract = { - address: '0x675B68AA4d9c2d3BB3F0397048e62E6B7192079c', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [], - name: 'CheckpointUnorderedInsertion', - type: 'error', - }, - { - inputs: [], - name: 'ECDSAInvalidSignature', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'length', - type: 'uint256', - }, - ], - name: 'ECDSAInvalidSignatureLength', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 's', - type: 'bytes32', - }, - ], - name: 'ECDSAInvalidSignatureS', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'ERC1363ApproveFailed', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC1363EOAReceiver', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC1363EOASpender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC1363InvalidReceiver', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC1363InvalidReceiverRetVal', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC1363InvalidSpender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC1363InvalidSpenderRetVal', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'ERC1363TransferFailed', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'ERC1363TransferFromFailed', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'increasedSupply', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'cap', - type: 'uint256', - }, - ], - name: 'ERC20ExceededSafeSupply', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'allowance', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'needed', - type: 'uint256', - }, - ], - name: 'ERC20InsufficientAllowance', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'balance', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'needed', - type: 'uint256', - }, - ], - name: 'ERC20InsufficientBalance', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'approver', - type: 'address', - }, - ], - name: 'ERC20InvalidApprover', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC20InvalidReceiver', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'ERC20InvalidSender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC20InvalidSpender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'deadline', - type: 'uint256', - }, - ], - name: 'ERC2612ExpiredSignature', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'signer', - type: 'address', - }, - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - ], - name: 'ERC2612InvalidSigner', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'timepoint', - type: 'uint256', - }, - { - internalType: 'uint48', - name: 'clock', - type: 'uint48', - }, - ], - name: 'ERC5805FutureLookup', - type: 'error', - }, - { - inputs: [], - name: 'ERC6372InconsistentClock', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'uint256', - name: 'currentNonce', - type: 'uint256', - }, - ], - name: 'InvalidAccountNonce', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint8', - name: 'bits', - type: 'uint8', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'SafeCastOverflowedUintDowncast', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'expiry', - type: 'uint256', - }, - ], - name: 'VotesExpiredSignature', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'Approval', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'fromDelegate', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'toDelegate', - type: 'address', - }, - ], - name: 'DelegateChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegate', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'previousVotes', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'newVotes', - type: 'uint256', - }, - ], - name: 'DelegateVotesChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [], - name: 'EIP712DomainChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'from', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'to', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'Transfer', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - inputs: [], - name: 'CLOCK_MODE', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DOMAIN_SEPARATOR', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'MINTER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'allowance', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'approve', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'approveAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'approveAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'balanceOf', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'burn', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'uint32', - name: 'pos', - type: 'uint32', - }, - ], - name: 'checkpoints', - outputs: [ - { - components: [ - { - internalType: 'uint48', - name: '_key', - type: 'uint48', - }, - { - internalType: 'uint208', - name: '_value', - type: 'uint208', - }, - ], - internalType: 'struct Checkpoints.Checkpoint208', - name: '', - type: 'tuple', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'clock', - outputs: [ - { - internalType: 'uint48', - name: '', - type: 'uint48', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'decimals', - outputs: [ - { - internalType: 'uint8', - name: '', - type: 'uint8', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegatee', - type: 'address', - }, - ], - name: 'delegate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegatee', - type: 'address', - }, - { - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'expiry', - type: 'uint256', - }, - { - internalType: 'uint8', - name: 'v', - type: 'uint8', - }, - { - internalType: 'bytes32', - name: 'r', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 's', - type: 'bytes32', - }, - ], - name: 'delegateBySig', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'delegates', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'eip712Domain', - outputs: [ - { - internalType: 'bytes1', - name: 'fields', - type: 'bytes1', - }, - { - internalType: 'string', - name: 'name', - type: 'string', - }, - { - internalType: 'string', - name: 'version', - type: 'string', - }, - { - internalType: 'uint256', - name: 'chainId', - type: 'uint256', - }, - { - internalType: 'address', - name: 'verifyingContract', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'salt', - type: 'bytes32', - }, - { - internalType: 'uint256[]', - name: 'extensions', - type: 'uint256[]', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'timepoint', - type: 'uint256', - }, - ], - name: 'getPastTotalSupply', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'uint256', - name: 'timepoint', - type: 'uint256', - }, - ], - name: 'getPastVotes', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'getVotes', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'string', - name: 'name', - type: 'string', - }, - { - internalType: 'string', - name: 'symbol', - type: 'string', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'mint', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'name', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - ], - name: 'nonces', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'numCheckpoints', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'deadline', - type: 'uint256', - }, - { - internalType: 'uint8', - name: 'v', - type: 'uint8', - }, - { - internalType: 'bytes32', - name: 'r', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 's', - type: 'bytes32', - }, - ], - name: 'permit', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'symbol', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'totalSupply', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transfer', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transferAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'transferAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transferFrom', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'transferFromAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transferFromAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - ], - numDeployments: 1, - implementation: '0x4cED0596344b58Dd3b11FfC621DA85f7F57a5972', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelChainStateAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelChainStateAbi.ts deleted file mode 100644 index fef3f7bd9..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelChainStateAbi.ts +++ /dev/null @@ -1,577 +0,0 @@ -export const contract = { - address: '0xf38F1e65adc58fc74BaaA132f645Aa5307F2d304', - abi: [ - { - inputs: [ - { - internalType: 'uint256', - name: 'timeToFinalize', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'blocksPerCommitInterval', - type: 'uint256', - }, - { - internalType: 'uint32', - name: 'commitCooldown', - type: 'uint32', - }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'CannotRecommit', - type: 'error', - }, - { - inputs: [], - name: 'CommitCooldownTooLarge', - type: 'error', - }, - { - inputs: [], - name: 'FinalizationIsGtCooldown', - type: 'error', - }, - { - inputs: [], - name: 'TimeToFinalizeTooLarge', - type: 'error', - }, - { - inputs: [], - name: 'UnknownBlock', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'previousAdmin', - type: 'address', - }, - { - indexed: false, - internalType: 'address', - name: 'newAdmin', - type: 'address', - }, - ], - name: 'AdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'beacon', - type: 'address', - }, - ], - name: 'BeaconUpgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'commitHeight', - type: 'uint256', - }, - { - indexed: false, - internalType: 'bytes32', - name: 'blockHash', - type: 'bytes32', - }, - ], - name: 'CommitSubmitted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint8', - name: 'version', - type: 'uint8', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - inputs: [], - name: 'BLOCKS_PER_COMMIT_INTERVAL', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'COMMITTER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'COMMIT_COOLDOWN', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'NUM_COMMIT_SLOTS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'TIME_TO_FINALIZE', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'commitHeight', - type: 'uint256', - }, - ], - name: 'blockHashAtCommit', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'blockHash', - type: 'bytes32', - }, - { - internalType: 'uint256', - name: 'commitHeight', - type: 'uint256', - }, - ], - name: 'commit', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'blockHash', - type: 'bytes32', - }, - { - internalType: 'uint256', - name: 'blockHeight', - type: 'uint256', - }, - ], - name: 'finalized', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - ], - name: 'upgradeTo', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - ], - numDeployments: 4, - implementation: '0xdCF1bdBF5341c15e9C1285202f6F6bEA70Db6172', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelERC20GatewayV4Abi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelERC20GatewayV4Abi.ts deleted file mode 100644 index 19995df04..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelERC20GatewayV4Abi.ts +++ /dev/null @@ -1,917 +0,0 @@ -export const contract = { - address: '0xd1d5a4379dccC46D5c8D1c6c2656ce705698e359', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'BridgeFull', - type: 'error', - }, - { - inputs: [], - name: 'CallerIsNotPortal', - type: 'error', - }, - { - inputs: [], - name: 'CannotDepositZero', - type: 'error', - }, - { - inputs: [], - name: 'CannotWithdrawZero', - type: 'error', - }, - { - inputs: [], - name: 'GlobalDepositLimit', - type: 'error', - }, - { - inputs: [], - name: 'InvalidAmount', - type: 'error', - }, - { - inputs: [], - name: 'InvalidAssetIssuerID', - type: 'error', - }, - { - inputs: [], - name: 'InvalidMessageSender', - type: 'error', - }, - { - inputs: [], - name: 'InvalidSender', - type: 'error', - }, - { - inputs: [], - name: 'RateLimitExceeded', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'previousAdmin', - type: 'address', - }, - { - indexed: false, - internalType: 'address', - name: 'newAdmin', - type: 'address', - }, - ], - name: 'AdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'beacon', - type: 'address', - }, - ], - name: 'BeaconUpgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Deposit', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint8', - name: 'version', - type: 'uint8', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'bool', - name: 'status', - type: 'bool', - }, - ], - name: 'RateLimitStatusUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'RateLimitUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Withdrawal', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'FUEL_ASSET_DECIMALS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'SET_RATE_LIMITER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'assetIssuerId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'currentPeriodAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'currentPeriodEnd', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'to', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'deposit', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - ], - name: 'depositLimits', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'to', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'depositWithData', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - { - internalType: 'uint256', - name: 'l2BurntAmount', - type: 'uint256', - }, - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - name: 'finalizeWithdrawal', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'fuelMessagePortal', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'contract FuelMessagePortal', - name: 'fuelMessagePortal', - type: 'address', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'limitAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'rateLimitDuration', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - name: 'rateLimitStatus', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bool', - name: 'value', - type: 'bool', - }, - ], - name: 'requireWhitelist', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'rescueETH', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_token', - type: 'address', - }, - { - internalType: 'uint256', - name: '_amount', - type: 'uint256', - }, - { - internalType: 'uint256', - name: '_rateLimitDuration', - type: 'uint256', - }, - ], - name: 'resetRateLimitAmount', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - ], - name: 'sendMetadata', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'id', - type: 'bytes32', - }, - ], - name: 'setAssetIssuerId', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'token', - type: 'address', - }, - { - internalType: 'uint256', - name: 'limit', - type: 'uint256', - }, - ], - name: 'setGlobalDepositLimit', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'tokenAddress', - type: 'address', - }, - ], - name: 'tokensDeposited', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_token', - type: 'address', - }, - { - internalType: 'bool', - name: '_rateLimitStatus', - type: 'bool', - }, - ], - name: 'updateRateLimitStatus', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - ], - name: 'upgradeTo', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'whitelistRequired', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - numDeployments: 2, - implementation: '0xEBFB69C26067777b262Ab5Da74A47e44bfc78EA4', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelMessagePortalAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelMessagePortalAbi.ts deleted file mode 100644 index 1a01ea50a..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelMessagePortalAbi.ts +++ /dev/null @@ -1,1165 +0,0 @@ -export const contract = { - address: '0x01855B78C1f8868DE70e84507ec735983bf262dA', - abi: [ - { - inputs: [ - { - internalType: 'uint256', - name: '_depositLimitGlobal', - type: 'uint256', - }, - { - internalType: 'uint256', - name: '_rateLimitDuration', - type: 'uint256', - }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AlreadyRelayed', - type: 'error', - }, - { - inputs: [], - name: 'AmountPrecisionIncompatibility', - type: 'error', - }, - { - inputs: [], - name: 'AmountTooBig', - type: 'error', - }, - { - inputs: [], - name: 'CurrentMessageSenderNotSet', - type: 'error', - }, - { - inputs: [], - name: 'GlobalDepositLimit', - type: 'error', - }, - { - inputs: [], - name: 'InvalidBlockInHistoryProof', - type: 'error', - }, - { - inputs: [], - name: 'InvalidMessageInBlockProof', - type: 'error', - }, - { - inputs: [], - name: 'MessageBlacklisted', - type: 'error', - }, - { - inputs: [], - name: 'MessageDataTooLarge', - type: 'error', - }, - { - inputs: [], - name: 'MessageRelayFailed', - type: 'error', - }, - { - inputs: [], - name: 'NotSupported', - type: 'error', - }, - { - inputs: [], - name: 'RateLimitExceeded', - type: 'error', - }, - { - inputs: [], - name: 'ReentrancyGuardReentrantCall', - type: 'error', - }, - { - inputs: [], - name: 'UnfinalizedBlock', - type: 'error', - }, - { - inputs: [], - name: 'WithdrawalsPaused', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'previousAdmin', - type: 'address', - }, - { - indexed: false, - internalType: 'address', - name: 'newAdmin', - type: 'address', - }, - ], - name: 'AdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'beacon', - type: 'address', - }, - ], - name: 'BeaconUpgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'oldValue', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'newValue', - type: 'address', - }, - ], - name: 'FuelChainStateUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint8', - name: 'version', - type: 'uint8', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - indexed: false, - internalType: 'uint64', - name: 'amount', - type: 'uint64', - }, - ], - name: 'MessageRelayed', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint64', - name: 'amount', - type: 'uint64', - }, - { - indexed: false, - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'MessageSent', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'bool', - name: 'status', - type: 'bool', - }, - ], - name: 'RateLimitStatusUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'ResetRateLimit', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'ETH_DECIMALS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'FUEL_BASE_ASSET_DECIMALS', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'MAX_MESSAGE_DATA_SIZE', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PRECISION', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'RATE_LIMIT_DURATION', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'SET_RATE_LIMITER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - ], - name: 'addMessageToBlacklist', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'currentPeriodAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'currentPeriodEnd', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - ], - name: 'depositETH', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'depositLimitGlobal', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'fuelBaseAssetDecimals', - outputs: [ - { - internalType: 'uint8', - name: '', - type: 'uint8', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [], - name: 'fuelChainStateContract', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'getNextOutgoingMessageNonce', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - ], - name: 'incomingMessageSuccessful', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'contract FuelChainState', - name: '', - type: 'address', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'contract FuelChainState', - name: 'fuelChainState', - type: 'address', - }, - { - internalType: 'uint256', - name: '_limitAmount', - type: 'uint256', - }, - ], - name: 'initializerV3', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'limitAmount', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - name: 'messageIsBlacklisted', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'messageSender', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'pauseWithdrawals', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'rateLimitEnabled', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_limitAmount', - type: 'uint256', - }, - ], - name: 'reinitializeV3', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - components: [ - { - internalType: 'bytes32', - name: 'sender', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'nonce', - type: 'bytes32', - }, - { - internalType: 'uint64', - name: 'amount', - type: 'uint64', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - internalType: 'struct Message', - name: 'message', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32', - name: 'prevRoot', - type: 'bytes32', - }, - { - internalType: 'uint32', - name: 'height', - type: 'uint32', - }, - { - internalType: 'uint64', - name: 'timestamp', - type: 'uint64', - }, - { - internalType: 'bytes32', - name: 'applicationHash', - type: 'bytes32', - }, - ], - internalType: 'struct FuelBlockHeaderLite', - name: 'rootBlockHeader', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32', - name: 'prevRoot', - type: 'bytes32', - }, - { - internalType: 'uint64', - name: 'timestamp', - type: 'uint64', - }, - { - internalType: 'uint64', - name: 'daHeight', - type: 'uint64', - }, - { - internalType: 'uint32', - name: 'outputMessagesCount', - type: 'uint32', - }, - { - internalType: 'uint32', - name: 'consensusParametersVersion', - type: 'uint32', - }, - { - internalType: 'uint32', - name: 'stateTransitionBytecodeVersion', - type: 'uint32', - }, - { - internalType: 'uint32', - name: 'height', - type: 'uint32', - }, - { - internalType: 'bytes32', - name: 'txRoot', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'outputMessagesRoot', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'eventInboxRoot', - type: 'bytes32', - }, - { - internalType: 'uint16', - name: 'txCount', - type: 'uint16', - }, - ], - internalType: 'struct FuelBlockHeader', - name: 'blockHeader', - type: 'tuple', - }, - { - components: [ - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'bytes32[]', - name: 'proof', - type: 'bytes32[]', - }, - ], - internalType: 'struct MerkleProof', - name: 'blockInHistoryProof', - type: 'tuple', - }, - { - components: [ - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'bytes32[]', - name: 'proof', - type: 'bytes32[]', - }, - ], - internalType: 'struct MerkleProof', - name: 'messageInBlockProof', - type: 'tuple', - }, - ], - name: 'relayMessage', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'messageId', - type: 'bytes32', - }, - ], - name: 'removeMessageFromBlacklist', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_amount', - type: 'uint256', - }, - ], - name: 'resetRateLimitAmount', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'recipient', - type: 'bytes32', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'sendMessage', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newFuelChainState', - type: 'address', - }, - ], - name: 'setFuelChainState', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'totalDeposited', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'unpauseWithdrawals', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bool', - name: 'value', - type: 'bool', - }, - ], - name: 'updateRateLimitStatus', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - ], - name: 'upgradeTo', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'withdrawalsPaused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - numDeployments: 4, - implementation: '0xF8F2AEdde6AEBB164f804f78Cc95FBCCc3d642A1', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelStreamXAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelStreamXAbi.ts deleted file mode 100644 index 91f97854d..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/fuelStreamXAbi.ts +++ /dev/null @@ -1,1275 +0,0 @@ -export const contract = { - address: '0x130F143e0F6d87371ca510e11340C2F3cD407a2b', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [], - name: 'BridgeCommitmentNotFound', - type: 'error', - }, - { - inputs: [], - name: 'CommitmentNotFinalized', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [], - name: 'EnforcedPause', - type: 'error', - }, - { - inputs: [], - name: 'ExpectedPause', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint8', - name: 'char', - type: 'uint8', - }, - ], - name: 'InvalidCharacter', - type: 'error', - }, - { - inputs: [], - name: 'InvalidCommitmentProof', - type: 'error', - }, - { - inputs: [], - name: 'InvalidExecTxResultCode', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [ - { - internalType: 'string', - name: 's', - type: 'string', - }, - ], - name: 'InvalidIntString', - type: 'error', - }, - { - inputs: [], - name: 'InvalidProofNonce', - type: 'error', - }, - { - inputs: [], - name: 'InvalidStringLength', - type: 'error', - }, - { - inputs: [], - name: 'InvalidToken', - type: 'error', - }, - { - inputs: [], - name: 'InvalidTxResultProof', - type: 'error', - }, - { - inputs: [ - { - internalType: 'string', - name: 's', - type: 'string', - }, - ], - name: 'InvalidUintString', - type: 'error', - }, - { - inputs: [], - name: 'LatestHeaderNotFound', - type: 'error', - }, - { - inputs: [], - name: 'Missing0xPrefix', - type: 'error', - }, - { - inputs: [], - name: 'NonceAlreadyUsed', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [], - name: 'TargetBlockNotInRange', - type: 'error', - }, - { - inputs: [], - name: 'TrustedBlockMismatch', - type: 'error', - }, - { - inputs: [], - name: 'TrustedHeaderMismatch', - type: 'error', - }, - { - inputs: [], - name: 'TrustedHeaderNotFound', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint256', - name: 'proofNonce', - type: 'uint256', - }, - { - indexed: true, - internalType: 'uint64', - name: 'startBlock', - type: 'uint64', - }, - { - indexed: true, - internalType: 'uint64', - name: 'endBlock', - type: 'uint64', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'bridgeCommitment', - type: 'bytes32', - }, - ], - name: 'BridgeCommitmentStored', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'blockNumber', - type: 'uint64', - }, - { - indexed: false, - internalType: 'bytes32', - name: 'headerHash', - type: 'bytes32', - }, - ], - name: 'HeadUpdate', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - indexed: false, - internalType: 'int256', - name: 'delta', - type: 'int256', - }, - ], - name: 'SupplyDelta', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'WithdrawalProcessed', - type: 'event', - }, - { - inputs: [], - name: 'BRIDGE_COMMITMENT_MAX', - outputs: [ - { - internalType: 'uint64', - name: '', - type: 'uint64', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'GUARDIAN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'L2_ACCOUNT_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'L2_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint64', - name: '', - type: 'uint64', - }, - ], - name: 'blockHeightToHeaderHash', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - name: 'commitmentTimestamp', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'gateway', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'l2Account', - type: 'address', - }, - ], - name: 'grantL2AccountRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'headerRangeFunctionId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - components: [ - { - internalType: 'address', - name: 'vault', - type: 'address', - }, - { - internalType: 'address', - name: 'verifier', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'vKey', - type: 'bytes32', - }, - { - internalType: 'uint64', - name: 'height', - type: 'uint64', - }, - { - internalType: 'bytes32', - name: 'header', - type: 'bytes32', - }, - { - internalType: 'string', - name: 'tokenCosmosDenomination', - type: 'string', - }, - ], - internalType: 'struct FuelStreamX.InitParameters', - name: '_params', - type: 'tuple', - }, - ], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'header', - type: 'bytes32', - }, - ], - name: 'initializeTrustedHeader', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'latestBlock', - outputs: [ - { - internalType: 'uint64', - name: '', - type: 'uint64', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'nextHeaderFunctionId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_proofNonce', - type: 'uint256', - }, - { - components: [ - { - internalType: 'uint256', - name: 'height', - type: 'uint256', - }, - { - internalType: 'bytes32', - name: 'resultsHash', - type: 'bytes32', - }, - ], - internalType: 'struct BridgeCommitmentLeaf', - name: 'bridgeCommitmentLeaf', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'bridgeCommitmentLeafProof', - type: 'tuple', - }, - { - internalType: 'bytes', - name: 'txResultMarshalled', - type: 'bytes', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'txResultProof', - type: 'tuple', - }, - ], - name: 'processSequencerSupplyUpdate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_proofNonce', - type: 'uint256', - }, - { - components: [ - { - internalType: 'uint256', - name: 'height', - type: 'uint256', - }, - { - internalType: 'bytes32', - name: 'resultsHash', - type: 'bytes32', - }, - ], - internalType: 'struct BridgeCommitmentLeaf', - name: 'bridgeCommitmentLeaf', - type: 'tuple', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'bridgeCommitmentLeafProof', - type: 'tuple', - }, - { - internalType: 'bytes', - name: 'txResultMarshalled', - type: 'bytes', - }, - { - components: [ - { - internalType: 'bytes32[]', - name: 'sideNodes', - type: 'bytes32[]', - }, - { - internalType: 'uint256', - name: 'key', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'numLeaves', - type: 'uint256', - }, - ], - internalType: 'struct BinaryMerkleProof', - name: 'txResultProof', - type: 'tuple', - }, - ], - name: 'processSequencerWithdrawalMessage', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'recoveryRegistry', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'string', - name: 'denomination', - type: 'string', - }, - ], - name: 'setCosmosTokenDenomination', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newRecoveryRegistry', - type: 'address', - }, - ], - name: 'setRecoveryRegistry', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 'roleAdmin', - type: 'bytes32', - }, - ], - name: 'setRoleAdmin', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint32', - name: 'newTimeToFinalize', - type: 'uint32', - }, - ], - name: 'setTimeToFinalize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - name: 'state_bridgeCommitments', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'state_proofNonce', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'timeToFinalize', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'tokenCosmosDenominationHash', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes', - name: 'proof', - type: 'bytes', - }, - { - internalType: 'bytes', - name: 'publicValues', - type: 'bytes', - }, - ], - name: 'updateCommitHeaderRange', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint32', - name: '_height', - type: 'uint32', - }, - { - internalType: 'bytes32', - name: '_header', - type: 'bytes32', - }, - ], - name: 'updateGenesisState', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '_programVKey', - type: 'bytes32', - }, - ], - name: 'updateProgramVKey', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_verifier', - type: 'address', - }, - ], - name: 'updateVerifier', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - name: 'usedNonces', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'vKey', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'vault', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'verifier', - outputs: [ - { - internalType: 'contract ISP1Verifier', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - numDeployments: 2, - implementation: '0x5764aA4872cb753C066ccc174c9d4F824e4ecd4c', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/rewardsDistributorAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/rewardsDistributorAbi.ts deleted file mode 100644 index 07d24bd2b..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/rewardsDistributorAbi.ts +++ /dev/null @@ -1,721 +0,0 @@ -export const contract = { - address: '0x7c8deB33b992629130CE160f766881A191d874ce', - abi: [ - { - inputs: [ - { - internalType: 'address', - name: '_sequencerInterface', - type: 'address', - }, - { - internalType: 'address', - name: '_fuelToken', - type: 'address', - }, - { - internalType: 'bytes32', - name: '_l2StakingContractId', - type: 'bytes32', - }, - { - internalType: 'address', - name: '_fuelERC20Gateway', - type: 'address', - }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [], - name: 'CollateralLessThanUserDeposits', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [], - name: 'ExceedsLimit', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [], - name: 'InsufficientBalance', - type: 'error', - }, - { - inputs: [], - name: 'InvalidAmount', - type: 'error', - }, - { - inputs: [], - name: 'InvalidCaller', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInputs', - type: 'error', - }, - { - inputs: [], - name: 'NoRewardsToDistribute', - type: 'error', - }, - { - inputs: [], - name: 'NotAuthorized', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - inputs: [], - name: 'UserDepositsHigherThanCollateral', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'CollateralUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: '_foundationAddress', - type: 'address', - }, - ], - name: 'FoundationAddressUpdated', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address[]', - name: 'validators', - type: 'address[]', - }, - { - indexed: true, - internalType: 'uint256', - name: 'withdrawAmount', - type: 'uint256', - }, - ], - name: 'RewardsClaimed', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'totalRewards', - type: 'uint256', - }, - { - indexed: true, - internalType: 'uint256', - name: 'userShare', - type: 'uint256', - }, - { - indexed: true, - internalType: 'uint256', - name: 'foundationShare', - type: 'uint256', - }, - ], - name: 'RewardsDistributed', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'UserDepositsUpdated', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'OPERATOR_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'ORACLE_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address[]', - name: 'validators', - type: 'address[]', - }, - { - internalType: 'uint256', - name: 'withdrawAmount', - type: 'uint256', - }, - ], - name: 'claim', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'collateral', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'distribute', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'foundationAddress', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'fuelERC20Gateway', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'fuelToken', - outputs: [ - { - internalType: 'contract IERC1363', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'l2StakingContractId', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'sequencerInterface', - outputs: [ - { - internalType: 'contract ISequencerInterface', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: '_foundationAddress', - type: 'address', - }, - ], - name: 'setFoundationAddress', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: '_l2StakingContractId', - type: 'bytes32', - }, - ], - name: 'setL2StakingContractId', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_collateral', - type: 'uint256', - }, - ], - name: 'updateCollateral', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: '_userDeposits', - type: 'uint256', - }, - ], - name: 'updateUserDeposits', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'userDeposits', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ], - args: [ - '0x742C478a1951257E83d3aC8f3DFB3A8e6AB9a2E4', - '0xd7Fc4e8FB2c05567C313f4C9b9e07641a361a550', - '0x1fc685e1c63bbec4784079e60d4124537388f5b96773f16dfad454fae1e4f32e', - '0xa4cA04d02bfdC3A2DF56B9b6994520E69dF43F67', - ], - numDeployments: 1, - implementation: '0x920a73047c8d65db1FfB739E430e60ab6A42fd96', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/sequencerProxyAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/sequencerProxyAbi.ts deleted file mode 100644 index f0cf008c7..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/sequencerProxyAbi.ts +++ /dev/null @@ -1,1049 +0,0 @@ -export const contract = { - address: '0x0E5CAcD6899a1E2a4B4E6e0c8a1eA7feAD3E25eD', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [], - name: 'EnforcedPause', - type: 'error', - }, - { - inputs: [], - name: 'ExpectedPause', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: false, - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'Authorize', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'validator', - type: 'address', - }, - ], - name: 'ClaimRewards', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Delegate', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'depositor', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'lockup', - type: 'uint256', - }, - ], - name: 'Deposit', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - indexed: false, - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - { - indexed: false, - internalType: 'uint32', - name: 'expiration', - type: 'uint32', - }, - ], - name: 'Grant', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Paused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'srcValidator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'dstValidator', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Redelegate', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - indexed: false, - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - ], - name: 'Revoke', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - ], - name: 'SetRewardRecipient', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Transfer', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Unbond', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'Unpaused', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'voter', - type: 'address', - }, - { - indexed: true, - internalType: 'uint64', - name: 'proposalId', - type: 'uint64', - }, - { - indexed: false, - internalType: 'uint32', - name: 'option', - type: 'uint32', - }, - { - indexed: false, - internalType: 'string', - name: 'metadata', - type: 'string', - }, - ], - name: 'Vote', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'Withdraw', - type: 'event', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'INTERFACE_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PAUSER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'authorize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'validator', - type: 'address', - }, - ], - name: 'claimRewards', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'delegate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'depositor', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'lockup', - type: 'uint256', - }, - ], - name: 'deposit', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - { - internalType: 'uint32', - name: 'expiration', - type: 'uint32', - }, - ], - name: 'grant', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'pause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'paused', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'srcValidator', - type: 'address', - }, - { - internalType: 'address', - name: 'dstValidator', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'redelegate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'granter', - type: 'address', - }, - { - internalType: 'address', - name: 'grantee', - type: 'address', - }, - { - internalType: 'string', - name: 'msgTypeUrl', - type: 'string', - }, - ], - name: 'revoke', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - ], - name: 'setRewardRecipient', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'transfer', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - internalType: 'address', - name: 'validator', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'unbond', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'unpause', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'voter', - type: 'address', - }, - { - internalType: 'uint64', - name: 'proposalId', - type: 'uint64', - }, - { - internalType: 'uint32', - name: 'option', - type: 'uint32', - }, - { - internalType: 'string', - name: 'metadata', - type: 'string', - }, - ], - name: 'vote', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - internalType: 'uint256', - name: 'amount', - type: 'uint256', - }, - ], - name: 'withdraw', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - ], - args: [], - numDeployments: 2, - implementation: '0x929D04D1d1105f11fcFB49012c9AAAdF25909321', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/abi/testnet/tokenAbi.ts b/packages/graphql/src/application/uc/IndexL1/abi/testnet/tokenAbi.ts deleted file mode 100644 index 3a4242bf7..000000000 --- a/packages/graphql/src/application/uc/IndexL1/abi/testnet/tokenAbi.ts +++ /dev/null @@ -1,1538 +0,0 @@ -export const contract = { - address: '0xd7Fc4e8FB2c05567C313f4C9b9e07641a361a550', - abi: [ - { - inputs: [], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - inputs: [], - name: 'AccessControlBadConfirmation', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'neededRole', - type: 'bytes32', - }, - ], - name: 'AccessControlUnauthorizedAccount', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'target', - type: 'address', - }, - ], - name: 'AddressEmptyCode', - type: 'error', - }, - { - inputs: [], - name: 'CheckpointUnorderedInsertion', - type: 'error', - }, - { - inputs: [], - name: 'ECDSAInvalidSignature', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'length', - type: 'uint256', - }, - ], - name: 'ECDSAInvalidSignatureLength', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 's', - type: 'bytes32', - }, - ], - name: 'ECDSAInvalidSignatureS', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'ERC1363ApproveFailed', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC1363EOAReceiver', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC1363EOASpender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC1363InvalidReceiver', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC1363InvalidReceiverRetVal', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC1363InvalidSpender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC1363InvalidSpenderRetVal', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'ERC1363TransferFailed', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'ERC1363TransferFromFailed', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'ERC1967InvalidImplementation', - type: 'error', - }, - { - inputs: [], - name: 'ERC1967NonPayable', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'increasedSupply', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'cap', - type: 'uint256', - }, - ], - name: 'ERC20ExceededSafeSupply', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'allowance', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'needed', - type: 'uint256', - }, - ], - name: 'ERC20InsufficientAllowance', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'balance', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'needed', - type: 'uint256', - }, - ], - name: 'ERC20InsufficientBalance', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'approver', - type: 'address', - }, - ], - name: 'ERC20InvalidApprover', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'receiver', - type: 'address', - }, - ], - name: 'ERC20InvalidReceiver', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'ERC20InvalidSender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'ERC20InvalidSpender', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'deadline', - type: 'uint256', - }, - ], - name: 'ERC2612ExpiredSignature', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'signer', - type: 'address', - }, - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - ], - name: 'ERC2612InvalidSigner', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'timepoint', - type: 'uint256', - }, - { - internalType: 'uint48', - name: 'clock', - type: 'uint48', - }, - ], - name: 'ERC5805FutureLookup', - type: 'error', - }, - { - inputs: [], - name: 'ERC6372InconsistentClock', - type: 'error', - }, - { - inputs: [], - name: 'FailedInnerCall', - type: 'error', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'uint256', - name: 'currentNonce', - type: 'uint256', - }, - ], - name: 'InvalidAccountNonce', - type: 'error', - }, - { - inputs: [], - name: 'InvalidInitialization', - type: 'error', - }, - { - inputs: [], - name: 'NotInitializing', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint8', - name: 'bits', - type: 'uint8', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'SafeCastOverflowedUintDowncast', - type: 'error', - }, - { - inputs: [], - name: 'UUPSUnauthorizedCallContext', - type: 'error', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'slot', - type: 'bytes32', - }, - ], - name: 'UUPSUnsupportedProxiableUUID', - type: 'error', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'expiry', - type: 'uint256', - }, - ], - name: 'VotesExpiredSignature', - type: 'error', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'Approval', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegator', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'fromDelegate', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'toDelegate', - type: 'address', - }, - ], - name: 'DelegateChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'delegate', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'previousVotes', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'newVotes', - type: 'uint256', - }, - ], - name: 'DelegateVotesChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [], - name: 'EIP712DomainChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: false, - internalType: 'uint64', - name: 'version', - type: 'uint64', - }, - ], - name: 'Initialized', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'previousAdminRole', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'bytes32', - name: 'newAdminRole', - type: 'bytes32', - }, - ], - name: 'RoleAdminChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleGranted', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - indexed: true, - internalType: 'address', - name: 'account', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'sender', - type: 'address', - }, - ], - name: 'RoleRevoked', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'from', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'to', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'Transfer', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'implementation', - type: 'address', - }, - ], - name: 'Upgraded', - type: 'event', - }, - { - inputs: [], - name: 'CLOCK_MODE', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DEFAULT_ADMIN_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'DOMAIN_SEPARATOR', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'MINTER_ROLE', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'UPGRADE_INTERFACE_VERSION', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - ], - name: 'allowance', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'approve', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'approveAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'approveAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'balanceOf', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'burn', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'uint32', - name: 'pos', - type: 'uint32', - }, - ], - name: 'checkpoints', - outputs: [ - { - components: [ - { - internalType: 'uint48', - name: '_key', - type: 'uint48', - }, - { - internalType: 'uint208', - name: '_value', - type: 'uint208', - }, - ], - internalType: 'struct Checkpoints.Checkpoint208', - name: '', - type: 'tuple', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'clock', - outputs: [ - { - internalType: 'uint48', - name: '', - type: 'uint48', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'decimals', - outputs: [ - { - internalType: 'uint8', - name: '', - type: 'uint8', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegatee', - type: 'address', - }, - ], - name: 'delegate', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'delegatee', - type: 'address', - }, - { - internalType: 'uint256', - name: 'nonce', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'expiry', - type: 'uint256', - }, - { - internalType: 'uint8', - name: 'v', - type: 'uint8', - }, - { - internalType: 'bytes32', - name: 'r', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 's', - type: 'bytes32', - }, - ], - name: 'delegateBySig', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'delegates', - outputs: [ - { - internalType: 'address', - name: '', - type: 'address', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'eip712Domain', - outputs: [ - { - internalType: 'bytes1', - name: 'fields', - type: 'bytes1', - }, - { - internalType: 'string', - name: 'name', - type: 'string', - }, - { - internalType: 'string', - name: 'version', - type: 'string', - }, - { - internalType: 'uint256', - name: 'chainId', - type: 'uint256', - }, - { - internalType: 'address', - name: 'verifyingContract', - type: 'address', - }, - { - internalType: 'bytes32', - name: 'salt', - type: 'bytes32', - }, - { - internalType: 'uint256[]', - name: 'extensions', - type: 'uint256[]', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'uint256', - name: 'timepoint', - type: 'uint256', - }, - ], - name: 'getPastTotalSupply', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - { - internalType: 'uint256', - name: 'timepoint', - type: 'uint256', - }, - ], - name: 'getPastVotes', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - ], - name: 'getRoleAdmin', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'getVotes', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'grantRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'hasRole', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'initialize', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'mint', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'name', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - ], - name: 'nonces', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'numCheckpoints', - outputs: [ - { - internalType: 'uint32', - name: '', - type: 'uint32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - internalType: 'address', - name: 'spender', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'deadline', - type: 'uint256', - }, - { - internalType: 'uint8', - name: 'v', - type: 'uint8', - }, - { - internalType: 'bytes32', - name: 'r', - type: 'bytes32', - }, - { - internalType: 'bytes32', - name: 's', - type: 'bytes32', - }, - ], - name: 'permit', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [], - name: 'proxiableUUID', - outputs: [ - { - internalType: 'bytes32', - name: '', - type: 'bytes32', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'callerConfirmation', - type: 'address', - }, - ], - name: 'renounceRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes32', - name: 'role', - type: 'bytes32', - }, - { - internalType: 'address', - name: 'account', - type: 'address', - }, - ], - name: 'revokeRole', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'bytes4', - name: 'interfaceId', - type: 'bytes4', - }, - ], - name: 'supportsInterface', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'symbol', - outputs: [ - { - internalType: 'string', - name: '', - type: 'string', - }, - ], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [], - name: 'totalSupply', - outputs: [ - { - internalType: 'uint256', - name: '', - type: 'uint256', - }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transfer', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transferAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'transferAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transferFrom', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'transferFromAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'from', - type: 'address', - }, - { - internalType: 'address', - name: 'to', - type: 'address', - }, - { - internalType: 'uint256', - name: 'value', - type: 'uint256', - }, - ], - name: 'transferFromAndCall', - outputs: [ - { - internalType: 'bool', - name: '', - type: 'bool', - }, - ], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { - internalType: 'address', - name: 'newImplementation', - type: 'address', - }, - { - internalType: 'bytes', - name: 'data', - type: 'bytes', - }, - ], - name: 'upgradeToAndCall', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - ], - numDeployments: 2, - implementation: '0x3F4B9C3b06DF745c904DA02f93B459b2E9AC536c', -}; diff --git a/packages/graphql/src/application/uc/IndexL1/createL1Provider.ts b/packages/graphql/src/application/uc/IndexL1/createL1Provider.ts deleted file mode 100644 index 941a41572..000000000 --- a/packages/graphql/src/application/uc/IndexL1/createL1Provider.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { ethers } from 'ethers'; -import { env } from '~/config'; - -export function createL1Provider(): ethers.JsonRpcProvider { - const network = env.get('FUEL_CHAIN') || ''; - const base = network === 'mainnet' ? 'mainnet' : 'sepolia'; - return new ethers.JsonRpcProvider( - `https://eth-${base}.g.alchemy.com/v2/${env.get('ALCHEMY_API_KEY')}`, - ); -} diff --git a/packages/graphql/src/application/uc/IndexReceipt.ts b/packages/graphql/src/application/uc/IndexReceipt.ts deleted file mode 100644 index ef333af88..000000000 --- a/packages/graphql/src/application/uc/IndexReceipt.ts +++ /dev/null @@ -1,122 +0,0 @@ -import { logger } from '~/core/Logger'; -import ReceiptsParser from '~/domain/Transaction/ReceiptsParser'; -import type { GQLReceipt } from '~/graphql/generated/sdk'; -import type Transaction from '~/infra/dao/Transaction'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -/** Parsed receipt from ReceiptsParser with indent metadata */ -interface ParsedReceipt { - indent: number; - arrow: string; - type: string; - data: GQLReceipt; -} - -// PostgreSQL parameter limits -// Each receipt has 32 params, limit ~65k params → ~2000 receipts per batch -const PARAMS_PER_RECEIPT = 32; -const MAX_PARAMS = 32000; -const MAX_RECEIPTS_PER_BATCH = Math.floor(MAX_PARAMS / PARAMS_PER_RECEIPT); - -export default class IndexReceipts { - async execute(transaction: Transaction) { - const connection = DatabaseConnection.getInstance(); - const parser = new ReceiptsParser(); - const receipts = parser.parse(transaction.data.status.receipts); - - // Only persist MESSAGE_OUT receipts — the only type read by the API (BridgeDAO). - // All other receipt types are stored in transactions.data JSONB and never queried - // from the receipts table, saving ~99.99% of storage. - const messageOutReceipts = receipts.filter( - (r) => r.data.receiptType === 'MESSAGE_OUT', - ); - - if (messageOutReceipts.length === 0) return; - - logger.debug( - 'IndexReceipts', - `Inserting ${messageOutReceipts.length} MESSAGE_OUT receipts for tx ${transaction.transactionHash}`, - ); - - for ( - let i = 0; - i < messageOutReceipts.length; - i += MAX_RECEIPTS_PER_BATCH - ) { - const batch = messageOutReceipts.slice(i, i + MAX_RECEIPTS_PER_BATCH); - await this.insertReceiptsBatch(connection, transaction, batch); - } - } - - private async insertReceiptsBatch( - connection: DatabaseConnection, - transaction: Transaction, - receipts: ParsedReceipt[], - ): Promise { - // Build placeholders using base offset pattern - const placeholders = receipts - .map((_, idx) => { - const base = idx * PARAMS_PER_RECEIPT; - const params = Array.from( - { length: PARAMS_PER_RECEIPT }, - (_, i) => `$${base + i + 1}`, - ); - return `(${params.join(', ')})`; - }) - .join(', '); - - // Flatten all values - const values: (string | number | null | undefined)[] = []; - for (const receipt of receipts) { - values.push( - transaction.blockId, - transaction.id, - transaction.transactionHash, - receipt.indent, - receipt.data.amount, - receipt.data.assetId, - receipt.data.contractId, - receipt.data.data, - receipt.data.digest, - receipt.data.gas, - receipt.data.gasUsed, - receipt.data.id, - receipt.data.is, - receipt.data.len, - receipt.data.nonce, - receipt.data.param1, - receipt.data.param2, - receipt.data.pc, - receipt.data.ptr, - receipt.data.ra, - receipt.data.rb, - receipt.data.rc, - receipt.data.rd, - receipt.data.reason, - receipt.data.receiptType, - receipt.data.recipient, - receipt.data.result, - receipt.data.sender, - receipt.data.subId, - receipt.data.to, - receipt.data.toAddress, - receipt.data.val, - ); - } - - await connection.query( - `INSERT INTO indexer.receipts ( - block_id, transaction_id, tx_hash, indent, - receipt_amount, receipt_asset_id, receipt_contract_id, receipt_data, - receipt_digest, receipt_gas, receipt_gas_used, receipt_id, - receipt_is, receipt_len, receipt_nonce, receipt_param1, - receipt_param2, receipt_pc, receipt_ptr, receipt_ra, - receipt_rb, receipt_rc, receipt_rd, receipt_reason, - receipt_type, receipt_recipient, receipt_result, receipt_sender, - receipt_sub_id, receipt_to, receipt_to_address, receipt_val - ) VALUES ${placeholders} - ON CONFLICT DO NOTHING`, - values, - ); - } -} diff --git a/packages/graphql/src/application/uc/NewAddBlockRange.ts b/packages/graphql/src/application/uc/NewAddBlockRange.ts deleted file mode 100644 index 87fa21da5..000000000 --- a/packages/graphql/src/application/uc/NewAddBlockRange.ts +++ /dev/null @@ -1,470 +0,0 @@ -import { - FUEL_ASSET_ID, - SCRIPT_DATA_CLAIM_REWARDS, - SCRIPT_DATA_DEPOSIT, - SCRIPT_DATA_WITHDRAW, - STAKING_CONTRACT, - TREASURY_ADDRESSES, -} from '~/constants/staking'; -import { logger } from '~/core/Logger'; -import { client } from '~/graphql/GraphQLSDK'; -import type { - GQLBlock, - GQLContractCreated, - GQLInput, - GQLInputCoin, - GQLInputMessage, - GQLOutput, - GQLTransaction, -} from '~/graphql/generated/sdk'; -import Block from '~/infra/dao/Block'; -import Transaction from '~/infra/dao/Transaction'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; -import IndexAsset from './IndexAsset/IndexAsset'; -import IndexReceipts from './IndexReceipt'; - -const MAX_PG_PARAMS = 30000; - -function bulkPlaceholders(rows: number, cols: number): string { - return Array.from( - { length: rows }, - (_, i) => - `(${Array.from({ length: cols }, (_, j) => `$${i * cols + j + 1}`).join(', ')})`, - ).join(', '); -} - -function buildBulkInserts( - statement: string, - rows: any[][], - cols: number, -): { statement: string; params: any }[] { - if (rows.length === 0) return []; - const maxRowsPerBatch = Math.floor(MAX_PG_PARAMS / cols); - const queries: { statement: string; params: any }[] = []; - for (let i = 0; i < rows.length; i += maxRowsPerBatch) { - const batch = rows.slice(i, i + maxRowsPerBatch); - queries.push({ - statement: `${statement} ${bulkPlaceholders(batch.length, cols)} on conflict do nothing`, - params: batch.flat(), - }); - } - return queries; -} - -export default class NewAddBlockRange { - private indexAsset = new IndexAsset(); - private indexReceipts = new IndexReceipts(); - - async execute(input: Input) { - const { from, to } = input; - logger.debug('Consumer', `Syncing blocks: #${from} - #${to}`); - const blocksData = await this.getBlocks(from, to); - await this.processBlocks(blocksData, from, to); - } - - async processBlocks( - blocksData: GQLBlock[], - from: number, - to: number, - ): Promise { - const { indexAsset, indexReceipts } = this; - - if (blocksData.length === 0) { - logger.debug('Consumer', `No blocks to sync: #${from} - #${to}`); - return null; - } - const start = performance.now(); - const connection = DatabaseConnection.getInstance(); - - const allBlockIds = blocksData.map((b) => Number(b.header.height)); - const existingRows = await connection.query( - 'SELECT _id FROM indexer.blocks WHERE _id = ANY($1)', - [allBlockIds], - ); - const existingIds = new Set((existingRows as any[]).map((r) => r._id)); - - let highestSeen: number | null = null; - - for (const blockData of blocksData) { - const block = new Block({ data: blockData }); - highestSeen = block.id; - - if (existingIds.has(block.id)) continue; - - const txRows: any[][] = []; - const accountRows: any[][] = []; - const inputRows: any[][] = []; - const predicateRows: any[][] = []; - const otherQueries: { statement: string; params: any }[] = []; - - for (const [index, transactionData] of blockData.transactions.entries()) { - const transaction = new Transaction( - transactionData, - index, - block.id, - block.timestamp, - ); - txRows.push([ - transaction.id, - transaction.transactionHash, - transaction.timestamp, - transaction.data, - transaction.blockId, - ]); - if (transaction.data?.status) { - try { - await indexReceipts.execute(transaction); - } catch (e: any) { - logger.error('Consumer', 'Error indexing receipts', e); - } - } - const accounts = this.getAccounts(transactionData); - for (const accountHash of accounts) { - accountRows.push([ - transaction.id, - transaction.blockId, - transaction.transactionHash, - accountHash, - ]); - } - if (transaction.data?.status?.receipts) { - try { - await indexAsset.execute(transaction); - } catch (e: any) { - logger.error('Consumer', 'Error fetching assets', e); - } - } - if (transactionData.inputs) { - for (const inputData of transactionData.inputs) { - const nonce = (inputData as any).nonce ?? null; - inputRows.push([transaction.id, nonce]); - const predicate = this.getPredicate(inputData); - if (predicate) { - predicateRows.push([predicate.address, predicate.bytecode]); - } - } - } - if (transactionData.outputs) { - for (const outputData of transactionData.outputs) { - if ( - (outputData.__typename === 'CoinOutput' || - outputData.__typename === 'ChangeOutput' || - outputData.__typename === 'VariableOutput') && - outputData.assetId && - outputData.to && - outputData.amount === '1' - ) { - otherQueries.push({ - statement: `update indexer.assets_contracts set owner = $1 where asset_id = $2 and decimals = 0 and total_supply = '1'`, - params: [outputData.to, outputData.assetId], - }); - } - } - const contractIds = this.getContractIds(transactionData.outputs); - for (const contractId of contractIds) { - try { - logger.debug('Consumer', `Fetching contract: ${contractId}`); - const contract = (await client.sdk.contract({ id: contractId })) - .data.contract; - if (contract) { - logger.debug( - 'Consumer', - `Contract fetched successfully: ${contractId}`, - ); - otherQueries.push({ - statement: - 'insert into indexer.contracts (contract_hash, data) values ($1, $2) on conflict (contract_hash) do update set data = excluded.data', - params: [contract.id, contract], - }); - } else { - logger.error('Consumer', `Contract not found: ${contractId}`); - } - } catch (e: any) { - logger.error( - 'Consumer', - `Error fetching contract ${contractId}: ${e.message}`, - ); - } - } - } - const stakingQueries = this.getStakingAggQueries( - transactionData, - block.timestamp, - ); - otherQueries.push(...stakingQueries); - } - - const queries: { statement: string; params: any }[] = []; - - queries.push({ - statement: - 'insert into indexer.blocks (_id, id, timestamp, data, gas_used, total_fee, producer, transactions_count, da_height) values ($1, $2, $3, $4, $5, $6, $7, $8, $9) on conflict do nothing', - params: [ - block.id, - block.blockHash, - block.timestamp, - block.data, - block.totalGasUsed, - block.totalFee, - block.producer, - block.transactions.length, - block.data.header.daHeight, - ], - }); - - queries.push( - ...buildBulkInserts( - 'insert into indexer.transactions (_id, tx_hash, timestamp, data, block_id) values', - txRows, - 5, - ), - ...buildBulkInserts( - 'insert into indexer.transactions_accounts (_id, block_id, tx_hash, account_hash) values', - accountRows, - 4, - ), - ...buildBulkInserts( - 'insert into indexer.inputs (transaction_id, nonce) values', - inputRows, - 2, - ), - ...buildBulkInserts( - 'insert into indexer.predicates (address, bytecode) values', - predicateRows, - 2, - ), - ); - - queries.push(...otherQueries); - - queries.push({ - statement: ` - INSERT INTO indexer.hourly_statistics_agg (hour, total_fee, total_gas_used) - VALUES (date_trunc('hour', $1::timestamptz), $2, $3) - ON CONFLICT (hour) DO UPDATE - SET total_fee = hourly_statistics_agg.total_fee + excluded.total_fee, - total_gas_used = hourly_statistics_agg.total_gas_used + excluded.total_gas_used - `, - params: [ - block.timestamp, - block.totalFee ?? '0', - block.totalGasUsed ?? 0, - ], - }); - logger.debug('Consumer', `Persisting block: ${block.id}`); - await connection.executeTransaction(queries); - logger.debug('Consumer', `Persisted block: ${block.id}`); - } - const end = performance.now(); - const secs = Number.parseInt(`${(end - start) / 1000}`); - logger.debug('Consumer', `Synced blocks: #${from} - #${to} (${secs}s)`); - return highestSeen; - } - - async getBlocks(from: number, to: number): Promise { - let size = Math.max(to - from, 1); - size = from === 0 ? size + 1 : size; - const after = Math.max(to - size, 0); - const first = size; - const params = { - first: first < 0 ? -first : first, - ...(after ? { after: String(after) } : null), - }; - logger.debug('Consumer', `Fetching blocks: #${from} - #${to}`); - const { data } = await client.sdk.blocks(params); - // checking transactions integrity - for (const block of data.blocks.nodes) { - for (const transaction of block.transactions) { - // Hydrate block on tx so transaction on database keeps blocks in the database - if (!transaction.status) { - logger.warn( - 'Consumer', - `Transaction without status: ${transaction.id} in block #${block.header.height}`, - ); - } else if ( - ['FailureStatus', 'SuccessStatus'].includes( - transaction.status.__typename, - ) - ) { - (transaction.status as any).block = { - ...block, - transactions: [], - transactionIds: [], - }; - } - } - // Hydrate block on transaction so transaction on database keeps blocks in the database - (block as any).transactionIds = block.transactions.map( - (transaction) => transaction.id, - ); - } - logger.debug('Consumer', `Blocks fetched: #${from} - #${to}`); - return data.blocks.nodes as GQLBlock[]; - } - - getContractIds(outputs: GQLOutput[]) { - return ( - outputs.filter( - (output: GQLOutput) => - output.__typename === 'ContractCreated' && output.contract, - ) as GQLContractCreated[] - ).map((i) => i.contract); - } - - getPredicate(input: GQLInput) { - if (!['InputCoin', 'InputMessage'].includes(input.__typename)) return; - const bytecode = (input as GQLInputCoin | GQLInputMessage).predicate; - if (bytecode === '0x') return; - let address = ''; - if (input.__typename === 'InputCoin') address = input.owner; - if (input.__typename === 'InputMessage') address = input.sender; - return { bytecode, address }; - } - - getStakingAggQueries( - transactionData: GQLTransaction, - timestamp: string, - ): { statement: string; params: any }[] { - const queries: { statement: string; params: any }[] = []; - const day = new Date(timestamp).toISOString().split('T')[0]; - const scriptData = (transactionData as any).scriptData as - | string - | undefined; - const receipts = ((transactionData as any).status?.receipts || []) as any[]; - - // Detect L2 staking deposits - if (scriptData?.includes(SCRIPT_DATA_DEPOSIT)) { - for (const r of receipts) { - if ( - r.receiptType === 'CALL' && - r.to === STAKING_CONTRACT && - BigInt(r.amount || '0') > 0n - ) { - const amount = r.amount.toString(); - queries.push({ - statement: - 'INSERT INTO indexer.daily_staked_agg (day, daily_staked) VALUES ($1, $2) ON CONFLICT (day) DO UPDATE SET daily_staked = indexer.daily_staked_agg.daily_staked + $2', - params: [day, amount], - }); - queries.push({ - statement: - 'INSERT INTO indexer.total_staking_agg (day, l1_staked, l2_staked) VALUES ($1, 0, $2) ON CONFLICT (day) DO UPDATE SET l2_staked = indexer.total_staking_agg.l2_staked + $2', - params: [day, amount], - }); - } - } - } - - // Detect L2 unbonding - if (scriptData?.includes(SCRIPT_DATA_WITHDRAW)) { - for (const r of receipts) { - if ( - r.receiptType === 'TRANSFER_OUT' && - r.assetId === FUEL_ASSET_ID && - BigInt(r.amount || '0') > 0n - ) { - const amount = r.amount.toString(); - queries.push({ - statement: - 'INSERT INTO indexer.daily_unbond_agg (day, daily_unbond) VALUES ($1, $2) ON CONFLICT (day) DO UPDATE SET daily_unbond = indexer.daily_unbond_agg.daily_unbond + $2', - params: [day, amount], - }); - } - } - } - - // Detect L2 claim rewards - if (scriptData?.includes(SCRIPT_DATA_CLAIM_REWARDS)) { - for (const r of receipts) { - if ( - r.receiptType === 'TRANSFER_OUT' && - r.assetId === FUEL_ASSET_ID && - BigInt(r.amount || '0') > 0n - ) { - const amount = r.amount.toString(); - queries.push({ - statement: - 'INSERT INTO indexer.daily_claims_agg (day, daily_claims) VALUES ($1, $2) ON CONFLICT (day) DO UPDATE SET daily_claims = indexer.daily_claims_agg.daily_claims + $2', - params: [day, amount], - }); - } - } - } - - // Detect inflows/outflows — match original MV logic which checks - // transactions_accounts (includes both input owners and output recipients) - if (transactionData.outputs) { - const accounts = this.getAccounts(transactionData); - const hasTreasuryAccount = accounts.some((a) => - TREASURY_ADDRESSES.includes(a), - ); - if (hasTreasuryAccount) { - for (const output of transactionData.outputs) { - if ( - output.__typename === 'CoinOutput' && - (output as any).assetId === FUEL_ASSET_ID - ) { - const to = (output as any).to; - const amount = (output as any).amount?.toString(); - if (!amount) continue; - if (!TREASURY_ADDRESSES.includes(to)) { - queries.push({ - statement: - 'INSERT INTO indexer.daily_inflows_agg (day, amount) VALUES ($1, $2) ON CONFLICT (day) DO UPDATE SET amount = indexer.daily_inflows_agg.amount + $2', - params: [day, amount], - }); - } else { - queries.push({ - statement: - 'INSERT INTO indexer.daily_outflows_agg (day, amount) VALUES ($1, $2) ON CONFLICT (day) DO UPDATE SET amount = indexer.daily_outflows_agg.amount + $2', - params: [day, amount], - }); - } - } - } - } - } - - return queries; - } - - getAccounts(transaction: GQLTransaction) { - const accounts = []; - if (transaction.inputs) { - for (const input of transaction.inputs) { - if (input.__typename === 'InputCoin') { - accounts.push(input.owner); - } - if (input.__typename === 'InputMessage') { - accounts.push(input.recipient); - accounts.push(input.sender); - } - if (input.__typename === 'InputContract') { - accounts.push(input.contractId); - } - } - } - if (transaction.outputs) { - for (const output of transaction.outputs) { - if (output.__typename === 'ChangeOutput') { - accounts.push(output.to); - } - if (output.__typename === 'CoinOutput') { - accounts.push(output.to); - } - if (output.__typename === 'ContractCreated') { - accounts.push(output.contract); - } - if (output.__typename === 'VariableOutput') { - accounts.push(output.to); - } - } - } - return accounts; - } -} - -type Input = { - from: number; - to: number; -}; diff --git a/packages/graphql/src/application/uc/RunDatabaseJobs.ts b/packages/graphql/src/application/uc/RunDatabaseJobs.ts deleted file mode 100644 index aac8929e5..000000000 --- a/packages/graphql/src/application/uc/RunDatabaseJobs.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import { logger } from '~/core/Logger'; -import { DatabaseConnection } from '~/infra/database/DatabaseConnection'; - -const POLL_INTERVAL_MS = 5000; -const DEFAULT_STATEMENT_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes -const LOCK_TIMEOUT_MS = 10 * 1000; // 10 seconds — fail fast if lock contention - -export default class RunDatabaseJobs { - async execute() { - const connection = DatabaseConnection.getInstance(); - while (true) { - logger.debug('Database Jobs', 'Fetching jobs'); - await setTimeout(POLL_INTERVAL_MS); - const jobs = await connection.query( - 'select * from indexer.database_jobs where status = $1', - ['pending'], - ); - if (jobs.length === 0) continue; - for (const job of jobs) { - if (job.last_run) { - const now = new Date(); - const diff = (now.getTime() - job.last_run.getTime()) / 1000; - if (diff < job.interval_seconds) continue; - } - logger.debug('Database Jobs', 'Running query', job.query); - const startTime = performance.now(); - let status = 'done'; - let errorMessage = ''; - try { - await connection.queryWithTimeout( - job.query, - [], - DEFAULT_STATEMENT_TIMEOUT_MS, - LOCK_TIMEOUT_MS, - ); - if (job.recurrent) { - status = 'pending'; - } - const elapsed = ((performance.now() - startTime) / 1000).toFixed(1); - logger.debug('Database Jobs', `Completed in ${elapsed}s`, job.query); - } catch (e: any) { - errorMessage = e.message; - status = job.recurrent ? 'pending' : 'error'; - const elapsed = ((performance.now() - startTime) / 1000).toFixed(1); - logger.debug( - 'Database Jobs', - `Failed after ${elapsed}s: ${errorMessage}`, - job.query, - ); - } - await connection.query( - 'update indexer.database_jobs set status = $1, last_run = now(), error_message = $2 where _id = $3', - [status, errorMessage, job._id], - ); - } - } - } -} diff --git a/packages/graphql/src/assets.ts b/packages/graphql/src/assets.ts deleted file mode 100644 index 792c29f24..000000000 --- a/packages/graphql/src/assets.ts +++ /dev/null @@ -1,15 +0,0 @@ -import IndexAssetsRate from './application/uc/IndexAsset/IndexAssetsRate'; -import { logger } from './core/Logger'; -import Timer from './infra/timer/Timer'; - -async function main() { - logger.debug('Timer', 'Starting timer services'); - const indexAssetsRate = new IndexAssetsRate(); - Timer.register(300000, () => indexAssetsRate.execute()); -} - -main().catch(async (error: any) => { - logger.error('Syncer', 'Uncaught error', error); - logger.error('Timer', 'Process exit'); - process.exit(1); -}); diff --git a/packages/graphql/src/balance.ts b/packages/graphql/src/balance.ts deleted file mode 100644 index f1735a85b..000000000 --- a/packages/graphql/src/balance.ts +++ /dev/null @@ -1,15 +0,0 @@ -import IndexBalance from './application/uc/IndexBalance'; -import { logger } from './core/Logger'; -import Timer from './infra/timer/Timer'; - -async function main() { - logger.debug('Balance', 'Starting balance services'); - const indexBalance = new IndexBalance(); - Timer.register(1000, indexBalance.execute); -} - -main().catch(async (error: any) => { - logger.error('Balance', 'Uncaught error', error); - logger.error('Balance', 'Process exit'); - process.exit(1); -}); diff --git a/packages/graphql/src/config.ts b/packages/graphql/src/config.ts index 4af558e41..2304aec07 100644 --- a/packages/graphql/src/config.ts +++ b/packages/graphql/src/config.ts @@ -14,36 +14,11 @@ const falsy = zod.coerce const schema = zod.object({ DEBUG: falsy.optional(), FUEL_PROVIDER: zod.string(), - SERVER_PORT: zod.string(), - SERVER_API_KEY: zod.string().optional().nullable(), - DB_HOST: zod.string().optional(), - DB_PORT: zod.string().optional(), - DB_USER: zod.string().optional(), - DB_PASS: zod.string().optional(), - DB_NAME: zod.string().optional(), - DB_HOST_REPLICA: zod.string().optional(), - DB_PORT_REPLICA: zod.string().optional(), - DB_USER_REPLICA: zod.string().optional(), - DB_PASS_REPLICA: zod.string().optional(), - DB_NAME_REPLICA: zod.string().optional(), - SSL: falsy.optional(), - COINGECKO_API_KEY: zod.string().optional(), - ALCHEMY_API_KEY: zod.string().optional(), FUEL_CHAIN: zod.string().optional(), }); export const env = new Env(schema, { DEBUG: true, FUEL_PROVIDER: 'http://localhost:4000/v1/graphql', - SERVER_PORT: '3002', - SERVER_API_KEY: 'secret', - DB_HOST: 'localhost', - DB_PORT: '5435', - DB_USER: 'postgres', - DB_PASS: 'postgres', - DB_NAME: 'postgres', - SSL: false, - COINGECKO_API_KEY: '', - ALCHEMY_API_KEY: '', FUEL_CHAIN: '', }); diff --git a/packages/graphql/src/constants/staking.ts b/packages/graphql/src/constants/staking.ts deleted file mode 100644 index 43241f5c0..000000000 --- a/packages/graphql/src/constants/staking.ts +++ /dev/null @@ -1,22 +0,0 @@ -// Staking contract and asset constants used for incremental aggregation. -// These match the hardcoded values in migration 019 MV definitions. - -export const STAKING_CONTRACT = - '0x095faac82412324c60fdf6934405b5df9de49982284779536218d16d5ee3dc4c'; - -export const FUEL_ASSET_ID = - '0x1d5d97005e41cae2187a895fd8eab0506111e0e2f3331cd3912c15c24e3c1d82'; - -export const TREASURY_ADDRESSES = [ - '0xdb491b442f68ebaa785f077805158ebfddeede7063f16d5a26e1073ff6987601', - '0xafdda1cd084ed0f56d35f570b2e9d34e7c7380191058e2a2fb16e0c58cbbc7c2', -]; - -// Hex-encoded scriptData substrings that identify staking operations -export const SCRIPT_DATA_DEPOSIT = '76465706f736974'; // "deposit" -export const SCRIPT_DATA_WITHDRAW = '87769746864726177'; // "withdraw" -export const SCRIPT_DATA_CLAIM_REWARDS = 'd636c61696d5f72657761726473'; // "claim_rewards" - -// Cosmos excluded delegator (internal/system delegator) -export const COSMOS_EXCLUDED_DELEGATOR = - '0x85308a35b3ad660213ea91a5d37bbf9620708ecc'; diff --git a/packages/graphql/src/core/Resolver.ts b/packages/graphql/src/core/Resolver.ts deleted file mode 100644 index a4dcd7c6c..000000000 --- a/packages/graphql/src/core/Resolver.ts +++ /dev/null @@ -1,16 +0,0 @@ -import type { IResolvers } from '@graphql-tools/utils'; -import type { GraphQLContext } from '~/graphql/GraphQLContext'; - -type Resolvers = IResolvers; - -export class ResolverAdapter { - private resolvers: Resolvers = {}; - - setResolvers(resolvers: Resolvers) { - this.resolvers = resolvers; - } - - getResolvers() { - return this.resolvers; - } -} diff --git a/packages/graphql/src/cosmos.ts b/packages/graphql/src/cosmos.ts deleted file mode 100644 index 59130a63a..000000000 --- a/packages/graphql/src/cosmos.ts +++ /dev/null @@ -1,14 +0,0 @@ -import IndexCosmos from './application/uc/IndexCosmos'; -import { logger } from './core/Logger'; - -async function main() { - logger.debug('Cosmos', 'Starting cosmos services'); - const indexCosmos = new IndexCosmos(); - await indexCosmos.execute(); -} - -main().catch(async (error: any) => { - logger.error('Cosmos', 'Uncaught error', error); - logger.error('Cosmos', 'Process exit'); - process.exit(1); -}); diff --git a/packages/graphql/src/domain/Block/vo/BlockProducer.ts b/packages/graphql/src/domain/Block/vo/BlockProducer.ts index 4f298aa89..f1b888cbf 100644 --- a/packages/graphql/src/domain/Block/vo/BlockProducer.ts +++ b/packages/graphql/src/domain/Block/vo/BlockProducer.ts @@ -1,8 +1,6 @@ import { varchar } from 'drizzle-orm/pg-core'; -import { Signer } from 'fuels'; import { Address } from '~/core/Address'; import { ValueObject } from '~/core/ValueObject'; -import { client } from '~/graphql/GraphQLSDK'; interface Props { value: Address | null; @@ -19,18 +17,6 @@ export class BlockProducer extends ValueObject { return new BlockProducer({ value: address }); } - static async fromSdk() { - // TODO: get from database - const blocks = await client.sdk.blocks({ first: 2 }); - const block = blocks.data.blocks.nodes[0]; - if (block.consensus.__typename === 'Genesis') { - return null; - } - const signature = block.consensus.signature; - const producer = Signer.recoverAddress(block.id, signature).toString(); - return producer; - } - value() { return this.props.value; } diff --git a/packages/graphql/src/execute-contract.ts b/packages/graphql/src/execute-contract.ts deleted file mode 100644 index 1239d4896..000000000 --- a/packages/graphql/src/execute-contract.ts +++ /dev/null @@ -1,2872 +0,0 @@ -import { Contract, Provider } from 'fuels'; -import { DatabaseConnection } from './infra/database/DatabaseConnection'; - -const _connection = DatabaseConnection.getInstance(); - -(async () => { - await execute(); -})(); - -async function execute() { - const contractId = - '0x3f3f87bb15c693784e90521c64bac855ce23d971356a6ccd57aa92e02e696432'; - const assetId = - '0xa134d7fa9bbba3474af4c602a53929767acd23bd36d5e870b40cb6f8aa0f7922'; - const provider = new Provider('https://mainnet.fuel.network/v1/graphql'); - const contract = new Contract(contractId, abi, provider); - const asset: any = {}; - const outputName = await contract.functions.name({ bits: assetId }).dryRun(); - asset.name = outputName.value; - const outputSymbol = await contract.functions - .symbol({ bits: assetId }) - .dryRun(); - asset.symbol = outputSymbol.value; - const outputDecimals = await contract.functions - .decimals({ bits: assetId }) - .dryRun(); - asset.decimals = outputDecimals.value; - const { value } = await contract.functions - .metadata( - { - bits: assetId, - }, - 'uri', - ) - .get(); - console.log(asset); - console.log(value?.String); -} - -const abi = { - programType: 'contract', - specVersion: '1', - encodingVersion: '1', - concreteTypes: [ - { - type: '()', - concreteTypeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - type: 'b256', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - type: 'bool', - concreteTypeId: - 'b760f44fa5965c2474a3b471467a22c43185152129295af588b022ae50b50903', - }, - { - type: 'enum errors::MintError', - concreteTypeId: - 'ee89c439b5472cab716006d7c677d16e15301e6c82cfce12cebfa57919f537de', - metadataTypeId: 0, - }, - { - type: 'enum errors::SetError', - concreteTypeId: - 'bf6597cf3d56a5e47a920520e275ccd481a27e7c988ea6af6f253170d5374c5a', - metadataTypeId: 1, - }, - { - type: 'enum standards::src5::AccessError', - concreteTypeId: - '3f702ea3351c9c1ece2b84048006c8034a24cbc2bad2e740d0412b4172951d3d', - metadataTypeId: 2, - }, - { - type: 'enum standards::src5::State', - concreteTypeId: - '192bc7098e2fe60635a9918afb563e4e5419d386da2bdbf0d716b4bc8549802c', - metadataTypeId: 3, - }, - { - type: 'enum standards::src7::Metadata', - concreteTypeId: - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - metadataTypeId: 4, - }, - { - type: 'enum std::identity::Identity', - concreteTypeId: - 'ab7cd04e05be58e3fc15d424c2c4a57f824a2a2d97d67252440a3925ebdc1335', - metadataTypeId: 5, - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '0c2beb9013490c4f753f2757dfe2d8340b22ce3827d596d81d249b7038033cb6', - metadataTypeId: 6, - typeArguments: [ - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - metadataTypeId: 6, - typeArguments: [ - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - metadataTypeId: 6, - typeArguments: [ - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - metadataTypeId: 6, - typeArguments: [ - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - metadataTypeId: 6, - typeArguments: [ - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - ], - }, - { - type: 'enum sway_libs::asset::errors::BurnError', - concreteTypeId: - '3acdc2adac8e0589c5864525e0edc9dc61a9571a4d09c3c57b58ea76d33f4b46', - metadataTypeId: 7, - }, - { - type: 'enum sway_libs::asset::errors::MintError', - concreteTypeId: - 'dff9dfec998a49b40f1c4b09567400f0e712aaf939c08f7d07bc5c63116e1084', - metadataTypeId: 8, - }, - { - type: 'enum sway_libs::asset::errors::SetMetadataError', - concreteTypeId: - 'c6c09c148c1a1341c7ab81697b3545cc695fa67668a169cddc59790a9a0b6b44', - metadataTypeId: 9, - }, - { - type: 'enum sway_libs::ownership::errors::InitializationError', - concreteTypeId: - '1dfe7feadc1d9667a4351761230f948744068a090fe91b1bc6763a90ed5d3893', - metadataTypeId: 10, - }, - { - type: 'enum sway_libs::pausable::errors::PauseError', - concreteTypeId: - '8b3afcadf894415a10b09fc3717487e33802c8ffbb030edafe84ca4a71b280bc', - metadataTypeId: 11, - }, - { - type: 'struct standards::src20::SetNameEvent', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - metadataTypeId: 14, - }, - { - type: 'struct standards::src20::SetSymbolEvent', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - metadataTypeId: 15, - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - metadataTypeId: 16, - }, - { - type: 'struct standards::src7::SetMetadataEvent', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - metadataTypeId: 17, - }, - { - type: 'struct std::asset_id::AssetId', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - metadataTypeId: 19, - }, - { - type: 'struct std::string::String', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - metadataTypeId: 23, - }, - { - type: 'struct sway_libs::ownership::events::OwnershipSet', - concreteTypeId: - 'e1ef35033ea9d2956f17c3292dea4a46ce7d61fdf37bbebe03b7b965073f43b5', - metadataTypeId: 24, - }, - { - type: 'u64', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - type: 'u8', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - ], - metadataTypes: [ - { - type: 'enum errors::MintError', - metadataTypeId: 0, - components: [ - { - name: 'CannotMintMoreThanOneNFTWithSubId', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'MaxNFTsMinted', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'NFTAlreadyMinted', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'SubIdCannotBeNone', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum errors::SetError', - metadataTypeId: 1, - components: [ - { - name: 'ValueAlreadySet', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src5::AccessError', - metadataTypeId: 2, - components: [ - { - name: 'NotOwner', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src5::State', - metadataTypeId: 3, - components: [ - { - name: 'Uninitialized', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'Initialized', - typeId: 5, - }, - { - name: 'Revoked', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src7::Metadata', - metadataTypeId: 4, - components: [ - { - name: 'B256', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'Bytes', - typeId: 20, - }, - { - name: 'Int', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'String', - typeId: 23, - }, - ], - }, - { - type: 'enum std::identity::Identity', - metadataTypeId: 5, - components: [ - { - name: 'Address', - typeId: 18, - }, - { - name: 'ContractId', - typeId: 22, - }, - ], - }, - { - type: 'enum std::option::Option', - metadataTypeId: 6, - components: [ - { - name: 'None', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'Some', - typeId: 12, - }, - ], - typeParameters: [12], - }, - { - type: 'enum sway_libs::asset::errors::BurnError', - metadataTypeId: 7, - components: [ - { - name: 'NotEnoughCoins', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'ZeroAmount', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::asset::errors::MintError', - metadataTypeId: 8, - components: [ - { - name: 'ZeroAmount', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::asset::errors::SetMetadataError', - metadataTypeId: 9, - components: [ - { - name: 'EmptyString', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'EmptyBytes', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::ownership::errors::InitializationError', - metadataTypeId: 10, - components: [ - { - name: 'CannotReinitialized', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::pausable::errors::PauseError', - metadataTypeId: 11, - components: [ - { - name: 'Paused', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'NotPaused', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'generic T', - metadataTypeId: 12, - }, - { - type: 'raw untyped ptr', - metadataTypeId: 13, - }, - { - type: 'struct standards::src20::SetNameEvent', - metadataTypeId: 14, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'name', - typeId: 6, - typeArguments: [ - { - name: '', - typeId: 23, - }, - ], - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct standards::src20::SetSymbolEvent', - metadataTypeId: 15, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'symbol', - typeId: 6, - typeArguments: [ - { - name: '', - typeId: 23, - }, - ], - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - metadataTypeId: 16, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'supply', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct standards::src7::SetMetadataEvent', - metadataTypeId: 17, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'metadata', - typeId: 6, - typeArguments: [ - { - name: '', - typeId: 4, - }, - ], - }, - { - name: 'key', - typeId: 23, - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct std::address::Address', - metadataTypeId: 18, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::asset_id::AssetId', - metadataTypeId: 19, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::bytes::Bytes', - metadataTypeId: 20, - components: [ - { - name: 'buf', - typeId: 21, - }, - { - name: 'len', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::bytes::RawBytes', - metadataTypeId: 21, - components: [ - { - name: 'ptr', - typeId: 13, - }, - { - name: 'cap', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::contract_id::ContractId', - metadataTypeId: 22, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::string::String', - metadataTypeId: 23, - components: [ - { - name: 'bytes', - typeId: 20, - }, - ], - }, - { - type: 'struct sway_libs::ownership::events::OwnershipSet', - metadataTypeId: 24, - components: [ - { - name: 'new_owner', - typeId: 5, - }, - ], - }, - ], - functions: [ - { - inputs: [ - { - name: '_asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'decimals', - output: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the number of decimals the asset uses.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' The standardized decimals for NFTs is 0u8.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the decimals.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - The decimal precision used by `asset`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssedId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [ - ' let decimals = contract_abi.decimals(asset).unwrap();', - ], - }, - { - name: 'doc-comment', - arguments: [' assert(decimals == 0u8);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'name', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the name of the asset, such as “Ether”.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the name.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * [Option] - The name of `asset`.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_ic: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let name = contract_abi.name(asset).unwrap();'], - }, - { - name: 'doc-comment', - arguments: [' assert(name.len() != 0);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'symbol', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the symbol of the asset, such as “ETH”.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the symbol.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * [Option] - The symbol of `asset`.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let symbol = contract_abi.symbol(asset).unwrap();'], - }, - { - name: 'doc-comment', - arguments: [' assert(symbol.len() != 0);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'total_assets', - output: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - attributes: [ - { - name: 'doc-comment', - arguments: [ - ' Returns the total number of individual NFTs for this contract.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [u64] - The number of assets that this contract has minted.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let total_assets = contract_abi.total_assets();'], - }, - { - name: 'doc-comment', - arguments: [' assert(total_assets != 0);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'total_supply', - output: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the total supply of coins for an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' This must always be at most 1 for NFTs.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the total supply.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - The total supply of coins for `asset`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [ - ' let total_supply = contract_abi.total_supply(asset).unwrap();', - ], - }, - { - name: 'doc-comment', - arguments: [' assert(total_supply == 1);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'sub_id', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'amount', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'burn', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Burns assets sent with the given `sub_id`.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' NOTE: The sha-256 hash of `(ContractId, SubId)` must match the `AssetId` where `ContractId` is the id of', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' the implementing contract and `SubId` is the given `sub_id` argument.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `sub_id`: [SubId] - The sub-identifier of the asset to burn.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `amount`: [u64] - The quantity of coins to burn.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the contract is paused.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src3::SRC3;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset_id: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SR3, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' contract_abi.burn {'], - }, - { - name: 'doc-comment', - arguments: [' gas: 10000,'], - }, - { - name: 'doc-comment', - arguments: [' coins: 1,'], - }, - { - name: 'doc-comment', - arguments: [' asset_id: AssetId,'], - }, - { - name: 'doc-comment', - arguments: [' } (ZERO_B256, 1);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'payable', - arguments: [], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'recipient', - concreteTypeId: - 'ab7cd04e05be58e3fc15d424c2c4a57f824a2a2d97d67252440a3925ebdc1335', - }, - { - name: 'sub_id', - concreteTypeId: - '0c2beb9013490c4f753f2757dfe2d8340b22ce3827d596d81d249b7038033cb6', - }, - { - name: 'amount', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'mint', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Mints new assets using the `sub_id` sub-identifier.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' This conforms to the SRC-20 NFT portion of the standard for a maximum', - ], - }, - { - name: 'doc-comment', - arguments: [' mint amount of 1 coin per asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `recipient`: [Identity] - The user to which the newly minted assets are transferred to.', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' * `sub_id`: [SubId] - The sub-identifier of the newly minted asset.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `amount`: [u64] - The quantity of coins to mint.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the contract is paused.'], - }, - { - name: 'doc-comment', - arguments: [' * When amount is greater than one.'], - }, - { - name: 'doc-comment', - arguments: [' * When the asset has already been minted.'], - }, - { - name: 'doc-comment', - arguments: [ - ' * When more than the MAX_SUPPLY NFTs have been minted.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `3`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src3::SRC3;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SR3, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [ - ' contract_abi.mint(Identity::ContractId(ContractId::this()), ZERO_B256, 1);', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'key', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'metadata', - output: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - attributes: [ - { - name: 'doc-comment', - arguments: [ - ' Returns metadata for the corresponding `asset` and `key`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the metadata.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `key`: [String] - The key to the specific metadata.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - `Some` metadata that corresponds to the `key` or `None`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src_7::{SRC7, Metadata};'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC7, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let key = String::from_ascii_str("image");'], - }, - { - name: 'doc-comment', - arguments: [' let data = contract_abi.metadata(asset, key);'], - }, - { - name: 'doc-comment', - arguments: [' assert(data.is_some());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'owner', - output: - '192bc7098e2fe60635a9918afb563e4e5419d386da2bdbf0d716b4bc8549802c', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the owner.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Return Values'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [State] - Represents the state of ownership for this contract.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use standards::src5::SRC5;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let ownership_abi = abi(contract_id, SRC_5);'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' match ownership_abi.owner() {'], - }, - { - name: 'doc-comment', - arguments: [ - ' State::Uninitalized => log("The ownership is uninitalized"),', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' State::Initialized(owner) => log("The ownership is initalized"),', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' State::Revoked => log("The ownership is revoked"),', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: '_asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: '_decimals', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - ], - name: 'set_decimals', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' This function should never be called.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' NFT decimals are always `0u8` and thus must not be set.', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' This function is an artifact of the SetAssetAttributes ABI definition,', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' but does not have a use in this contract as the decimal value is hardcoded.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the function is called.'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'name', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'set_name', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Sets the name of an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to set the name.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `name`: [String] - The name of the asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the owner of the contract.'], - }, - { - name: 'doc-comment', - arguments: [' * When the name has already been set for an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use asset::SetAssetAttributes;'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(asset: AssetId, contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [ - ' let set_abi = abi(SetAssetAttributes, contract_id);', - ], - }, - { - name: 'doc-comment', - arguments: [' let src_20_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let name = String::from_ascii_str("Ether");'], - }, - { - name: 'doc-comment', - arguments: [' set_abi.set_name(asset, name);'], - }, - { - name: 'doc-comment', - arguments: [' assert(src_20_abi.name(asset) == name);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'symbol', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'set_symbol', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Sets the symbol of an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to set the symbol.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `symbol`: [String] - The symbol of the asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the owner of the contract.'], - }, - { - name: 'doc-comment', - arguments: [' * When the symbol has already been set for an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use asset::SetAssetAttributes;'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(asset: AssetId, contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [ - ' let set_abi = abi(SetAssetAttributes, contract_id);', - ], - }, - { - name: 'doc-comment', - arguments: [' let src_20_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let symbol = String::from_ascii_str("ETH");'], - }, - { - name: 'doc-comment', - arguments: [' set_abi.set_symbol(asset, symbol);'], - }, - { - name: 'doc-comment', - arguments: [' assert(src_20_abi.symbol(asset) == symbol);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'key', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - { - name: 'metadata', - concreteTypeId: - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - }, - ], - name: 'set_metadata', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Stores metadata for a specific asset and key pair.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset for the metadata to be stored.', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' * `key`: [String] - The key for the metadata to be stored.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `metadata`: [Metadata] - The metadata to be stored.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * When the metadata has already been set for an asset.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Example'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use asset::metdata::SetAssetMetadata;'], - }, - { - name: 'doc-comment', - arguments: [' use src_7::{SRC7, Metadata};'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' fn foo(asset: AssetId, key: String, contract_id: ContractId, metadata: Metadata) {', - ], - }, - { - name: 'doc-comment', - arguments: [' let set_abi = abi(SetAssetMetadata, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let src_7_abi = abi(SRC7, contract);'], - }, - { - name: 'doc-comment', - arguments: [ - ' set_abi.set_metadata(storage.metadata, asset, key, metadata);', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(src_7_abi.metadata(asset, key) == metadata);', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [], - name: 'is_paused', - output: - 'b760f44fa5965c2474a3b471467a22c43185152129295af588b022ae50b50903', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns whether the contract is paused.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * [bool] - The pause state for the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use sway_libs::pausable::Pausable;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let pausable_abi = abi(Pausable, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' assert(!pausable_abi.is_paused());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'pause', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Pauses the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the contract owner.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use sway_libs::pausable::Pausable;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let pausable_abi = abi(Pausable, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' pausable_abi.pause();'], - }, - { - name: 'doc-comment', - arguments: [' assert(pausable_abi.is_paused());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [], - name: 'unpause', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Unpauses the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the contract owner.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use sway_libs::pausable::Pausable;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let pausable_abi = abi(Pausable, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' pausable_abi.unpause();'], - }, - { - name: 'doc-comment', - arguments: [' assert(!pausable_abi.is_paused());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'owner', - concreteTypeId: - 'ab7cd04e05be58e3fc15d424c2c4a57f824a2a2d97d67252440a3925ebdc1335', - }, - ], - name: 'constructor', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Sets the defaults for the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `owner`: [Identity] - The `Identity` that will be the first owner.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When ownership has been set before.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Acesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Write: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use standards::src5::SRC5;'], - }, - { - name: 'doc-comment', - arguments: [' use nft::Constructor;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract: ContractId, owner: Identity) {'], - }, - { - name: 'doc-comment', - arguments: [' let src_5_abi = abi(SRC5, contract.bits());'], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(src_5_abi.owner() == State::Uninitialized);', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' let constructor_abi = abi(Constructor, contract.bits());', - ], - }, - { - name: 'doc-comment', - arguments: [' constructor_abi.constructor(owner);'], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(src_5_abi.owner() == State::Initialized(owner));', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - ], - loggedTypes: [ - { - logId: '10032608944051208538', - concreteTypeId: - '8b3afcadf894415a10b09fc3717487e33802c8ffbb030edafe84ca4a71b280bc', - }, - { - logId: '4237256875605624201', - concreteTypeId: - '3acdc2adac8e0589c5864525e0edc9dc61a9571a4d09c3c57b58ea76d33f4b46', - }, - { - logId: '17462098202904023478', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - }, - { - logId: '17188485204969729195', - concreteTypeId: - 'ee89c439b5472cab716006d7c677d16e15301e6c82cfce12cebfa57919f537de', - }, - { - logId: '16139176946940135860', - concreteTypeId: - 'dff9dfec998a49b40f1c4b09567400f0e712aaf939c08f7d07bc5c63116e1084', - }, - { - logId: '13791596350235125220', - concreteTypeId: - 'bf6597cf3d56a5e47a920520e275ccd481a27e7c988ea6af6f253170d5374c5a', - }, - { - logId: '14321618427101975361', - concreteTypeId: - 'c6c09c148c1a1341c7ab81697b3545cc695fa67668a169cddc59790a9a0b6b44', - }, - { - logId: '7845998088195677205', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - }, - { - logId: '12152039456660331088', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - }, - { - logId: '17415926155927968170', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - }, - { - logId: '4571204900286667806', - concreteTypeId: - '3f702ea3351c9c1ece2b84048006c8034a24cbc2bad2e740d0412b4172951d3d', - }, - { - logId: '2161305517876418151', - concreteTypeId: - '1dfe7feadc1d9667a4351761230f948744068a090fe91b1bc6763a90ed5d3893', - }, - { - logId: '16280289466020123285', - concreteTypeId: - 'e1ef35033ea9d2956f17c3292dea4a46ce7d61fdf37bbebe03b7b965073f43b5', - }, - ], - messagesTypes: [], - configurables: [], -}; diff --git a/packages/graphql/src/generated/mocks.ts b/packages/graphql/src/generated/mocks.ts deleted file mode 100644 index 6e6b9aab4..000000000 --- a/packages/graphql/src/generated/mocks.ts +++ /dev/null @@ -1,964 +0,0 @@ -import { Account, Balance, BalanceConnection, BalanceEdge, BalanceFilterInput, Block, BlockConnection, BlockEdge, Breakpoint, ChainInfo, ChangeOutput, Coin, CoinConnection, CoinEdge, CoinFilterInput, CoinOutput, ConsensusParameters, Contract, ContractBalance, ContractBalanceConnection, ContractBalanceEdge, ContractBalanceFilterInput, ContractCreated, ContractOutput, ContractParameters, ExcludeInput, FailureStatus, FeeParameters, GasCosts, Genesis, GroupedInput, GroupedOutput, Header, HeavyOperation, InputCoin, InputContract, InputMessage, LightOperation, MerkleProof, Message, MessageCoin, MessageConnection, MessageEdge, MessageProof, MessageStatus, Mutation, NodeInfo, Operation, OperationReceipt, OutputBreakpoint, PageInfo, ParsedTime, PeerInfo, PoAConsensus, Policies, Predicate, PredicateParameters, ProgramState, Query, Receipt, RunResult, ScriptParameters, SearchAccount, SearchBlock, SearchContract, SearchResult, SearchTransaction, SpendQueryElementInput, SqueezedOutStatus, SubmittedStatus, Subscription, SuccessStatus, Token, Transaction, TransactionAccount, TransactionConnection, TransactionEdge, TxParameters, UtxoItem, VariableOutput, GroupedInputType, GroupedOutputType, MessageState, OperationType, ReceiptType, _ReturnType as ReturnType, RunState, TransactionAccountType, TransactionStatusType } from './types'; - -export const anAccount = (overrides?: Partial): { __typename: 'Account' } & Account => { - return { - __typename: 'Account', - address: overrides && overrides.hasOwnProperty('address') ? overrides.address! : 'autem', - name: overrides && overrides.hasOwnProperty('name') ? overrides.name! : 'nostrum', - url: overrides && overrides.hasOwnProperty('url') ? overrides.url! : 'rerum', - }; -}; - -export const aBalance = (overrides?: Partial): { __typename: 'Balance' } & Balance => { - return { - __typename: 'Balance', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0x0', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'a0f8od7pvhhubad7x3hz9o0zn7xp5j23', - owner: overrides && overrides.hasOwnProperty('owner') ? overrides.owner! : 'tx4go3g6en5w03qjzwnt6ugwv26qrm5q9mwtq5lp', - utxos: overrides && overrides.hasOwnProperty('utxos') ? overrides.utxos! : [anUtxoItem()], - }; -}; - -export const aBalanceConnection = (overrides?: Partial): { __typename: 'BalanceConnection' } & BalanceConnection => { - return { - __typename: 'BalanceConnection', - edges: overrides && overrides.hasOwnProperty('edges') ? overrides.edges! : [aBalanceEdge()], - nodes: overrides && overrides.hasOwnProperty('nodes') ? overrides.nodes! : [aBalance()], - pageInfo: overrides && overrides.hasOwnProperty('pageInfo') ? overrides.pageInfo! : aPageInfo(), - }; -}; - -export const aBalanceEdge = (overrides?: Partial): { __typename: 'BalanceEdge' } & BalanceEdge => { - return { - __typename: 'BalanceEdge', - cursor: overrides && overrides.hasOwnProperty('cursor') ? overrides.cursor! : 'tenetur', - node: overrides && overrides.hasOwnProperty('node') ? overrides.node! : aBalance(), - }; -}; - -export const aBalanceFilterInput = (overrides?: Partial): BalanceFilterInput => { - return { - owner: overrides && overrides.hasOwnProperty('owner') ? overrides.owner! : '9nrgo4xy0vszugxxsuu7t7k4heqvx2it46ns6n49', - }; -}; - -export const aBlock = (overrides?: Partial): { __typename: 'Block' } & Block => { - return { - __typename: 'Block', - consensus: overrides && overrides.hasOwnProperty('consensus') ? overrides.consensus! : aGenesis(), - header: overrides && overrides.hasOwnProperty('header') ? overrides.header! : aHeader(), - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'fuga', - producer: overrides && overrides.hasOwnProperty('producer') ? overrides.producer! : 'tf26peb03uo1z0i4l6d7yfnvuzumd2fiukebb742', - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : aParsedTime(), - totalGasUsed: overrides && overrides.hasOwnProperty('totalGasUsed') ? overrides.totalGasUsed! : '0x1', - transactions: overrides && overrides.hasOwnProperty('transactions') ? overrides.transactions! : [aTransaction()], - }; -}; - -export const aBlockConnection = (overrides?: Partial): { __typename: 'BlockConnection' } & BlockConnection => { - return { - __typename: 'BlockConnection', - edges: overrides && overrides.hasOwnProperty('edges') ? overrides.edges! : [aBlockEdge()], - nodes: overrides && overrides.hasOwnProperty('nodes') ? overrides.nodes! : [aBlock()], - pageInfo: overrides && overrides.hasOwnProperty('pageInfo') ? overrides.pageInfo! : aPageInfo(), - }; -}; - -export const aBlockEdge = (overrides?: Partial): { __typename: 'BlockEdge' } & BlockEdge => { - return { - __typename: 'BlockEdge', - cursor: overrides && overrides.hasOwnProperty('cursor') ? overrides.cursor! : 'id', - node: overrides && overrides.hasOwnProperty('node') ? overrides.node! : aBlock(), - }; -}; - -export const aBreakpoint = (overrides?: Partial): Breakpoint => { - return { - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : 'spxsyh8uujdpzc8kg4t7lkz0r7qmcdsb', - pc: overrides && overrides.hasOwnProperty('pc') ? overrides.pc! : '0xa', - }; -}; - -export const aChainInfo = (overrides?: Partial): { __typename: 'ChainInfo' } & ChainInfo => { - return { - __typename: 'ChainInfo', - consensusParameters: overrides && overrides.hasOwnProperty('consensusParameters') ? overrides.consensusParameters! : aConsensusParameters(), - daHeight: overrides && overrides.hasOwnProperty('daHeight') ? overrides.daHeight! : '0xE', - gasCosts: overrides && overrides.hasOwnProperty('gasCosts') ? overrides.gasCosts! : aGasCosts(), - latestBlock: overrides && overrides.hasOwnProperty('latestBlock') ? overrides.latestBlock! : aBlock(), - name: overrides && overrides.hasOwnProperty('name') ? overrides.name! : 'autem', - }; -}; - -export const aChangeOutput = (overrides?: Partial): { __typename: 'ChangeOutput' } & ChangeOutput => { - return { - __typename: 'ChangeOutput', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xD', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'e0jf4dwzgypv3lmvt8yed3ebs8sco6xm', - to: overrides && overrides.hasOwnProperty('to') ? overrides.to! : 'dhi4r4fhri7jpmudxj1zxawwhmvmg15ehun33smn', - }; -}; - -export const aCoin = (overrides?: Partial): { __typename: 'Coin' } & Coin => { - return { - __typename: 'Coin', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xD', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'vl8kx5cac3pojox0cdisfofoyu6smapv', - blockCreated: overrides && overrides.hasOwnProperty('blockCreated') ? overrides.blockCreated! : 'doloremque', - maturity: overrides && overrides.hasOwnProperty('maturity') ? overrides.maturity! : 'architecto', - owner: overrides && overrides.hasOwnProperty('owner') ? overrides.owner! : 'on6sn7qh1ssgeb35sg0so4u4lp3izj4yafvrlk8x', - txCreatedIdx: overrides && overrides.hasOwnProperty('txCreatedIdx') ? overrides.txCreatedIdx! : '0x7', - utxoId: overrides && overrides.hasOwnProperty('utxoId') ? overrides.utxoId! : '78r15xdj851q7w4q6k0tqeof9vlk0gns', - }; -}; - -export const aCoinConnection = (overrides?: Partial): { __typename: 'CoinConnection' } & CoinConnection => { - return { - __typename: 'CoinConnection', - edges: overrides && overrides.hasOwnProperty('edges') ? overrides.edges! : [aCoinEdge()], - nodes: overrides && overrides.hasOwnProperty('nodes') ? overrides.nodes! : [aCoin()], - pageInfo: overrides && overrides.hasOwnProperty('pageInfo') ? overrides.pageInfo! : aPageInfo(), - }; -}; - -export const aCoinEdge = (overrides?: Partial): { __typename: 'CoinEdge' } & CoinEdge => { - return { - __typename: 'CoinEdge', - cursor: overrides && overrides.hasOwnProperty('cursor') ? overrides.cursor! : 'excepturi', - node: overrides && overrides.hasOwnProperty('node') ? overrides.node! : aCoin(), - }; -}; - -export const aCoinFilterInput = (overrides?: Partial): CoinFilterInput => { - return { - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'kudfhe4l01ysp8358vb8xz1k8veh59hy', - owner: overrides && overrides.hasOwnProperty('owner') ? overrides.owner! : 'baoj8afcxig6c9huma1wloyvmbchd8yi7qa85afh', - }; -}; - -export const aCoinOutput = (overrides?: Partial): { __typename: 'CoinOutput' } & CoinOutput => { - return { - __typename: 'CoinOutput', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xD', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 't153mt7lkdbnhho3wb4ukkb48qhhudy7', - to: overrides && overrides.hasOwnProperty('to') ? overrides.to! : '9olpk2xb6cjl4kyy3he3py3yu0bkm85chtuggo6i', - }; -}; - -export const aConsensusParameters = (overrides?: Partial): { __typename: 'ConsensusParameters' } & ConsensusParameters => { - return { - __typename: 'ConsensusParameters', - baseAssetId: overrides && overrides.hasOwnProperty('baseAssetId') ? overrides.baseAssetId! : 'l2lmmdg42iyd8pb2v79vqcg6fnko5egl', - chainId: overrides && overrides.hasOwnProperty('chainId') ? overrides.chainId! : '0x3', - contractParams: overrides && overrides.hasOwnProperty('contractParams') ? overrides.contractParams! : aContractParameters(), - feeParams: overrides && overrides.hasOwnProperty('feeParams') ? overrides.feeParams! : aFeeParameters(), - gasCosts: overrides && overrides.hasOwnProperty('gasCosts') ? overrides.gasCosts! : aGasCosts(), - predicateParams: overrides && overrides.hasOwnProperty('predicateParams') ? overrides.predicateParams! : aPredicateParameters(), - scriptParams: overrides && overrides.hasOwnProperty('scriptParams') ? overrides.scriptParams! : aScriptParameters(), - txParams: overrides && overrides.hasOwnProperty('txParams') ? overrides.txParams! : aTxParameters(), - }; -}; - -export const aContract = (overrides?: Partial): { __typename: 'Contract' } & Contract => { - return { - __typename: 'Contract', - bytecode: overrides && overrides.hasOwnProperty('bytecode') ? overrides.bytecode! : '0x6092A6C7eb64c9b1A755Df9bE83fC7Bd5bFF2c090Df255Da243CAB4811Fc2016D2a2Ae93CFEDE4FD8d99ab3Dca0DDdAbc7CF1ba3FbAA761e3eC17f8d1609fD5e46BEFFD6886EB1BCA208bB2AE8bEDADF', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : '51d28wg0iw33x467k5qd81kn5b9wnrtg', - salt: overrides && overrides.hasOwnProperty('salt') ? overrides.salt! : 'repellendus', - }; -}; - -export const aContractBalance = (overrides?: Partial): { __typename: 'ContractBalance' } & ContractBalance => { - return { - __typename: 'ContractBalance', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xc', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'm1on4nvj5caxtv0dkued0ncku5ydtsxu', - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : '7bdxyt98z950w2en4wp4kh5fxekvlzqv', - }; -}; - -export const aContractBalanceConnection = (overrides?: Partial): { __typename: 'ContractBalanceConnection' } & ContractBalanceConnection => { - return { - __typename: 'ContractBalanceConnection', - edges: overrides && overrides.hasOwnProperty('edges') ? overrides.edges! : [aContractBalanceEdge()], - nodes: overrides && overrides.hasOwnProperty('nodes') ? overrides.nodes! : [aContractBalance()], - pageInfo: overrides && overrides.hasOwnProperty('pageInfo') ? overrides.pageInfo! : aPageInfo(), - }; -}; - -export const aContractBalanceEdge = (overrides?: Partial): { __typename: 'ContractBalanceEdge' } & ContractBalanceEdge => { - return { - __typename: 'ContractBalanceEdge', - cursor: overrides && overrides.hasOwnProperty('cursor') ? overrides.cursor! : 'nesciunt', - node: overrides && overrides.hasOwnProperty('node') ? overrides.node! : aContractBalance(), - }; -}; - -export const aContractBalanceFilterInput = (overrides?: Partial): ContractBalanceFilterInput => { - return { - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : 'lly4yjylzlm1dnmj5lwzlk0tbb9no5sx', - }; -}; - -export const aContractCreated = (overrides?: Partial): { __typename: 'ContractCreated' } & ContractCreated => { - return { - __typename: 'ContractCreated', - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : aContract(), - stateRoot: overrides && overrides.hasOwnProperty('stateRoot') ? overrides.stateRoot! : 'dolores', - }; -}; - -export const aContractOutput = (overrides?: Partial): { __typename: 'ContractOutput' } & ContractOutput => { - return { - __typename: 'ContractOutput', - balanceRoot: overrides && overrides.hasOwnProperty('balanceRoot') ? overrides.balanceRoot! : 'architecto', - inputIndex: overrides && overrides.hasOwnProperty('inputIndex') ? overrides.inputIndex! : 3397, - stateRoot: overrides && overrides.hasOwnProperty('stateRoot') ? overrides.stateRoot! : 'animi', - }; -}; - -export const aContractParameters = (overrides?: Partial): { __typename: 'ContractParameters' } & ContractParameters => { - return { - __typename: 'ContractParameters', - contractMaxSize: overrides && overrides.hasOwnProperty('contractMaxSize') ? overrides.contractMaxSize! : '0xA', - maxStorageSlots: overrides && overrides.hasOwnProperty('maxStorageSlots') ? overrides.maxStorageSlots! : '0x0', - }; -}; - -export const anExcludeInput = (overrides?: Partial): ExcludeInput => { - return { - messages: overrides && overrides.hasOwnProperty('messages') ? overrides.messages! : ['facilis'], - utxos: overrides && overrides.hasOwnProperty('utxos') ? overrides.utxos! : ['rjjvinnn08hy31jzmpuci05byajz8wme'], - }; -}; - -export const aFailureStatus = (overrides?: Partial): { __typename: 'FailureStatus' } & FailureStatus => { - return { - __typename: 'FailureStatus', - block: overrides && overrides.hasOwnProperty('block') ? overrides.block! : aBlock(), - programState: overrides && overrides.hasOwnProperty('programState') ? overrides.programState! : aProgramState(), - reason: overrides && overrides.hasOwnProperty('reason') ? overrides.reason! : 'corporis', - receipts: overrides && overrides.hasOwnProperty('receipts') ? overrides.receipts! : [aReceipt()], - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : 'itaque', - transactionId: overrides && overrides.hasOwnProperty('transactionId') ? overrides.transactionId! : 'y3992yk84ltlkuu5f6glx6r5iitmdig8', - }; -}; - -export const aFeeParameters = (overrides?: Partial): { __typename: 'FeeParameters' } & FeeParameters => { - return { - __typename: 'FeeParameters', - gasPerByte: overrides && overrides.hasOwnProperty('gasPerByte') ? overrides.gasPerByte! : '0xA', - gasPriceFactor: overrides && overrides.hasOwnProperty('gasPriceFactor') ? overrides.gasPriceFactor! : '0xb', - }; -}; - -export const aGasCosts = (overrides?: Partial): { __typename: 'GasCosts' } & GasCosts => { - return { - __typename: 'GasCosts', - add: overrides && overrides.hasOwnProperty('add') ? overrides.add! : '0xd', - addi: overrides && overrides.hasOwnProperty('addi') ? overrides.addi! : '0x4', - aloc: overrides && overrides.hasOwnProperty('aloc') ? overrides.aloc! : '0x5', - and: overrides && overrides.hasOwnProperty('and') ? overrides.and! : '0xE', - andi: overrides && overrides.hasOwnProperty('andi') ? overrides.andi! : '0x1', - bal: overrides && overrides.hasOwnProperty('bal') ? overrides.bal! : '0xf', - bhei: overrides && overrides.hasOwnProperty('bhei') ? overrides.bhei! : '0xC', - bhsh: overrides && overrides.hasOwnProperty('bhsh') ? overrides.bhsh! : '0x7', - burn: overrides && overrides.hasOwnProperty('burn') ? overrides.burn! : '0x6', - call: overrides && overrides.hasOwnProperty('call') ? overrides.call! : aHeavyOperation(), - cb: overrides && overrides.hasOwnProperty('cb') ? overrides.cb! : '0x2', - ccp: overrides && overrides.hasOwnProperty('ccp') ? overrides.ccp! : aHeavyOperation(), - cfei: overrides && overrides.hasOwnProperty('cfei') ? overrides.cfei! : '0xc', - cfsi: overrides && overrides.hasOwnProperty('cfsi') ? overrides.cfsi! : '0xB', - contractRoot: overrides && overrides.hasOwnProperty('contractRoot') ? overrides.contractRoot! : aHeavyOperation(), - croo: overrides && overrides.hasOwnProperty('croo') ? overrides.croo! : '0x4', - csiz: overrides && overrides.hasOwnProperty('csiz') ? overrides.csiz! : aHeavyOperation(), - div: overrides && overrides.hasOwnProperty('div') ? overrides.div! : '0x5', - divi: overrides && overrides.hasOwnProperty('divi') ? overrides.divi! : '0xB', - eck1: overrides && overrides.hasOwnProperty('eck1') ? overrides.eck1! : '0x4', - ecr1: overrides && overrides.hasOwnProperty('ecr1') ? overrides.ecr1! : '0x4', - ed19: overrides && overrides.hasOwnProperty('ed19') ? overrides.ed19! : '0xE', - eq: overrides && overrides.hasOwnProperty('eq') ? overrides.eq! : '0xa', - exp: overrides && overrides.hasOwnProperty('exp') ? overrides.exp! : '0x6', - expi: overrides && overrides.hasOwnProperty('expi') ? overrides.expi! : '0x5', - flag: overrides && overrides.hasOwnProperty('flag') ? overrides.flag! : '0xa', - gm: overrides && overrides.hasOwnProperty('gm') ? overrides.gm! : '0x6', - gt: overrides && overrides.hasOwnProperty('gt') ? overrides.gt! : '0x8', - gtf: overrides && overrides.hasOwnProperty('gtf') ? overrides.gtf! : '0xc', - ji: overrides && overrides.hasOwnProperty('ji') ? overrides.ji! : '0xF', - jmp: overrides && overrides.hasOwnProperty('jmp') ? overrides.jmp! : '0xD', - jmpb: overrides && overrides.hasOwnProperty('jmpb') ? overrides.jmpb! : '0xc', - jmpf: overrides && overrides.hasOwnProperty('jmpf') ? overrides.jmpf! : '0x8', - jne: overrides && overrides.hasOwnProperty('jne') ? overrides.jne! : '0x0', - jneb: overrides && overrides.hasOwnProperty('jneb') ? overrides.jneb! : '0x0', - jnef: overrides && overrides.hasOwnProperty('jnef') ? overrides.jnef! : '0x4', - jnei: overrides && overrides.hasOwnProperty('jnei') ? overrides.jnei! : '0xB', - jnzb: overrides && overrides.hasOwnProperty('jnzb') ? overrides.jnzb! : '0x1', - jnzf: overrides && overrides.hasOwnProperty('jnzf') ? overrides.jnzf! : '0xB', - jnzi: overrides && overrides.hasOwnProperty('jnzi') ? overrides.jnzi! : '0x0', - k256: overrides && overrides.hasOwnProperty('k256') ? overrides.k256! : aHeavyOperation(), - lb: overrides && overrides.hasOwnProperty('lb') ? overrides.lb! : '0xA', - ldc: overrides && overrides.hasOwnProperty('ldc') ? overrides.ldc! : aHeavyOperation(), - log: overrides && overrides.hasOwnProperty('log') ? overrides.log! : '0x6', - logd: overrides && overrides.hasOwnProperty('logd') ? overrides.logd! : aHeavyOperation(), - lt: overrides && overrides.hasOwnProperty('lt') ? overrides.lt! : '0xC', - lw: overrides && overrides.hasOwnProperty('lw') ? overrides.lw! : '0xD', - mcl: overrides && overrides.hasOwnProperty('mcl') ? overrides.mcl! : aHeavyOperation(), - mcli: overrides && overrides.hasOwnProperty('mcli') ? overrides.mcli! : aHeavyOperation(), - mcp: overrides && overrides.hasOwnProperty('mcp') ? overrides.mcp! : aHeavyOperation(), - mcpi: overrides && overrides.hasOwnProperty('mcpi') ? overrides.mcpi! : aHeavyOperation(), - meq: overrides && overrides.hasOwnProperty('meq') ? overrides.meq! : aHeavyOperation(), - mint: overrides && overrides.hasOwnProperty('mint') ? overrides.mint! : '0x1', - mldv: overrides && overrides.hasOwnProperty('mldv') ? overrides.mldv! : '0xF', - mlog: overrides && overrides.hasOwnProperty('mlog') ? overrides.mlog! : '0x8', - modOp: overrides && overrides.hasOwnProperty('modOp') ? overrides.modOp! : '0xF', - modi: overrides && overrides.hasOwnProperty('modi') ? overrides.modi! : '0xA', - moveOp: overrides && overrides.hasOwnProperty('moveOp') ? overrides.moveOp! : '0x4', - movi: overrides && overrides.hasOwnProperty('movi') ? overrides.movi! : '0xF', - mroo: overrides && overrides.hasOwnProperty('mroo') ? overrides.mroo! : '0xA', - mul: overrides && overrides.hasOwnProperty('mul') ? overrides.mul! : '0xE', - muli: overrides && overrides.hasOwnProperty('muli') ? overrides.muli! : '0xE', - newStoragePerByte: overrides && overrides.hasOwnProperty('newStoragePerByte') ? overrides.newStoragePerByte! : '0xA', - noop: overrides && overrides.hasOwnProperty('noop') ? overrides.noop! : '0x3', - not: overrides && overrides.hasOwnProperty('not') ? overrides.not! : '0xc', - or: overrides && overrides.hasOwnProperty('or') ? overrides.or! : '0xC', - ori: overrides && overrides.hasOwnProperty('ori') ? overrides.ori! : '0xE', - poph: overrides && overrides.hasOwnProperty('poph') ? overrides.poph! : '0x9', - popl: overrides && overrides.hasOwnProperty('popl') ? overrides.popl! : '0x7', - pshh: overrides && overrides.hasOwnProperty('pshh') ? overrides.pshh! : '0xD', - pshl: overrides && overrides.hasOwnProperty('pshl') ? overrides.pshl! : '0x9', - ret: overrides && overrides.hasOwnProperty('ret') ? overrides.ret! : '0xa', - retd: overrides && overrides.hasOwnProperty('retd') ? overrides.retd! : aHeavyOperation(), - rvrt: overrides && overrides.hasOwnProperty('rvrt') ? overrides.rvrt! : '0xD', - s256: overrides && overrides.hasOwnProperty('s256') ? overrides.s256! : aHeavyOperation(), - sb: overrides && overrides.hasOwnProperty('sb') ? overrides.sb! : '0x8', - scwq: overrides && overrides.hasOwnProperty('scwq') ? overrides.scwq! : aHeavyOperation(), - sll: overrides && overrides.hasOwnProperty('sll') ? overrides.sll! : '0xF', - slli: overrides && overrides.hasOwnProperty('slli') ? overrides.slli! : '0xb', - smo: overrides && overrides.hasOwnProperty('smo') ? overrides.smo! : aHeavyOperation(), - srl: overrides && overrides.hasOwnProperty('srl') ? overrides.srl! : '0xe', - srli: overrides && overrides.hasOwnProperty('srli') ? overrides.srli! : '0xB', - srw: overrides && overrides.hasOwnProperty('srw') ? overrides.srw! : '0x2', - srwq: overrides && overrides.hasOwnProperty('srwq') ? overrides.srwq! : aHeavyOperation(), - stateRoot: overrides && overrides.hasOwnProperty('stateRoot') ? overrides.stateRoot! : aHeavyOperation(), - sub: overrides && overrides.hasOwnProperty('sub') ? overrides.sub! : '0xa', - subi: overrides && overrides.hasOwnProperty('subi') ? overrides.subi! : '0xE', - sw: overrides && overrides.hasOwnProperty('sw') ? overrides.sw! : '0xa', - sww: overrides && overrides.hasOwnProperty('sww') ? overrides.sww! : '0x8', - swwq: overrides && overrides.hasOwnProperty('swwq') ? overrides.swwq! : aHeavyOperation(), - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : '0x1', - tr: overrides && overrides.hasOwnProperty('tr') ? overrides.tr! : '0x3', - tro: overrides && overrides.hasOwnProperty('tro') ? overrides.tro! : '0x0', - vmInitialization: overrides && overrides.hasOwnProperty('vmInitialization') ? overrides.vmInitialization! : aHeavyOperation(), - wdam: overrides && overrides.hasOwnProperty('wdam') ? overrides.wdam! : '0xf', - wdcm: overrides && overrides.hasOwnProperty('wdcm') ? overrides.wdcm! : '0xD', - wddv: overrides && overrides.hasOwnProperty('wddv') ? overrides.wddv! : '0xe', - wdmd: overrides && overrides.hasOwnProperty('wdmd') ? overrides.wdmd! : '0xB', - wdml: overrides && overrides.hasOwnProperty('wdml') ? overrides.wdml! : '0xe', - wdmm: overrides && overrides.hasOwnProperty('wdmm') ? overrides.wdmm! : '0x6', - wdop: overrides && overrides.hasOwnProperty('wdop') ? overrides.wdop! : '0x0', - wqam: overrides && overrides.hasOwnProperty('wqam') ? overrides.wqam! : '0xF', - wqcm: overrides && overrides.hasOwnProperty('wqcm') ? overrides.wqcm! : '0xA', - wqdv: overrides && overrides.hasOwnProperty('wqdv') ? overrides.wqdv! : '0xD', - wqmd: overrides && overrides.hasOwnProperty('wqmd') ? overrides.wqmd! : '0x3', - wqml: overrides && overrides.hasOwnProperty('wqml') ? overrides.wqml! : '0x5', - wqmm: overrides && overrides.hasOwnProperty('wqmm') ? overrides.wqmm! : '0xE', - wqop: overrides && overrides.hasOwnProperty('wqop') ? overrides.wqop! : '0xA', - xor: overrides && overrides.hasOwnProperty('xor') ? overrides.xor! : '0x1', - xori: overrides && overrides.hasOwnProperty('xori') ? overrides.xori! : '0xb', - }; -}; - -export const aGenesis = (overrides?: Partial): { __typename: 'Genesis' } & Genesis => { - return { - __typename: 'Genesis', - chainConfigHash: overrides && overrides.hasOwnProperty('chainConfigHash') ? overrides.chainConfigHash! : 'aliquam', - coinsRoot: overrides && overrides.hasOwnProperty('coinsRoot') ? overrides.coinsRoot! : 'quae', - contractsRoot: overrides && overrides.hasOwnProperty('contractsRoot') ? overrides.contractsRoot! : 'voluptatum', - messagesRoot: overrides && overrides.hasOwnProperty('messagesRoot') ? overrides.messagesRoot! : 'eligendi', - }; -}; - -export const aGroupedInput = (overrides?: Partial): { __typename: 'GroupedInput' } & GroupedInput => { - return { - __typename: 'GroupedInput', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'l599hn1ptb30dgitrqwggvyjwodfl04t', - contractId: overrides && overrides.hasOwnProperty('contractId') ? overrides.contractId! : '49072p4l3rka407xhz10e7gp0yszhwq0', - data: overrides && overrides.hasOwnProperty('data') ? overrides.data! : '0x7f6727C2AF9F0Efa1b908DFBE867BAf01d77D4da3d6Bc0C3cD6b5f496C412d0fAd36cADdE0d8cADbAc6c7Df5CeFe5AAbE5C1ebF6E2E556EBc9EB3E3e1AEb3BBbBCb48FE25eD0eE14b86bAcD7d544Ac25', - inputs: overrides && overrides.hasOwnProperty('inputs') ? overrides.inputs! : [anInputCoin()], - owner: overrides && overrides.hasOwnProperty('owner') ? overrides.owner! : '8fkjv8kwc0jzv1xcunxejkreq92zr4t1vlxzrtta', - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : 'kvplkj85usmst9e0xjn49sgbuh9wxa35lpfkgbra', - sender: overrides && overrides.hasOwnProperty('sender') ? overrides.sender! : '6e6zaxag3v02nvh7jj6xi3gcbuv7y8zb4rr18s0n', - totalAmount: overrides && overrides.hasOwnProperty('totalAmount') ? overrides.totalAmount! : '0xF', - type: overrides && overrides.hasOwnProperty('type') ? overrides.type! : GroupedInputType.InputCoin, - }; -}; - -export const aGroupedOutput = (overrides?: Partial): { __typename: 'GroupedOutput' } & GroupedOutput => { - return { - __typename: 'GroupedOutput', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'p8osmyjj0rnsi6vo519osau4bdzyw6l6', - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : aContract(), - inputIndex: overrides && overrides.hasOwnProperty('inputIndex') ? overrides.inputIndex! : 8778, - outputs: overrides && overrides.hasOwnProperty('outputs') ? overrides.outputs! : [aChangeOutput()], - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : '6ybk3rig2whm9etumk6wzngk9tnu48powxck8bi9', - to: overrides && overrides.hasOwnProperty('to') ? overrides.to! : '3iyq0oy3da8pvdzjktq1pkua8w8a3rx4gr4k2zzp', - totalAmount: overrides && overrides.hasOwnProperty('totalAmount') ? overrides.totalAmount! : '0xb', - type: overrides && overrides.hasOwnProperty('type') ? overrides.type! : GroupedOutputType.ChangeOutput, - }; -}; - -export const aHeader = (overrides?: Partial
): { __typename: 'Header' } & Header => { - return { - __typename: 'Header', - applicationHash: overrides && overrides.hasOwnProperty('applicationHash') ? overrides.applicationHash! : 'sint', - daHeight: overrides && overrides.hasOwnProperty('daHeight') ? overrides.daHeight! : '0xb', - height: overrides && overrides.hasOwnProperty('height') ? overrides.height! : 'saepe', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'pariatur', - messageReceiptCount: overrides && overrides.hasOwnProperty('messageReceiptCount') ? overrides.messageReceiptCount! : '0x1', - messageReceiptRoot: overrides && overrides.hasOwnProperty('messageReceiptRoot') ? overrides.messageReceiptRoot! : 'quas', - prevRoot: overrides && overrides.hasOwnProperty('prevRoot') ? overrides.prevRoot! : 'reprehenderit', - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : 'perspiciatis', - transactionsCount: overrides && overrides.hasOwnProperty('transactionsCount') ? overrides.transactionsCount! : '0x0', - transactionsRoot: overrides && overrides.hasOwnProperty('transactionsRoot') ? overrides.transactionsRoot! : 'animi', - }; -}; - -export const aHeavyOperation = (overrides?: Partial): { __typename: 'HeavyOperation' } & HeavyOperation => { - return { - __typename: 'HeavyOperation', - base: overrides && overrides.hasOwnProperty('base') ? overrides.base! : '0xE', - gasPerUnit: overrides && overrides.hasOwnProperty('gasPerUnit') ? overrides.gasPerUnit! : '0xF', - }; -}; - -export const anInputCoin = (overrides?: Partial): { __typename: 'InputCoin' } & InputCoin => { - return { - __typename: 'InputCoin', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xA', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'y27xk4sns2byxqyzgpcy513i3crqms8m', - maturity: overrides && overrides.hasOwnProperty('maturity') ? overrides.maturity! : 'incidunt', - owner: overrides && overrides.hasOwnProperty('owner') ? overrides.owner! : 'vamcamah4e8u1v6tw4ldf49gn6i4nhcxuhztvd8f', - predicate: overrides && overrides.hasOwnProperty('predicate') ? overrides.predicate! : '0xa67Faa70dBB8BFe84AeA310BFCb62991Ad08F6635BBeFeafAe7abac62E8BdeeB4cefB8E74f0dB67569E5f42cCdc9EBfA64c4326ED6Df8B3583E50A790F441b29BDD613D18e7D9eF2d42fE1F8C7dd4ee3', - predicateData: overrides && overrides.hasOwnProperty('predicateData') ? overrides.predicateData! : '0x63CCab6C200Cade6C4B7d1689bB2964b3BD8CaAb96C1AcBba1CED702F09b342f40d10F36824275eDba5BD55B657b71CF409Aeee963C126Bb2dEb80bDEeB57DF6c1dEdDC65389f3FAc6c72910319aBF2B', - predicateGasUsed: overrides && overrides.hasOwnProperty('predicateGasUsed') ? overrides.predicateGasUsed! : '0xd', - txPointer: overrides && overrides.hasOwnProperty('txPointer') ? overrides.txPointer! : 'officia', - utxoId: overrides && overrides.hasOwnProperty('utxoId') ? overrides.utxoId! : '37d3ah19hr1fh00b5j2qsz0tjfhyjk5f', - witnessIndex: overrides && overrides.hasOwnProperty('witnessIndex') ? overrides.witnessIndex! : 8296, - }; -}; - -export const anInputContract = (overrides?: Partial): { __typename: 'InputContract' } & InputContract => { - return { - __typename: 'InputContract', - balanceRoot: overrides && overrides.hasOwnProperty('balanceRoot') ? overrides.balanceRoot! : 'laboriosam', - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : aContract(), - stateRoot: overrides && overrides.hasOwnProperty('stateRoot') ? overrides.stateRoot! : 'voluptatem', - txPointer: overrides && overrides.hasOwnProperty('txPointer') ? overrides.txPointer! : 'natus', - utxoId: overrides && overrides.hasOwnProperty('utxoId') ? overrides.utxoId! : 'bdooy2lb4df6d1qrjvhul62w3u6t7zu9', - }; -}; - -export const anInputMessage = (overrides?: Partial): { __typename: 'InputMessage' } & InputMessage => { - return { - __typename: 'InputMessage', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0x5', - data: overrides && overrides.hasOwnProperty('data') ? overrides.data! : '0xffd6Fc68D8c1a4DffacF63db8CEb7FFfA2db2593cDEbFb1De88bF3ebDabFb9813db7bd45DE53dd24d4FCCfD7005D63fb806A0574dcba040c4bdFAdB5d8b66BffeAC2D282A0D6305AbDcaAaBB1479AF9f', - nonce: overrides && overrides.hasOwnProperty('nonce') ? overrides.nonce! : 'labore', - predicate: overrides && overrides.hasOwnProperty('predicate') ? overrides.predicate! : '0x44db0eAA0a6aBD6a0b2e1bAee42Bb2aD2dcDA8eAE1A3aF9A13EBfBE852d8E4D5450A3712bDe127A27Bd8dC149965Bde13Abee6Ddbb6aDcfE4420c53eCbe01B6d268A85eC2fffA1d9264CEDbD3d8ADCfF', - predicateData: overrides && overrides.hasOwnProperty('predicateData') ? overrides.predicateData! : '0x33CfF8399c2AE8debdB30dE8bBeCD90C9dEbdcA005444F492CcF5DF0B8E9d5a1EBDBf405Af0Beabe45aF6C05C888BFEd8789e0ed3aEadBAafaF83D60fDF6E48A9ceBc1aebc5EcDacf3cD297c7ab02D1D', - predicateGasUsed: overrides && overrides.hasOwnProperty('predicateGasUsed') ? overrides.predicateGasUsed! : '0x5', - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : '9zwmg9jnt78zbvx3yxpdmav9do29us3xpjekgh1w', - sender: overrides && overrides.hasOwnProperty('sender') ? overrides.sender! : 'zhhyn3xw7xjv92a6r70t4cxh0hrjaj1r2jqekoag', - witnessIndex: overrides && overrides.hasOwnProperty('witnessIndex') ? overrides.witnessIndex! : 4160, - }; -}; - -export const aLightOperation = (overrides?: Partial): { __typename: 'LightOperation' } & LightOperation => { - return { - __typename: 'LightOperation', - base: overrides && overrides.hasOwnProperty('base') ? overrides.base! : '0x2', - unitsPerGas: overrides && overrides.hasOwnProperty('unitsPerGas') ? overrides.unitsPerGas! : '0xC', - }; -}; - -export const aMerkleProof = (overrides?: Partial): { __typename: 'MerkleProof' } & MerkleProof => { - return { - __typename: 'MerkleProof', - proofIndex: overrides && overrides.hasOwnProperty('proofIndex') ? overrides.proofIndex! : '0x8', - proofSet: overrides && overrides.hasOwnProperty('proofSet') ? overrides.proofSet! : ['voluptatem'], - }; -}; - -export const aMessage = (overrides?: Partial): { __typename: 'Message' } & Message => { - return { - __typename: 'Message', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xf', - daHeight: overrides && overrides.hasOwnProperty('daHeight') ? overrides.daHeight! : '0xD', - data: overrides && overrides.hasOwnProperty('data') ? overrides.data! : '0xec2db5aad31B91F403b8bcFA5dD8F6845C6514DaDeea2436cCE1E06CE58B5296Daab472Bb836847ecf6847729Afd2DefC48F9d07b8cb8DfFC165aF23df8c9BcaB436a215F43a7fab959115dDb0dB4e1a', - nonce: overrides && overrides.hasOwnProperty('nonce') ? overrides.nonce! : 'sapiente', - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : 'wcevmsvhv80welag1jy7xwl2tpov1t6j49u8cpu8', - sender: overrides && overrides.hasOwnProperty('sender') ? overrides.sender! : 'o6quj8u98g4443vfmjfvuul2fxj1vjjhpubzjg0d', - }; -}; - -export const aMessageCoin = (overrides?: Partial): { __typename: 'MessageCoin' } & MessageCoin => { - return { - __typename: 'MessageCoin', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xE', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'jpsgc82trduth738qdx4lhs5i49bkjtd', - daHeight: overrides && overrides.hasOwnProperty('daHeight') ? overrides.daHeight! : '0xD', - nonce: overrides && overrides.hasOwnProperty('nonce') ? overrides.nonce! : 'modi', - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : '9ihbzqa03yfdgtw7q44azh77epkfzyjvoq58ldsc', - sender: overrides && overrides.hasOwnProperty('sender') ? overrides.sender! : '285w90pyy72x8y114624t9i328lyqmeno2nbs7qk', - }; -}; - -export const aMessageConnection = (overrides?: Partial): { __typename: 'MessageConnection' } & MessageConnection => { - return { - __typename: 'MessageConnection', - edges: overrides && overrides.hasOwnProperty('edges') ? overrides.edges! : [aMessageEdge()], - nodes: overrides && overrides.hasOwnProperty('nodes') ? overrides.nodes! : [aMessage()], - pageInfo: overrides && overrides.hasOwnProperty('pageInfo') ? overrides.pageInfo! : aPageInfo(), - }; -}; - -export const aMessageEdge = (overrides?: Partial): { __typename: 'MessageEdge' } & MessageEdge => { - return { - __typename: 'MessageEdge', - cursor: overrides && overrides.hasOwnProperty('cursor') ? overrides.cursor! : 'quas', - node: overrides && overrides.hasOwnProperty('node') ? overrides.node! : aMessage(), - }; -}; - -export const aMessageProof = (overrides?: Partial): { __typename: 'MessageProof' } & MessageProof => { - return { - __typename: 'MessageProof', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xa', - blockProof: overrides && overrides.hasOwnProperty('blockProof') ? overrides.blockProof! : aMerkleProof(), - commitBlockHeader: overrides && overrides.hasOwnProperty('commitBlockHeader') ? overrides.commitBlockHeader! : aHeader(), - data: overrides && overrides.hasOwnProperty('data') ? overrides.data! : '0x7d92f23a7d82BaAC7beA88Ba6DD85fFB85c368D7984bf87D32b5DcBb79B877d0b20acE4c41F7f3e601BBBeEAA34BbeeA9AAF4F58E3cc2997e42fDA2d9cb6AFBaec43fa33adDe7F458Eda8c9d318f86aA', - messageBlockHeader: overrides && overrides.hasOwnProperty('messageBlockHeader') ? overrides.messageBlockHeader! : aHeader(), - messageProof: overrides && overrides.hasOwnProperty('messageProof') ? overrides.messageProof! : aMerkleProof(), - nonce: overrides && overrides.hasOwnProperty('nonce') ? overrides.nonce! : 'enim', - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : 'dgpdudd1bdvc6wt4rkqjkvi4ycbkxoo9bcn17xof', - sender: overrides && overrides.hasOwnProperty('sender') ? overrides.sender! : 'yp1myonssz56zhe7fe1iakhvo22x2n8nek77r1lo', - }; -}; - -export const aMessageStatus = (overrides?: Partial): { __typename: 'MessageStatus' } & MessageStatus => { - return { - __typename: 'MessageStatus', - state: overrides && overrides.hasOwnProperty('state') ? overrides.state! : MessageState.NotFound, - }; -}; - -export const aMutation = (overrides?: Partial): { __typename: 'Mutation' } & Mutation => { - return { - __typename: 'Mutation', - continueTx: overrides && overrides.hasOwnProperty('continueTx') ? overrides.continueTx! : aRunResult(), - dryRun: overrides && overrides.hasOwnProperty('dryRun') ? overrides.dryRun! : [aReceipt()], - endSession: overrides && overrides.hasOwnProperty('endSession') ? overrides.endSession! : false, - execute: overrides && overrides.hasOwnProperty('execute') ? overrides.execute! : true, - produceBlocks: overrides && overrides.hasOwnProperty('produceBlocks') ? overrides.produceBlocks! : 'voluptatum', - reset: overrides && overrides.hasOwnProperty('reset') ? overrides.reset! : false, - setBreakpoint: overrides && overrides.hasOwnProperty('setBreakpoint') ? overrides.setBreakpoint! : true, - setSingleStepping: overrides && overrides.hasOwnProperty('setSingleStepping') ? overrides.setSingleStepping! : false, - startSession: overrides && overrides.hasOwnProperty('startSession') ? overrides.startSession! : '41a96a12-468a-4440-92ca-9eb4da4141a5', - startTx: overrides && overrides.hasOwnProperty('startTx') ? overrides.startTx! : aRunResult(), - submit: overrides && overrides.hasOwnProperty('submit') ? overrides.submit! : aTransaction(), - }; -}; - -export const aNodeInfo = (overrides?: Partial): { __typename: 'NodeInfo' } & NodeInfo => { - return { - __typename: 'NodeInfo', - maxDepth: overrides && overrides.hasOwnProperty('maxDepth') ? overrides.maxDepth! : '0xf', - maxTx: overrides && overrides.hasOwnProperty('maxTx') ? overrides.maxTx! : '0x2', - minGasPrice: overrides && overrides.hasOwnProperty('minGasPrice') ? overrides.minGasPrice! : '0x3', - nodeVersion: overrides && overrides.hasOwnProperty('nodeVersion') ? overrides.nodeVersion! : 'nobis', - peers: overrides && overrides.hasOwnProperty('peers') ? overrides.peers! : [aPeerInfo()], - utxoValidation: overrides && overrides.hasOwnProperty('utxoValidation') ? overrides.utxoValidation! : true, - vmBacktrace: overrides && overrides.hasOwnProperty('vmBacktrace') ? overrides.vmBacktrace! : true, - }; -}; - -export const anOperation = (overrides?: Partial): { __typename: 'Operation' } & Operation => { - return { - __typename: 'Operation', - receipts: overrides && overrides.hasOwnProperty('receipts') ? overrides.receipts! : [anOperationReceipt()], - type: overrides && overrides.hasOwnProperty('type') ? overrides.type! : OperationType.FinalResult, - }; -}; - -export const anOperationReceipt = (overrides?: Partial): { __typename: 'OperationReceipt' } & OperationReceipt => { - return { - __typename: 'OperationReceipt', - item: overrides && overrides.hasOwnProperty('item') ? overrides.item! : aReceipt(), - receipts: overrides && overrides.hasOwnProperty('receipts') ? overrides.receipts! : [anOperationReceipt()], - }; -}; - -export const anOutputBreakpoint = (overrides?: Partial): { __typename: 'OutputBreakpoint' } & OutputBreakpoint => { - return { - __typename: 'OutputBreakpoint', - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : '6ghwqlax5rq8vz7bbvxhn3nex1uoqjwo', - pc: overrides && overrides.hasOwnProperty('pc') ? overrides.pc! : '0xf', - }; -}; - -export const aPageInfo = (overrides?: Partial): { __typename: 'PageInfo' } & PageInfo => { - return { - __typename: 'PageInfo', - endCursor: overrides && overrides.hasOwnProperty('endCursor') ? overrides.endCursor! : 'cum', - hasNextPage: overrides && overrides.hasOwnProperty('hasNextPage') ? overrides.hasNextPage! : false, - hasPreviousPage: overrides && overrides.hasOwnProperty('hasPreviousPage') ? overrides.hasPreviousPage! : true, - startCursor: overrides && overrides.hasOwnProperty('startCursor') ? overrides.startCursor! : 'repellendus', - }; -}; - -export const aParsedTime = (overrides?: Partial): { __typename: 'ParsedTime' } & ParsedTime => { - return { - __typename: 'ParsedTime', - fromNow: overrides && overrides.hasOwnProperty('fromNow') ? overrides.fromNow! : 'amet', - full: overrides && overrides.hasOwnProperty('full') ? overrides.full! : 'beatae', - rawTai64: overrides && overrides.hasOwnProperty('rawTai64') ? overrides.rawTai64! : 'esse', - rawUnix: overrides && overrides.hasOwnProperty('rawUnix') ? overrides.rawUnix! : 'quis', - }; -}; - -export const aPeerInfo = (overrides?: Partial): { __typename: 'PeerInfo' } & PeerInfo => { - return { - __typename: 'PeerInfo', - addresses: overrides && overrides.hasOwnProperty('addresses') ? overrides.addresses! : ['iusto'], - appScore: overrides && overrides.hasOwnProperty('appScore') ? overrides.appScore! : 0.8, - blockHeight: overrides && overrides.hasOwnProperty('blockHeight') ? overrides.blockHeight! : 'magni', - clientVersion: overrides && overrides.hasOwnProperty('clientVersion') ? overrides.clientVersion! : 'vero', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'nesciunt', - lastHeartbeatMs: overrides && overrides.hasOwnProperty('lastHeartbeatMs') ? overrides.lastHeartbeatMs! : '0x9', - }; -}; - -export const aPoAConsensus = (overrides?: Partial): { __typename: 'PoAConsensus' } & PoAConsensus => { - return { - __typename: 'PoAConsensus', - signature: overrides && overrides.hasOwnProperty('signature') ? overrides.signature! : 'consectetur', - }; -}; - -export const aPolicies = (overrides?: Partial): { __typename: 'Policies' } & Policies => { - return { - __typename: 'Policies', - gasPrice: overrides && overrides.hasOwnProperty('gasPrice') ? overrides.gasPrice! : '0xc', - maturity: overrides && overrides.hasOwnProperty('maturity') ? overrides.maturity! : 'ex', - maxFee: overrides && overrides.hasOwnProperty('maxFee') ? overrides.maxFee! : '0x8', - witnessLimit: overrides && overrides.hasOwnProperty('witnessLimit') ? overrides.witnessLimit! : '0xb', - }; -}; - -export const aPredicate = (overrides?: Partial): { __typename: 'Predicate' } & Predicate => { - return { - __typename: 'Predicate', - bytecode: overrides && overrides.hasOwnProperty('bytecode') ? overrides.bytecode! : '0xfffe55e470BDC8afCf78D3F2Fc7A78Db29ed2a983a8487e5c920C9cAF84BAC09391A115a6E8dC6FdaEDB8ccddD9C2aAFFA88B8bBa1b24A79cE1eF1FfEb54C59Cc3dEF3abEcCFFb127D952e79fcC2aE5C', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'h8av7w6p17to88fx0fsavbp5jsx5zhikml24gqju', - }; -}; - -export const aPredicateParameters = (overrides?: Partial): { __typename: 'PredicateParameters' } & PredicateParameters => { - return { - __typename: 'PredicateParameters', - maxGasPerPredicate: overrides && overrides.hasOwnProperty('maxGasPerPredicate') ? overrides.maxGasPerPredicate! : '0x0', - maxMessageDataLength: overrides && overrides.hasOwnProperty('maxMessageDataLength') ? overrides.maxMessageDataLength! : '0xe', - maxPredicateDataLength: overrides && overrides.hasOwnProperty('maxPredicateDataLength') ? overrides.maxPredicateDataLength! : '0xE', - maxPredicateLength: overrides && overrides.hasOwnProperty('maxPredicateLength') ? overrides.maxPredicateLength! : '0x8', - }; -}; - -export const aProgramState = (overrides?: Partial): { __typename: 'ProgramState' } & ProgramState => { - return { - __typename: 'ProgramState', - data: overrides && overrides.hasOwnProperty('data') ? overrides.data! : '0xE8f2fDf6aF89644c89Ca7eC89Bd1Aab8B95c114F2eE3fBF8b1C10AC6ccCe9EafA5dCeFaC56832ED898dC230295bc996bBCa7b21Fb0F614b0B2C28e964C2aA9f0F1C1808c9B9cB0ab60EAD68F8E07Baa2', - returnType: overrides && overrides.hasOwnProperty('returnType') ? overrides.returnType! : ReturnType.Return, - }; -}; - -export const aQuery = (overrides?: Partial): { __typename: 'Query' } & Query => { - return { - __typename: 'Query', - accounts: overrides && overrides.hasOwnProperty('accounts') ? overrides.accounts! : [anAccount()], - balance: overrides && overrides.hasOwnProperty('balance') ? overrides.balance! : aBalance(), - balances: overrides && overrides.hasOwnProperty('balances') ? overrides.balances! : aBalanceConnection(), - block: overrides && overrides.hasOwnProperty('block') ? overrides.block! : aBlock(), - blocks: overrides && overrides.hasOwnProperty('blocks') ? overrides.blocks! : aBlockConnection(), - chain: overrides && overrides.hasOwnProperty('chain') ? overrides.chain! : aChainInfo(), - coin: overrides && overrides.hasOwnProperty('coin') ? overrides.coin! : aCoin(), - coins: overrides && overrides.hasOwnProperty('coins') ? overrides.coins! : aCoinConnection(), - coinsToSpend: overrides && overrides.hasOwnProperty('coinsToSpend') ? overrides.coinsToSpend! : [[aCoin()]], - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : aContract(), - contractBalance: overrides && overrides.hasOwnProperty('contractBalance') ? overrides.contractBalance! : aContractBalance(), - contractBalances: overrides && overrides.hasOwnProperty('contractBalances') ? overrides.contractBalances! : aContractBalanceConnection(), - estimatePredicates: overrides && overrides.hasOwnProperty('estimatePredicates') ? overrides.estimatePredicates! : aTransaction(), - health: overrides && overrides.hasOwnProperty('health') ? overrides.health! : true, - memory: overrides && overrides.hasOwnProperty('memory') ? overrides.memory! : 'id', - messageProof: overrides && overrides.hasOwnProperty('messageProof') ? overrides.messageProof! : aMessageProof(), - messageStatus: overrides && overrides.hasOwnProperty('messageStatus') ? overrides.messageStatus! : aMessageStatus(), - messages: overrides && overrides.hasOwnProperty('messages') ? overrides.messages! : aMessageConnection(), - nodeInfo: overrides && overrides.hasOwnProperty('nodeInfo') ? overrides.nodeInfo! : aNodeInfo(), - predicate: overrides && overrides.hasOwnProperty('predicate') ? overrides.predicate! : aPredicate(), - register: overrides && overrides.hasOwnProperty('register') ? overrides.register! : '0x3', - search: overrides && overrides.hasOwnProperty('search') ? overrides.search! : aSearchResult(), - tokens: overrides && overrides.hasOwnProperty('tokens') ? overrides.tokens! : [aToken()], - transaction: overrides && overrides.hasOwnProperty('transaction') ? overrides.transaction! : aTransaction(), - transactions: overrides && overrides.hasOwnProperty('transactions') ? overrides.transactions! : aTransactionConnection(), - transactionsByOwner: overrides && overrides.hasOwnProperty('transactionsByOwner') ? overrides.transactionsByOwner! : aTransactionConnection(), - }; -}; - -export const aReceipt = (overrides?: Partial): { __typename: 'Receipt' } & Receipt => { - return { - __typename: 'Receipt', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xB', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'z58vuwpyp5fwi1yhwzlqj9ka232t9a8r', - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : aContract(), - contractId: overrides && overrides.hasOwnProperty('contractId') ? overrides.contractId! : '9d382ivp4mteisohn79svut91p9msibm', - data: overrides && overrides.hasOwnProperty('data') ? overrides.data! : '0xe2b353aAEa5e7E1Ff6fc4Da5bf9c0af8c0DcEe5ECD206ba852cDf1C7285F1fbd9eCbE4ba1AFCb6f9f4ef2Ce96c1a8f1DFE4AcD2FaD74D82eB1DFBFeFE3fc2F8EADBeeCDEE0ebF41E3ba0682aaa8Fa59A', - digest: overrides && overrides.hasOwnProperty('digest') ? overrides.digest! : 'architecto', - gas: overrides && overrides.hasOwnProperty('gas') ? overrides.gas! : '0x4', - gasUsed: overrides && overrides.hasOwnProperty('gasUsed') ? overrides.gasUsed! : '0x2', - is: overrides && overrides.hasOwnProperty('is') ? overrides.is! : '0xb', - len: overrides && overrides.hasOwnProperty('len') ? overrides.len! : '0xf', - nonce: overrides && overrides.hasOwnProperty('nonce') ? overrides.nonce! : 'mollitia', - param1: overrides && overrides.hasOwnProperty('param1') ? overrides.param1! : '0xf', - param2: overrides && overrides.hasOwnProperty('param2') ? overrides.param2! : '0xe', - pc: overrides && overrides.hasOwnProperty('pc') ? overrides.pc! : '0xd', - ptr: overrides && overrides.hasOwnProperty('ptr') ? overrides.ptr! : '0x8', - ra: overrides && overrides.hasOwnProperty('ra') ? overrides.ra! : '0xA', - rb: overrides && overrides.hasOwnProperty('rb') ? overrides.rb! : '0xd', - rc: overrides && overrides.hasOwnProperty('rc') ? overrides.rc! : '0x2', - rd: overrides && overrides.hasOwnProperty('rd') ? overrides.rd! : '0xF', - reason: overrides && overrides.hasOwnProperty('reason') ? overrides.reason! : '0xF', - receiptType: overrides && overrides.hasOwnProperty('receiptType') ? overrides.receiptType! : ReceiptType.Burn, - recipient: overrides && overrides.hasOwnProperty('recipient') ? overrides.recipient! : 'q7mhlsz9na9drlzwtj38y91r243dzrsfdkzsyxiq', - result: overrides && overrides.hasOwnProperty('result') ? overrides.result! : '0x0', - sender: overrides && overrides.hasOwnProperty('sender') ? overrides.sender! : 'ysjl9jycalt7pupoecumgfg3l76d5g22g2yy181x', - subId: overrides && overrides.hasOwnProperty('subId') ? overrides.subId! : 'quam', - to: overrides && overrides.hasOwnProperty('to') ? overrides.to! : aContract(), - toAddress: overrides && overrides.hasOwnProperty('toAddress') ? overrides.toAddress! : '40v7wkyreg1nryfbtnbhw09swv0ciohkdcfloi6w', - val: overrides && overrides.hasOwnProperty('val') ? overrides.val! : '0xf', - }; -}; - -export const aRunResult = (overrides?: Partial): { __typename: 'RunResult' } & RunResult => { - return { - __typename: 'RunResult', - breakpoint: overrides && overrides.hasOwnProperty('breakpoint') ? overrides.breakpoint! : anOutputBreakpoint(), - jsonReceipts: overrides && overrides.hasOwnProperty('jsonReceipts') ? overrides.jsonReceipts! : ['esse'], - state: overrides && overrides.hasOwnProperty('state') ? overrides.state! : RunState.Breakpoint, - }; -}; - -export const aScriptParameters = (overrides?: Partial): { __typename: 'ScriptParameters' } & ScriptParameters => { - return { - __typename: 'ScriptParameters', - maxScriptDataLength: overrides && overrides.hasOwnProperty('maxScriptDataLength') ? overrides.maxScriptDataLength! : '0x9', - maxScriptLength: overrides && overrides.hasOwnProperty('maxScriptLength') ? overrides.maxScriptLength! : '0x8', - }; -}; - -export const aSearchAccount = (overrides?: Partial): { __typename: 'SearchAccount' } & SearchAccount => { - return { - __typename: 'SearchAccount', - address: overrides && overrides.hasOwnProperty('address') ? overrides.address! : 'fxjjhq8rar88egu9vnil1ab5e9xsldm8tl3aii4l', - transactions: overrides && overrides.hasOwnProperty('transactions') ? overrides.transactions! : [aSearchTransaction()], - }; -}; - -export const aSearchBlock = (overrides?: Partial): { __typename: 'SearchBlock' } & SearchBlock => { - return { - __typename: 'SearchBlock', - height: overrides && overrides.hasOwnProperty('height') ? overrides.height! : 'ea', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'necessitatibus', - }; -}; - -export const aSearchContract = (overrides?: Partial): { __typename: 'SearchContract' } & SearchContract => { - return { - __typename: 'SearchContract', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'cal06fr6xavgycxm6euv9zube4yuy9v6', - }; -}; - -export const aSearchResult = (overrides?: Partial): { __typename: 'SearchResult' } & SearchResult => { - return { - __typename: 'SearchResult', - account: overrides && overrides.hasOwnProperty('account') ? overrides.account! : aSearchAccount(), - block: overrides && overrides.hasOwnProperty('block') ? overrides.block! : aSearchBlock(), - contract: overrides && overrides.hasOwnProperty('contract') ? overrides.contract! : aSearchContract(), - transaction: overrides && overrides.hasOwnProperty('transaction') ? overrides.transaction! : aSearchTransaction(), - }; -}; - -export const aSearchTransaction = (overrides?: Partial): { __typename: 'SearchTransaction' } & SearchTransaction => { - return { - __typename: 'SearchTransaction', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'ikjck0dx2w0q8gftmk41pxgde8kadbzf', - }; -}; - -export const aSpendQueryElementInput = (overrides?: Partial): SpendQueryElementInput => { - return { - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xd', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'uf0lsb3kvot747ow9j0nv0mh9tf7zsgw', - max: overrides && overrides.hasOwnProperty('max') ? overrides.max! : 'odit', - }; -}; - -export const aSqueezedOutStatus = (overrides?: Partial): { __typename: 'SqueezedOutStatus' } & SqueezedOutStatus => { - return { - __typename: 'SqueezedOutStatus', - reason: overrides && overrides.hasOwnProperty('reason') ? overrides.reason! : 'voluptatibus', - }; -}; - -export const aSubmittedStatus = (overrides?: Partial): { __typename: 'SubmittedStatus' } & SubmittedStatus => { - return { - __typename: 'SubmittedStatus', - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : 'natus', - }; -}; - -export const aSubscription = (overrides?: Partial): { __typename: 'Subscription' } & Subscription => { - return { - __typename: 'Subscription', - statusChange: overrides && overrides.hasOwnProperty('statusChange') ? overrides.statusChange! : aFailureStatus(), - submitAndAwait: overrides && overrides.hasOwnProperty('submitAndAwait') ? overrides.submitAndAwait! : aFailureStatus(), - }; -}; - -export const aSuccessStatus = (overrides?: Partial): { __typename: 'SuccessStatus' } & SuccessStatus => { - return { - __typename: 'SuccessStatus', - block: overrides && overrides.hasOwnProperty('block') ? overrides.block! : aBlock(), - programState: overrides && overrides.hasOwnProperty('programState') ? overrides.programState! : aProgramState(), - receipts: overrides && overrides.hasOwnProperty('receipts') ? overrides.receipts! : [aReceipt()], - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : 'modi', - transactionId: overrides && overrides.hasOwnProperty('transactionId') ? overrides.transactionId! : '7yxyr87uqpfquupe4qq7bmmlpvtejjdv', - }; -}; - -export const aToken = (overrides?: Partial): { __typename: 'Token' } & Token => { - return { - __typename: 'Token', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'occaecati', - decimals: overrides && overrides.hasOwnProperty('decimals') ? overrides.decimals! : '0x6', - name: overrides && overrides.hasOwnProperty('name') ? overrides.name! : 'voluptates', - symbol: overrides && overrides.hasOwnProperty('symbol') ? overrides.symbol! : 'iusto', - totalAssets: overrides && overrides.hasOwnProperty('totalAssets') ? overrides.totalAssets! : '0x8', - totalSupply: overrides && overrides.hasOwnProperty('totalSupply') ? overrides.totalSupply! : '0x5', - url: overrides && overrides.hasOwnProperty('url') ? overrides.url! : 'itaque', - }; -}; - -export const aTransaction = (overrides?: Partial): { __typename: 'Transaction' } & Transaction => { - return { - __typename: 'Transaction', - accountsInvolved: overrides && overrides.hasOwnProperty('accountsInvolved') ? overrides.accountsInvolved! : [aTransactionAccount()], - blockHeight: overrides && overrides.hasOwnProperty('blockHeight') ? overrides.blockHeight! : 'non', - bytecodeLength: overrides && overrides.hasOwnProperty('bytecodeLength') ? overrides.bytecodeLength! : '0x6', - bytecodeWitnessIndex: overrides && overrides.hasOwnProperty('bytecodeWitnessIndex') ? overrides.bytecodeWitnessIndex! : 9380, - fee: overrides && overrides.hasOwnProperty('fee') ? overrides.fee! : '0x0', - gasPrice: overrides && overrides.hasOwnProperty('gasPrice') ? overrides.gasPrice! : '0xD', - gasUsed: overrides && overrides.hasOwnProperty('gasUsed') ? overrides.gasUsed! : '0xb', - groupedInputs: overrides && overrides.hasOwnProperty('groupedInputs') ? overrides.groupedInputs! : [aGroupedInput()], - groupedOutputs: overrides && overrides.hasOwnProperty('groupedOutputs') ? overrides.groupedOutputs! : [aGroupedOutput()], - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'm5skeiw541vcdt1lceitryfralzuwdw9', - inputAssetIds: overrides && overrides.hasOwnProperty('inputAssetIds') ? overrides.inputAssetIds! : ['ivh1nwdxbmv9t9y30qbwmnpsdwxc5pao'], - inputContract: overrides && overrides.hasOwnProperty('inputContract') ? overrides.inputContract! : anInputContract(), - inputContracts: overrides && overrides.hasOwnProperty('inputContracts') ? overrides.inputContracts! : [aContract()], - inputs: overrides && overrides.hasOwnProperty('inputs') ? overrides.inputs! : [anInputCoin()], - isCreate: overrides && overrides.hasOwnProperty('isCreate') ? overrides.isCreate! : true, - isMint: overrides && overrides.hasOwnProperty('isMint') ? overrides.isMint! : false, - isPredicate: overrides && overrides.hasOwnProperty('isPredicate') ? overrides.isPredicate! : false, - isScript: overrides && overrides.hasOwnProperty('isScript') ? overrides.isScript! : true, - maturity: overrides && overrides.hasOwnProperty('maturity') ? overrides.maturity! : 'distinctio', - mintAmount: overrides && overrides.hasOwnProperty('mintAmount') ? overrides.mintAmount! : '0x4', - mintAssetId: overrides && overrides.hasOwnProperty('mintAssetId') ? overrides.mintAssetId! : 'ear74yjd6jnrhxyo9jp8jbbywtajy2y7', - operations: overrides && overrides.hasOwnProperty('operations') ? overrides.operations! : [anOperation()], - outputContract: overrides && overrides.hasOwnProperty('outputContract') ? overrides.outputContract! : aContractOutput(), - outputs: overrides && overrides.hasOwnProperty('outputs') ? overrides.outputs! : [aChangeOutput()], - policies: overrides && overrides.hasOwnProperty('policies') ? overrides.policies! : aPolicies(), - rawPayload: overrides && overrides.hasOwnProperty('rawPayload') ? overrides.rawPayload! : '0xCafBd5Ce4b560Aca24ffa36ce3BdFbAdbeDef78a2f072846FBE99a5FC46eFaAb7CBdFCdd25acC24Ead593EBAE0eA8Ce6CDE3fAa6FD794c53eBb332A25EdD6F86e1BD0CF857DA0DdD7bC49E162cFdE61C', - receipts: overrides && overrides.hasOwnProperty('receipts') ? overrides.receipts! : [aReceipt()], - receiptsRoot: overrides && overrides.hasOwnProperty('receiptsRoot') ? overrides.receiptsRoot! : 'debitis', - salt: overrides && overrides.hasOwnProperty('salt') ? overrides.salt! : 'fuga', - script: overrides && overrides.hasOwnProperty('script') ? overrides.script! : '0xb57ff0B5B7b8fddBE6BC4CF94dFccd4BA278C9b9eCddf46Ad73baBcE85d1ABEaECe392fbeB37116cFcc8E5a15C3E4Ea7356B35c70a1d4DBFe8ab0EDf83bFf6f54FCFF0e90b42b363CD4bEca9d5AB38D5', - scriptData: overrides && overrides.hasOwnProperty('scriptData') ? overrides.scriptData! : '0xa8B9bEba75644Ef15fc7FE0ebEdc7376E6D83DF543E4218a00556f33B1cfa47D935B2cbD0CCD36D1D5074D1bbFAC059E4fCcd3d8FADbca1CcCa85DFb15cdcA817a6aD1d52dd4bbee8ae8c3A08e0dC56A', - scriptGasLimit: overrides && overrides.hasOwnProperty('scriptGasLimit') ? overrides.scriptGasLimit! : '0xA', - status: overrides && overrides.hasOwnProperty('status') ? overrides.status! : aFailureStatus(), - statusType: overrides && overrides.hasOwnProperty('statusType') ? overrides.statusType! : TransactionStatusType.Failure, - storageSlots: overrides && overrides.hasOwnProperty('storageSlots') ? overrides.storageSlots! : ['0x93F3d4f06033Babda85ce01DC9cbfc37cEddcBFf9bEd8DE4c4E83B5305a1DfFb3C4ef9d6E51AEAb68bf0D70eD039DCffF924C2359c5d1c0c0C41C4B2fafF6F692aD54de3a4CAace3bfef27eefe672530'], - time: overrides && overrides.hasOwnProperty('time') ? overrides.time! : aParsedTime(), - title: overrides && overrides.hasOwnProperty('title') ? overrides.title! : 'qui', - totalAccounts: overrides && overrides.hasOwnProperty('totalAccounts') ? overrides.totalAccounts! : 205, - totalAssets: overrides && overrides.hasOwnProperty('totalAssets') ? overrides.totalAssets! : 4943, - totalOperations: overrides && overrides.hasOwnProperty('totalOperations') ? overrides.totalOperations! : 1610, - txPointer: overrides && overrides.hasOwnProperty('txPointer') ? overrides.txPointer! : 'expedita', - witnesses: overrides && overrides.hasOwnProperty('witnesses') ? overrides.witnesses! : ['0x8b5Da64f37447BECBc9A170Ab9C36D48b0D4D0FBEdc79240BE46b52AbfFc1DB1BC9deAEe64E474Ed67bf8641137b857CBCA06ea6362937913F3EDEaca7ffC1Abf45ab6a7941D8bF61Bec1B5fAB8fbb1b'], - }; -}; - -export const aTransactionAccount = (overrides?: Partial): { __typename: 'TransactionAccount' } & TransactionAccount => { - return { - __typename: 'TransactionAccount', - id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : 'aut', - type: overrides && overrides.hasOwnProperty('type') ? overrides.type! : TransactionAccountType.Contract, - }; -}; - -export const aTransactionConnection = (overrides?: Partial): { __typename: 'TransactionConnection' } & TransactionConnection => { - return { - __typename: 'TransactionConnection', - accounts: overrides && overrides.hasOwnProperty('accounts') ? overrides.accounts! : [anAccount()], - edges: overrides && overrides.hasOwnProperty('edges') ? overrides.edges! : [aTransactionEdge()], - nodes: overrides && overrides.hasOwnProperty('nodes') ? overrides.nodes! : [aTransaction()], - pageInfo: overrides && overrides.hasOwnProperty('pageInfo') ? overrides.pageInfo! : aPageInfo(), - tokens: overrides && overrides.hasOwnProperty('tokens') ? overrides.tokens! : [aToken()], - }; -}; - -export const aTransactionEdge = (overrides?: Partial): { __typename: 'TransactionEdge' } & TransactionEdge => { - return { - __typename: 'TransactionEdge', - cursor: overrides && overrides.hasOwnProperty('cursor') ? overrides.cursor! : 'eos', - node: overrides && overrides.hasOwnProperty('node') ? overrides.node! : aTransaction(), - }; -}; - -export const aTxParameters = (overrides?: Partial): { __typename: 'TxParameters' } & TxParameters => { - return { - __typename: 'TxParameters', - maxGasPerTx: overrides && overrides.hasOwnProperty('maxGasPerTx') ? overrides.maxGasPerTx! : '0xf', - maxInputs: overrides && overrides.hasOwnProperty('maxInputs') ? overrides.maxInputs! : 'soluta', - maxOutputs: overrides && overrides.hasOwnProperty('maxOutputs') ? overrides.maxOutputs! : 'iure', - maxSize: overrides && overrides.hasOwnProperty('maxSize') ? overrides.maxSize! : '0x4', - maxWitnesses: overrides && overrides.hasOwnProperty('maxWitnesses') ? overrides.maxWitnesses! : 'modi', - }; -}; - -export const anUtxoItem = (overrides?: Partial): { __typename: 'UtxoItem' } & UtxoItem => { - return { - __typename: 'UtxoItem', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xB', - blockCreated: overrides && overrides.hasOwnProperty('blockCreated') ? overrides.blockCreated! : 'quasi', - txCreatedIdx: overrides && overrides.hasOwnProperty('txCreatedIdx') ? overrides.txCreatedIdx! : '0xD', - utxoId: overrides && overrides.hasOwnProperty('utxoId') ? overrides.utxoId! : 'yk6ff55bv2kpr4nl0rf5mxxuz7pelbo0', - }; -}; - -export const aVariableOutput = (overrides?: Partial): { __typename: 'VariableOutput' } & VariableOutput => { - return { - __typename: 'VariableOutput', - amount: overrides && overrides.hasOwnProperty('amount') ? overrides.amount! : '0xc', - assetId: overrides && overrides.hasOwnProperty('assetId') ? overrides.assetId! : 'hq38k3ap8ok8krpquh789zkbfdd74ab6', - to: overrides && overrides.hasOwnProperty('to') ? overrides.to! : '4gs9ppn7jqumdt8t0gd7u4mra5dblqlbgjy1w5bv', - }; -}; diff --git a/packages/graphql/src/generated/types.ts b/packages/graphql/src/generated/types.ts deleted file mode 100644 index a911fbed8..000000000 --- a/packages/graphql/src/generated/types.ts +++ /dev/null @@ -1,1890 +0,0 @@ -import type { GraphQLClient, RequestOptions } from 'graphql-request'; -import { GraphQLError, print } from 'graphql' -import gql from 'graphql-tag'; -export type Maybe = T | null; -export type InputMaybe = Maybe; -export type Exact = { [K in keyof T]: T[K] }; -export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; -export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; -export type MakeEmpty = { [_ in K]?: never }; -export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; -type GraphQLClientRequestHeaders = RequestOptions['requestHeaders']; -/** All built-in and custom scalars, mapped to their actual values */ -export type Scalars = { - ID: { input: string; output: string; } - String: { input: string; output: string; } - Boolean: { input: boolean; output: boolean; } - Int: { input: number; output: number; } - Float: { input: number; output: number; } - Address: { input: string; output: string; } - AssetId: { input: string; output: string; } - BlockId: { input: string; output: string; } - Bytes32: { input: string; output: string; } - ContractId: { input: string; output: string; } - HexString: { input: string; output: string; } - Nonce: { input: string; output: string; } - Salt: { input: string; output: string; } - Signature: { input: string; output: string; } - Tai64Timestamp: { input: string; output: string; } - TransactionId: { input: string; output: string; } - TxPointer: { input: string; output: string; } - U8: { input: string; output: string; } - U32: { input: string; output: string; } - U64: { input: string; output: string; } - UtxoId: { input: string; output: string; } -}; - -export type Account = { - __typename: 'Account'; - address: Scalars['String']['output']; - name: Scalars['String']['output']; - url?: Maybe; -}; - -export type Balance = { - __typename: 'Balance'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - owner: Scalars['Address']['output']; - utxos?: Maybe>>; -}; - -export type BalanceConnection = { - __typename: 'BalanceConnection'; - /** A list of edges. */ - edges: Array; - /** A list of nodes. */ - nodes: Array; - /** Information to aid in pagination. */ - pageInfo: PageInfo; -}; - -/** An edge in a connection. */ -export type BalanceEdge = { - __typename: 'BalanceEdge'; - /** A cursor for use in pagination */ - cursor: Scalars['String']['output']; - /** The item at the end of the edge */ - node: Balance; -}; - -export type BalanceFilterInput = { - /** Filter coins based on the `owner` field */ - owner: Scalars['Address']['input']; -}; - -export type Block = { - __typename: 'Block'; - consensus: Consensus; - header: Header; - id: Scalars['BlockId']['output']; - producer?: Maybe; - time?: Maybe; - totalGasUsed?: Maybe; - transactions: Array; -}; - -export type BlockConnection = { - __typename: 'BlockConnection'; - /** A list of edges. */ - edges: Array; - /** A list of nodes. */ - nodes: Array; - /** Information to aid in pagination. */ - pageInfo: PageInfo; -}; - -/** An edge in a connection. */ -export type BlockEdge = { - __typename: 'BlockEdge'; - /** A cursor for use in pagination */ - cursor: Scalars['String']['output']; - /** The item at the end of the edge */ - node: Block; -}; - -export type Breakpoint = { - contract: Scalars['ContractId']['input']; - pc: Scalars['U64']['input']; -}; - -export type ChainInfo = { - __typename: 'ChainInfo'; - consensusParameters: ConsensusParameters; - daHeight: Scalars['U64']['output']; - gasCosts: GasCosts; - latestBlock: Block; - name: Scalars['String']['output']; -}; - -export type ChangeOutput = { - __typename: 'ChangeOutput'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - to: Scalars['Address']['output']; -}; - -export type Coin = { - __typename: 'Coin'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - /** TxPointer - the height of the block this coin was created in */ - blockCreated: Scalars['U32']['output']; - maturity: Scalars['U32']['output']; - owner: Scalars['Address']['output']; - /** TxPointer - the index of the transaction that created this coin */ - txCreatedIdx: Scalars['U64']['output']; - utxoId: Scalars['UtxoId']['output']; -}; - -export type CoinConnection = { - __typename: 'CoinConnection'; - /** A list of edges. */ - edges: Array; - /** A list of nodes. */ - nodes: Array; - /** Information to aid in pagination. */ - pageInfo: PageInfo; -}; - -/** An edge in a connection. */ -export type CoinEdge = { - __typename: 'CoinEdge'; - /** A cursor for use in pagination */ - cursor: Scalars['String']['output']; - /** The item at the end of the edge */ - node: Coin; -}; - -export type CoinFilterInput = { - /** Returns coins only with `asset_id`. */ - assetId?: InputMaybe; - /** Returns coins owned by the `owner`. */ - owner: Scalars['Address']['input']; -}; - -export type CoinOutput = { - __typename: 'CoinOutput'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - to: Scalars['Address']['output']; -}; - -/** The schema analog of the [`coins::CoinType`]. */ -export type CoinType = Coin | MessageCoin; - -export type Consensus = Genesis | PoAConsensus; - -export type ConsensusParameters = { - __typename: 'ConsensusParameters'; - baseAssetId: Scalars['AssetId']['output']; - chainId: Scalars['U64']['output']; - contractParams: ContractParameters; - feeParams: FeeParameters; - gasCosts: GasCosts; - predicateParams: PredicateParameters; - scriptParams: ScriptParameters; - txParams: TxParameters; -}; - -export type Contract = { - __typename: 'Contract'; - bytecode: Scalars['HexString']['output']; - id: Scalars['ContractId']['output']; - salt: Scalars['Salt']['output']; -}; - -export type ContractBalance = { - __typename: 'ContractBalance'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - contract: Scalars['ContractId']['output']; -}; - -export type ContractBalanceConnection = { - __typename: 'ContractBalanceConnection'; - /** A list of edges. */ - edges: Array; - /** A list of nodes. */ - nodes: Array; - /** Information to aid in pagination. */ - pageInfo: PageInfo; -}; - -/** An edge in a connection. */ -export type ContractBalanceEdge = { - __typename: 'ContractBalanceEdge'; - /** A cursor for use in pagination */ - cursor: Scalars['String']['output']; - /** The item at the end of the edge */ - node: ContractBalance; -}; - -export type ContractBalanceFilterInput = { - /** Filter assets based on the `contractId` field */ - contract: Scalars['ContractId']['input']; -}; - -export type ContractCreated = { - __typename: 'ContractCreated'; - contract: Contract; - stateRoot: Scalars['Bytes32']['output']; -}; - -export type ContractOutput = { - __typename: 'ContractOutput'; - balanceRoot: Scalars['Bytes32']['output']; - inputIndex: Scalars['Int']['output']; - stateRoot: Scalars['Bytes32']['output']; -}; - -export type ContractParameters = { - __typename: 'ContractParameters'; - contractMaxSize: Scalars['U64']['output']; - maxStorageSlots: Scalars['U64']['output']; -}; - -export type DependentCost = HeavyOperation | LightOperation; - -export type ExcludeInput = { - /** Messages to exclude from the selection. */ - messages: Array; - /** Utxos to exclude from the selection. */ - utxos: Array; -}; - -export type FailureStatus = { - __typename: 'FailureStatus'; - block: Block; - programState?: Maybe; - reason: Scalars['String']['output']; - receipts: Array; - time: Scalars['Tai64Timestamp']['output']; - transactionId: Scalars['TransactionId']['output']; -}; - -export type FeeParameters = { - __typename: 'FeeParameters'; - gasPerByte: Scalars['U64']['output']; - gasPriceFactor: Scalars['U64']['output']; -}; - -export type GasCosts = { - __typename: 'GasCosts'; - add: Scalars['U64']['output']; - addi: Scalars['U64']['output']; - aloc: Scalars['U64']['output']; - and: Scalars['U64']['output']; - andi: Scalars['U64']['output']; - bal: Scalars['U64']['output']; - bhei: Scalars['U64']['output']; - bhsh: Scalars['U64']['output']; - burn: Scalars['U64']['output']; - call: DependentCost; - cb: Scalars['U64']['output']; - ccp: DependentCost; - cfei: Scalars['U64']['output']; - cfsi: Scalars['U64']['output']; - contractRoot: DependentCost; - croo: Scalars['U64']['output']; - csiz: DependentCost; - div: Scalars['U64']['output']; - divi: Scalars['U64']['output']; - eck1: Scalars['U64']['output']; - ecr1: Scalars['U64']['output']; - ed19: Scalars['U64']['output']; - eq: Scalars['U64']['output']; - exp: Scalars['U64']['output']; - expi: Scalars['U64']['output']; - flag: Scalars['U64']['output']; - gm: Scalars['U64']['output']; - gt: Scalars['U64']['output']; - gtf: Scalars['U64']['output']; - ji: Scalars['U64']['output']; - jmp: Scalars['U64']['output']; - jmpb: Scalars['U64']['output']; - jmpf: Scalars['U64']['output']; - jne: Scalars['U64']['output']; - jneb: Scalars['U64']['output']; - jnef: Scalars['U64']['output']; - jnei: Scalars['U64']['output']; - jnzb: Scalars['U64']['output']; - jnzf: Scalars['U64']['output']; - jnzi: Scalars['U64']['output']; - k256: DependentCost; - lb: Scalars['U64']['output']; - ldc: DependentCost; - log: Scalars['U64']['output']; - logd: DependentCost; - lt: Scalars['U64']['output']; - lw: Scalars['U64']['output']; - mcl: DependentCost; - mcli: DependentCost; - mcp: DependentCost; - mcpi: DependentCost; - meq: DependentCost; - mint: Scalars['U64']['output']; - mldv: Scalars['U64']['output']; - mlog: Scalars['U64']['output']; - modOp: Scalars['U64']['output']; - modi: Scalars['U64']['output']; - moveOp: Scalars['U64']['output']; - movi: Scalars['U64']['output']; - mroo: Scalars['U64']['output']; - mul: Scalars['U64']['output']; - muli: Scalars['U64']['output']; - newStoragePerByte: Scalars['U64']['output']; - noop: Scalars['U64']['output']; - not: Scalars['U64']['output']; - or: Scalars['U64']['output']; - ori: Scalars['U64']['output']; - poph: Scalars['U64']['output']; - popl: Scalars['U64']['output']; - pshh: Scalars['U64']['output']; - pshl: Scalars['U64']['output']; - ret: Scalars['U64']['output']; - retd: DependentCost; - rvrt: Scalars['U64']['output']; - s256: DependentCost; - sb: Scalars['U64']['output']; - scwq: DependentCost; - sll: Scalars['U64']['output']; - slli: Scalars['U64']['output']; - smo: DependentCost; - srl: Scalars['U64']['output']; - srli: Scalars['U64']['output']; - srw: Scalars['U64']['output']; - srwq: DependentCost; - stateRoot: DependentCost; - sub: Scalars['U64']['output']; - subi: Scalars['U64']['output']; - sw: Scalars['U64']['output']; - sww: Scalars['U64']['output']; - swwq: DependentCost; - time: Scalars['U64']['output']; - tr: Scalars['U64']['output']; - tro: Scalars['U64']['output']; - vmInitialization: DependentCost; - wdam: Scalars['U64']['output']; - wdcm: Scalars['U64']['output']; - wddv: Scalars['U64']['output']; - wdmd: Scalars['U64']['output']; - wdml: Scalars['U64']['output']; - wdmm: Scalars['U64']['output']; - wdop: Scalars['U64']['output']; - wqam: Scalars['U64']['output']; - wqcm: Scalars['U64']['output']; - wqdv: Scalars['U64']['output']; - wqmd: Scalars['U64']['output']; - wqml: Scalars['U64']['output']; - wqmm: Scalars['U64']['output']; - wqop: Scalars['U64']['output']; - xor: Scalars['U64']['output']; - xori: Scalars['U64']['output']; -}; - -export type Genesis = { - __typename: 'Genesis'; - /** - * The chain configs define what consensus type to use, what settlement layer to use, - * rules of block validity, etc. - */ - chainConfigHash: Scalars['Bytes32']['output']; - /** The Binary Merkle Tree root of all genesis coins. */ - coinsRoot: Scalars['Bytes32']['output']; - /** The Binary Merkle Tree root of state, balances, contracts code hash of each contract. */ - contractsRoot: Scalars['Bytes32']['output']; - /** The Binary Merkle Tree root of all genesis messages. */ - messagesRoot: Scalars['Bytes32']['output']; -}; - -export type GroupedInput = { - __typename: 'GroupedInput'; - assetId?: Maybe; - contractId?: Maybe; - data?: Maybe; - inputs?: Maybe>>; - owner?: Maybe; - recipient?: Maybe; - sender?: Maybe; - totalAmount?: Maybe; - type?: Maybe; -}; - -export enum GroupedInputType { - InputCoin = 'InputCoin', - InputContract = 'InputContract', - InputMessage = 'InputMessage' -} - -export type GroupedOutput = { - __typename: 'GroupedOutput'; - assetId?: Maybe; - contract?: Maybe; - inputIndex?: Maybe; - outputs?: Maybe>>; - recipient?: Maybe; - to?: Maybe; - totalAmount?: Maybe; - type?: Maybe; -}; - -export enum GroupedOutputType { - ChangeOutput = 'ChangeOutput', - CoinOutput = 'CoinOutput', - ContractCreated = 'ContractCreated', - ContractOutput = 'ContractOutput', - MessageOutput = 'MessageOutput', - VariableOutput = 'VariableOutput' -} - -export type Header = { - __typename: 'Header'; - /** Hash of the application header. */ - applicationHash: Scalars['Bytes32']['output']; - /** The layer 1 height of messages and events to include since the last layer 1 block number. */ - daHeight: Scalars['U64']['output']; - /** Fuel block height. */ - height: Scalars['U32']['output']; - /** Hash of the header */ - id: Scalars['BlockId']['output']; - /** Number of message receipts in this block. */ - messageReceiptCount: Scalars['U64']['output']; - /** Merkle root of message receipts in this block. */ - messageReceiptRoot: Scalars['Bytes32']['output']; - /** Merkle root of all previous block header hashes. */ - prevRoot: Scalars['Bytes32']['output']; - /** The block producer time. */ - time: Scalars['Tai64Timestamp']['output']; - /** Number of transactions in this block. */ - transactionsCount: Scalars['U64']['output']; - /** Merkle root of transactions. */ - transactionsRoot: Scalars['Bytes32']['output']; -}; - -export type HeavyOperation = { - __typename: 'HeavyOperation'; - base: Scalars['U64']['output']; - gasPerUnit: Scalars['U64']['output']; -}; - -export type Input = InputCoin | InputContract | InputMessage; - -export type InputCoin = { - __typename: 'InputCoin'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - maturity: Scalars['U32']['output']; - owner: Scalars['Address']['output']; - predicate: Scalars['HexString']['output']; - predicateData: Scalars['HexString']['output']; - predicateGasUsed: Scalars['U64']['output']; - txPointer: Scalars['TxPointer']['output']; - utxoId: Scalars['UtxoId']['output']; - witnessIndex: Scalars['Int']['output']; -}; - -export type InputContract = { - __typename: 'InputContract'; - balanceRoot: Scalars['Bytes32']['output']; - contract: Contract; - stateRoot: Scalars['Bytes32']['output']; - txPointer: Scalars['TxPointer']['output']; - utxoId: Scalars['UtxoId']['output']; -}; - -export type InputMessage = { - __typename: 'InputMessage'; - amount: Scalars['U64']['output']; - data: Scalars['HexString']['output']; - nonce: Scalars['Nonce']['output']; - predicate: Scalars['HexString']['output']; - predicateData: Scalars['HexString']['output']; - predicateGasUsed: Scalars['U64']['output']; - recipient: Scalars['Address']['output']; - sender: Scalars['Address']['output']; - witnessIndex: Scalars['Int']['output']; -}; - -export type LightOperation = { - __typename: 'LightOperation'; - base: Scalars['U64']['output']; - unitsPerGas: Scalars['U64']['output']; -}; - -export type MerkleProof = { - __typename: 'MerkleProof'; - proofIndex: Scalars['U64']['output']; - proofSet: Array; -}; - -export type Message = { - __typename: 'Message'; - amount: Scalars['U64']['output']; - daHeight: Scalars['U64']['output']; - data: Scalars['HexString']['output']; - nonce: Scalars['Nonce']['output']; - recipient: Scalars['Address']['output']; - sender: Scalars['Address']['output']; -}; - -export type MessageCoin = { - __typename: 'MessageCoin'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - daHeight: Scalars['U64']['output']; - nonce: Scalars['Nonce']['output']; - recipient: Scalars['Address']['output']; - sender: Scalars['Address']['output']; -}; - -export type MessageConnection = { - __typename: 'MessageConnection'; - /** A list of edges. */ - edges: Array; - /** A list of nodes. */ - nodes: Array; - /** Information to aid in pagination. */ - pageInfo: PageInfo; -}; - -/** An edge in a connection. */ -export type MessageEdge = { - __typename: 'MessageEdge'; - /** A cursor for use in pagination */ - cursor: Scalars['String']['output']; - /** The item at the end of the edge */ - node: Message; -}; - -export type MessageProof = { - __typename: 'MessageProof'; - amount: Scalars['U64']['output']; - blockProof: MerkleProof; - commitBlockHeader: Header; - data: Scalars['HexString']['output']; - messageBlockHeader: Header; - messageProof: MerkleProof; - nonce: Scalars['Nonce']['output']; - recipient: Scalars['Address']['output']; - sender: Scalars['Address']['output']; -}; - -export enum MessageState { - NotFound = 'NOT_FOUND', - Spent = 'SPENT', - Unspent = 'UNSPENT' -} - -export type MessageStatus = { - __typename: 'MessageStatus'; - state: MessageState; -}; - -export type Mutation = { - __typename: 'Mutation'; - continueTx: RunResult; - /** Execute a dry-run of the transaction using a fork of current state, no changes are committed. */ - dryRun: Array; - endSession: Scalars['Boolean']['output']; - execute: Scalars['Boolean']['output']; - /** - * Sequentially produces `blocks_to_produce` blocks. The first block starts with - * `start_timestamp`. If the block production in the [`crate::service::Config`] is - * `Trigger::Interval { block_time }`, produces blocks with `block_time ` intervals between - * them. The `start_timestamp` is the timestamp in seconds. - */ - produceBlocks: Scalars['U32']['output']; - reset: Scalars['Boolean']['output']; - setBreakpoint: Scalars['Boolean']['output']; - setSingleStepping: Scalars['Boolean']['output']; - startSession: Scalars['ID']['output']; - startTx: RunResult; - /** - * Submits transaction to the `TxPool`. - * - * Returns submitted transaction if the transaction is included in the `TxPool` without problems. - */ - submit: Transaction; -}; - - -export type MutationContinueTxArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationDryRunArgs = { - tx: Scalars['HexString']['input']; - utxoValidation?: InputMaybe; -}; - - -export type MutationEndSessionArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationExecuteArgs = { - id: Scalars['ID']['input']; - op: Scalars['String']['input']; -}; - - -export type MutationProduceBlocksArgs = { - blocksToProduce: Scalars['U32']['input']; - startTimestamp?: InputMaybe; -}; - - -export type MutationResetArgs = { - id: Scalars['ID']['input']; -}; - - -export type MutationSetBreakpointArgs = { - breakpoint: Breakpoint; - id: Scalars['ID']['input']; -}; - - -export type MutationSetSingleSteppingArgs = { - enable: Scalars['Boolean']['input']; - id: Scalars['ID']['input']; -}; - - -export type MutationStartTxArgs = { - id: Scalars['ID']['input']; - txJson: Scalars['String']['input']; -}; - - -export type MutationSubmitArgs = { - tx: Scalars['HexString']['input']; -}; - -export type NodeInfo = { - __typename: 'NodeInfo'; - maxDepth: Scalars['U64']['output']; - maxTx: Scalars['U64']['output']; - minGasPrice: Scalars['U64']['output']; - nodeVersion: Scalars['String']['output']; - peers: Array; - utxoValidation: Scalars['Boolean']['output']; - vmBacktrace: Scalars['Boolean']['output']; -}; - -export type Operation = { - __typename: 'Operation'; - receipts?: Maybe>>; - type?: Maybe; -}; - -export type OperationReceipt = { - __typename: 'OperationReceipt'; - item?: Maybe; - receipts?: Maybe>>; -}; - -export enum OperationType { - FinalResult = 'FINAL_RESULT', - FromAccount = 'FROM_ACCOUNT', - FromContract = 'FROM_CONTRACT' -} - -export type Output = ChangeOutput | CoinOutput | ContractCreated | ContractOutput | VariableOutput; - -/** - * A separate `Breakpoint` type to be used as an output, as a single - * type cannot act as both input and output type in async-graphql - */ -export type OutputBreakpoint = { - __typename: 'OutputBreakpoint'; - contract: Scalars['ContractId']['output']; - pc: Scalars['U64']['output']; -}; - -/** Information about pagination in a connection */ -export type PageInfo = { - __typename: 'PageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -export type ParsedTime = { - __typename: 'ParsedTime'; - fromNow?: Maybe; - full?: Maybe; - rawTai64?: Maybe; - rawUnix?: Maybe; -}; - -export type PeerInfo = { - __typename: 'PeerInfo'; - /** The advertised multi-addrs that can be used to connect to this peer */ - addresses: Array; - /** The internal fuel p2p reputation of this peer */ - appScore: Scalars['Float']['output']; - /** The last reported height of the peer */ - blockHeight?: Maybe; - /** The self-reported version of the client the peer is using */ - clientVersion?: Maybe; - /** The libp2p peer id */ - id: Scalars['String']['output']; - /** The last heartbeat from this peer in unix epoch time ms */ - lastHeartbeatMs: Scalars['U64']['output']; -}; - -export type PoAConsensus = { - __typename: 'PoAConsensus'; - /** Gets the signature of the block produced by `PoA` consensus. */ - signature: Scalars['Signature']['output']; -}; - -export type Policies = { - __typename: 'Policies'; - gasPrice?: Maybe; - maturity?: Maybe; - maxFee?: Maybe; - witnessLimit?: Maybe; -}; - -export type Predicate = { - __typename: 'Predicate'; - bytecode: Scalars['HexString']['output']; - id: Scalars['Address']['output']; -}; - -export type PredicateParameters = { - __typename: 'PredicateParameters'; - maxGasPerPredicate: Scalars['U64']['output']; - maxMessageDataLength: Scalars['U64']['output']; - maxPredicateDataLength: Scalars['U64']['output']; - maxPredicateLength: Scalars['U64']['output']; -}; - -export type ProgramState = { - __typename: 'ProgramState'; - data: Scalars['HexString']['output']; - returnType: _ReturnType; -}; - -export type Query = { - __typename: 'Query'; - accounts: Array; - balance: Balance; - balances: BalanceConnection; - block?: Maybe; - blocks: BlockConnection; - chain: ChainInfo; - /** Gets the coin by `utxo_id`. */ - coin?: Maybe; - /** Gets all unspent coins of some `owner` maybe filtered with by `asset_id` per page. */ - coins: CoinConnection; - /** - * For each `query_per_asset`, get some spendable coins(of asset specified by the query) owned by - * `owner` that add up at least the query amount. The returned coins can be spent. - * The number of coins is optimized to prevent dust accumulation. - * - * The query supports excluding and maximum the number of coins. - * - * Returns: - * The list of spendable coins per asset from the query. The length of the result is - * the same as the length of `query_per_asset`. The ordering of assets and `query_per_asset` - * is the same. - */ - coinsToSpend: Array>; - contract?: Maybe; - contractBalance: ContractBalance; - contractBalances: ContractBalanceConnection; - /** Estimate the predicate gas for the provided transaction */ - estimatePredicates: Transaction; - /** Returns true when the GraphQL API is serving requests. */ - health: Scalars['Boolean']['output']; - memory: Scalars['String']['output']; - messageProof?: Maybe; - messageStatus: MessageStatus; - messages: MessageConnection; - nodeInfo: NodeInfo; - predicate?: Maybe; - register: Scalars['U64']['output']; - search?: Maybe; - tokens: Array; - transaction?: Maybe; - transactions: TransactionConnection; - transactionsByOwner: TransactionConnection; -}; - - -export type QueryAccountsArgs = { - addresses: Array>; -}; - - -export type QueryBalanceArgs = { - assetId: Scalars['AssetId']['input']; - owner: Scalars['Address']['input']; -}; - - -export type QueryBalancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - filter: BalanceFilterInput; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type QueryBlockArgs = { - height?: InputMaybe; - id?: InputMaybe; -}; - - -export type QueryBlocksArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type QueryCoinArgs = { - utxoId: Scalars['UtxoId']['input']; -}; - - -export type QueryCoinsArgs = { - after?: InputMaybe; - before?: InputMaybe; - filter: CoinFilterInput; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type QueryCoinsToSpendArgs = { - excludedIds?: InputMaybe; - owner: Scalars['Address']['input']; - queryPerAsset: Array; -}; - - -export type QueryContractArgs = { - id: Scalars['ContractId']['input']; -}; - - -export type QueryContractBalanceArgs = { - asset: Scalars['AssetId']['input']; - contract: Scalars['ContractId']['input']; -}; - - -export type QueryContractBalancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - filter: ContractBalanceFilterInput; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type QueryEstimatePredicatesArgs = { - tx: Scalars['HexString']['input']; -}; - - -export type QueryMemoryArgs = { - id: Scalars['ID']['input']; - size: Scalars['U32']['input']; - start: Scalars['U32']['input']; -}; - - -export type QueryMessageProofArgs = { - commitBlockHeight?: InputMaybe; - commitBlockId?: InputMaybe; - nonce: Scalars['Nonce']['input']; - transactionId: Scalars['TransactionId']['input']; -}; - - -export type QueryMessageStatusArgs = { - nonce: Scalars['Nonce']['input']; -}; - - -export type QueryMessagesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - owner?: InputMaybe; -}; - - -export type QueryPredicateArgs = { - address: Scalars['Address']['input']; -}; - - -export type QueryRegisterArgs = { - id: Scalars['ID']['input']; - register: Scalars['U32']['input']; -}; - - -export type QuerySearchArgs = { - query: Scalars['String']['input']; -}; - - -export type QueryTokensArgs = { - assetsId: Array>; -}; - - -export type QueryTransactionArgs = { - id: Scalars['TransactionId']['input']; -}; - - -export type QueryTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - - -export type QueryTransactionsByOwnerArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - owner: Scalars['Address']['input']; -}; - -export type Receipt = { - __typename: 'Receipt'; - amount?: Maybe; - assetId?: Maybe; - contract?: Maybe; - contractId?: Maybe; - data?: Maybe; - digest?: Maybe; - gas?: Maybe; - gasUsed?: Maybe; - is?: Maybe; - len?: Maybe; - nonce?: Maybe; - param1?: Maybe; - param2?: Maybe; - pc?: Maybe; - ptr?: Maybe; - ra?: Maybe; - rb?: Maybe; - rc?: Maybe; - rd?: Maybe; - reason?: Maybe; - receiptType: ReceiptType; - recipient?: Maybe; - result?: Maybe; - sender?: Maybe; - subId?: Maybe; - to?: Maybe; - toAddress?: Maybe; - val?: Maybe; -}; - -export enum ReceiptType { - Burn = 'BURN', - Call = 'CALL', - Log = 'LOG', - LogData = 'LOG_DATA', - MessageOut = 'MESSAGE_OUT', - Mint = 'MINT', - Panic = 'PANIC', - Return = 'RETURN', - ReturnData = 'RETURN_DATA', - Revert = 'REVERT', - ScriptResult = 'SCRIPT_RESULT', - Transfer = 'TRANSFER', - TransferOut = 'TRANSFER_OUT' -} - -export enum _ReturnType { - Return = 'RETURN', - ReturnData = 'RETURN_DATA', - Revert = 'REVERT' -} - -export type RunResult = { - __typename: 'RunResult'; - breakpoint?: Maybe; - jsonReceipts: Array; - state: RunState; -}; - -export enum RunState { - /** Stopped on a breakpoint */ - Breakpoint = 'BREAKPOINT', - /** All breakpoints have been processed, and the program has terminated */ - Completed = 'COMPLETED' -} - -export type ScriptParameters = { - __typename: 'ScriptParameters'; - maxScriptDataLength: Scalars['U64']['output']; - maxScriptLength: Scalars['U64']['output']; -}; - -export type SearchAccount = { - __typename: 'SearchAccount'; - address?: Maybe; - transactions?: Maybe>>; -}; - -export type SearchBlock = { - __typename: 'SearchBlock'; - height?: Maybe; - id?: Maybe; -}; - -export type SearchContract = { - __typename: 'SearchContract'; - id?: Maybe; -}; - -export type SearchResult = { - __typename: 'SearchResult'; - account?: Maybe; - block?: Maybe; - contract?: Maybe; - transaction?: Maybe; -}; - -export type SearchTransaction = { - __typename: 'SearchTransaction'; - id?: Maybe; -}; - -export type SpendQueryElementInput = { - /** Target amount for the query. */ - amount: Scalars['U64']['input']; - /** Identifier of the asset to spend. */ - assetId: Scalars['AssetId']['input']; - /** The maximum number of currencies for selection. */ - max?: InputMaybe; -}; - -export type SqueezedOutStatus = { - __typename: 'SqueezedOutStatus'; - reason: Scalars['String']['output']; -}; - -export type SubmittedStatus = { - __typename: 'SubmittedStatus'; - time: Scalars['Tai64Timestamp']['output']; -}; - -export type Subscription = { - __typename: 'Subscription'; - /** - * Returns a stream of status updates for the given transaction id. - * If the current status is [`TransactionStatus::Success`], [`TransactionStatus::SqueezedOut`] - * or [`TransactionStatus::Failed`] the stream will return that and end immediately. - * If the current status is [`TransactionStatus::Submitted`] this will be returned - * and the stream will wait for a future update. - * - * This stream will wait forever so it's advised to use within a timeout. - * - * It is possible for the stream to miss an update if it is polled slower - * then the updates arrive. In such a case the stream will close without - * a status. If this occurs the stream can simply be restarted to return - * the latest status. - */ - statusChange: TransactionStatus; - /** Submits transaction to the `TxPool` and await either confirmation or failure. */ - submitAndAwait: TransactionStatus; -}; - - -export type SubscriptionStatusChangeArgs = { - id: Scalars['TransactionId']['input']; -}; - - -export type SubscriptionSubmitAndAwaitArgs = { - tx: Scalars['HexString']['input']; -}; - -export type SuccessStatus = { - __typename: 'SuccessStatus'; - block: Block; - programState?: Maybe; - receipts: Array; - time: Scalars['Tai64Timestamp']['output']; - transactionId: Scalars['TransactionId']['output']; -}; - -export type Token = { - __typename: 'Token'; - assetId: Scalars['String']['output']; - decimals: Scalars['U64']['output']; - name: Scalars['String']['output']; - symbol: Scalars['String']['output']; - totalAssets?: Maybe; - totalSupply?: Maybe; - url?: Maybe; -}; - -export type Transaction = { - __typename: 'Transaction'; - accountsInvolved?: Maybe>>; - blockHeight?: Maybe; - bytecodeLength?: Maybe; - bytecodeWitnessIndex?: Maybe; - fee?: Maybe; - gasPrice?: Maybe; - gasUsed?: Maybe; - groupedInputs?: Maybe>>; - groupedOutputs?: Maybe>>; - id: Scalars['TransactionId']['output']; - inputAssetIds?: Maybe>; - inputContract?: Maybe; - inputContracts?: Maybe>; - inputs?: Maybe>; - isCreate: Scalars['Boolean']['output']; - isMint: Scalars['Boolean']['output']; - isPredicate?: Maybe; - isScript: Scalars['Boolean']['output']; - maturity?: Maybe; - mintAmount?: Maybe; - mintAssetId?: Maybe; - operations?: Maybe>>; - outputContract?: Maybe; - outputs: Array; - policies?: Maybe; - /** Return the transaction bytes using canonical encoding */ - rawPayload: Scalars['HexString']['output']; - receipts?: Maybe>; - receiptsRoot?: Maybe; - salt?: Maybe; - script?: Maybe; - scriptData?: Maybe; - scriptGasLimit?: Maybe; - status?: Maybe; - statusType?: Maybe; - storageSlots?: Maybe>; - time?: Maybe; - title?: Maybe; - totalAccounts?: Maybe; - totalAssets?: Maybe; - totalOperations?: Maybe; - txPointer?: Maybe; - witnesses?: Maybe>; -}; - -export type TransactionAccount = { - __typename: 'TransactionAccount'; - id?: Maybe; - type?: Maybe; -}; - -export enum TransactionAccountType { - Contract = 'Contract', - Predicate = 'Predicate', - Wallet = 'Wallet' -} - -export type TransactionConnection = { - __typename: 'TransactionConnection'; - accounts?: Maybe>>; - /** A list of edges. */ - edges: Array; - /** A list of nodes. */ - nodes: Array; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - tokens?: Maybe>>; -}; - -/** An edge in a connection. */ -export type TransactionEdge = { - __typename: 'TransactionEdge'; - /** A cursor for use in pagination */ - cursor: Scalars['String']['output']; - /** The item at the end of the edge */ - node: Transaction; -}; - -export type TransactionStatus = FailureStatus | SqueezedOutStatus | SubmittedStatus | SuccessStatus; - -export enum TransactionStatusType { - Failure = 'Failure', - Submitted = 'Submitted', - Success = 'Success' -} - -export type TxParameters = { - __typename: 'TxParameters'; - maxGasPerTx: Scalars['U64']['output']; - maxInputs: Scalars['U8']['output']; - maxOutputs: Scalars['U8']['output']; - maxSize: Scalars['U64']['output']; - maxWitnesses: Scalars['U32']['output']; -}; - -export type UtxoItem = { - __typename: 'UtxoItem'; - amount: Scalars['U64']['output']; - blockCreated?: Maybe; - txCreatedIdx?: Maybe; - utxoId: Scalars['UtxoId']['output']; -}; - -export type VariableOutput = { - __typename: 'VariableOutput'; - amount: Scalars['U64']['output']; - assetId: Scalars['AssetId']['output']; - to: Scalars['Address']['output']; -}; - -export type ContractItemFragment = { __typename: 'Contract', id: string, bytecode: string, salt: string }; - -export type ContractBalanceItemFragment = { __typename: 'ContractBalance', contract: string, amount: string, assetId: string }; - -export type ContractBalanceConnectionItemFragment = { __typename: 'ContractBalanceConnection', pageInfo: { __typename: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, endCursor?: string | null, startCursor?: string | null }, edges: Array<{ __typename: 'ContractBalanceEdge', cursor: string, node: { __typename: 'ContractBalance', contract: string, amount: string, assetId: string } }> }; - -export type GetAccountTransactionsQueryVariables = Exact<{ - owner: Scalars['Address']['input']; -}>; - - -export type GetAccountTransactionsQuery = { __typename: 'Query', transactions: { __typename: 'TransactionConnection', pageInfo: { __typename: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, endCursor?: string | null, startCursor?: string | null }, edges: Array<{ __typename: 'TransactionEdge', cursor: string, node: { __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null } }> } }; - -export type AccountBalanceFragment = { __typename: 'Balance', assetId: string, amount: string, owner: string, utxos?: Array<{ __typename: 'UtxoItem', utxoId: string, amount: string, txCreatedIdx?: string | null, blockCreated?: string | null } | null> | null }; - -export type GetBalancesQueryVariables = Exact<{ - owner: Scalars['Address']['input']; -}>; - - -export type GetBalancesQuery = { __typename: 'Query', balances: { __typename: 'BalanceConnection', nodes: Array<{ __typename: 'Balance', assetId: string, amount: string, owner: string, utxos?: Array<{ __typename: 'UtxoItem', utxoId: string, amount: string, txCreatedIdx?: string | null, blockCreated?: string | null } | null> | null }> } }; - -export type BlockItemFragment = { __typename: 'Block', totalGasUsed?: string | null, id: string, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, consensus: { __typename: 'Genesis' } | { __typename: 'PoAConsensus', signature: string }, header: { __typename: 'Header', transactionsCount: string, time: string }, transactions: Array<{ __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null }> }; - -export type GetBlockByHeightQueryVariables = Exact<{ - height?: InputMaybe; -}>; - - -export type GetBlockByHeightQuery = { __typename: 'Query', block?: { __typename: 'Block', totalGasUsed?: string | null, id: string, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, consensus: { __typename: 'Genesis' } | { __typename: 'PoAConsensus', signature: string }, header: { __typename: 'Header', transactionsCount: string, time: string }, transactions: Array<{ __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null }> } | null }; - -export type GetBlockByIdQueryVariables = Exact<{ - id?: InputMaybe; -}>; - - -export type GetBlockByIdQuery = { __typename: 'Query', block?: { __typename: 'Block', totalGasUsed?: string | null, id: string, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, consensus: { __typename: 'Genesis' } | { __typename: 'PoAConsensus', signature: string }, header: { __typename: 'Header', transactionsCount: string, time: string }, transactions: Array<{ __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null }> } | null }; - -export type GetContractQueryVariables = Exact<{ - id: Scalars['ContractId']['input']; -}>; - - -export type GetContractQuery = { __typename: 'Query', contract?: { __typename: 'Contract', id: string, bytecode: string, salt: string } | null }; - -export type GetContractBalancesQueryVariables = Exact<{ - id: Scalars['ContractId']['input']; -}>; - - -export type GetContractBalancesQuery = { __typename: 'Query', contractBalances: { __typename: 'ContractBalanceConnection', pageInfo: { __typename: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, endCursor?: string | null, startCursor?: string | null }, edges: Array<{ __typename: 'ContractBalanceEdge', cursor: string, node: { __typename: 'ContractBalance', contract: string, amount: string, assetId: string } }> } }; - -export type GetLastTransactionsQueryVariables = Exact<{ - last?: InputMaybe; - first?: InputMaybe; - after?: InputMaybe; - before?: InputMaybe; -}>; - - -export type GetLastTransactionsQuery = { __typename: 'Query', transactions: { __typename: 'TransactionConnection', pageInfo: { __typename: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, endCursor?: string | null, startCursor?: string | null }, edges: Array<{ __typename: 'TransactionEdge', cursor: string, node: { __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null } }> } }; - -export type GetPredicateQueryVariables = Exact<{ - address: Scalars['Address']['input']; -}>; - - -export type GetPredicateQuery = { __typename: 'Query', predicate?: { __typename: 'Predicate', id: string, bytecode: string } | null }; - -export type GetTransactionQueryVariables = Exact<{ - id: Scalars['TransactionId']['input']; -}>; - - -export type GetTransactionQuery = { __typename: 'Query', transaction?: { __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null } | null }; - -export type SearchQueryQueryVariables = Exact<{ - search: Scalars['String']['input']; -}>; - - -export type SearchQueryQuery = { __typename: 'Query', search?: { __typename: 'SearchResult', account?: { __typename: 'SearchAccount', address?: string | null, transactions?: Array<{ __typename: 'SearchTransaction', id?: string | null } | null> | null } | null, contract?: { __typename: 'SearchContract', id?: string | null } | null, block?: { __typename: 'SearchBlock', id?: string | null, height?: string | null } | null, transaction?: { __typename: 'SearchTransaction', id?: string | null } | null } | null }; - -export type TransactionContractItemFragment = { __typename: 'Contract', id: string }; - -type TransactionStatus_FailureStatus_Fragment = { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null }; - -type TransactionStatus_SqueezedOutStatus_Fragment = { __typename: 'SqueezedOutStatus', reason: string }; - -type TransactionStatus_SubmittedStatus_Fragment = { __typename: 'SubmittedStatus', time: string }; - -type TransactionStatus_SuccessStatus_Fragment = { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null }; - -export type TransactionStatusFragment = TransactionStatus_FailureStatus_Fragment | TransactionStatus_SqueezedOutStatus_Fragment | TransactionStatus_SubmittedStatus_Fragment | TransactionStatus_SuccessStatus_Fragment; - -type TransactionInput_InputCoin_Fragment = { __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number }; - -type TransactionInput_InputContract_Fragment = { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } }; - -type TransactionInput_InputMessage_Fragment = { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }; - -export type TransactionInputFragment = TransactionInput_InputCoin_Fragment | TransactionInput_InputContract_Fragment | TransactionInput_InputMessage_Fragment; - -type TransactionOutput_ChangeOutput_Fragment = { __typename: 'ChangeOutput', to: string, amount: string, assetId: string }; - -type TransactionOutput_CoinOutput_Fragment = { __typename: 'CoinOutput', to: string, amount: string, assetId: string }; - -type TransactionOutput_ContractCreated_Fragment = { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } }; - -type TransactionOutput_ContractOutput_Fragment = { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string }; - -type TransactionOutput_VariableOutput_Fragment = { __typename: 'VariableOutput', to: string, amount: string, assetId: string }; - -export type TransactionOutputFragment = TransactionOutput_ChangeOutput_Fragment | TransactionOutput_CoinOutput_Fragment | TransactionOutput_ContractCreated_Fragment | TransactionOutput_ContractOutput_Fragment | TransactionOutput_VariableOutput_Fragment; - -export type TransactionReceiptFragment = { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }; - -export type InnerReceiptItemFragment = { __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null }; - -export type OperationReceiptItemFragment = { __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null }; - -export type OperationItemFragment = { __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null }; - -export type TransactionItemFragment = { __typename: 'Transaction', id: string, title?: string | null, isPredicate?: boolean | null, blockHeight?: string | null, statusType?: TransactionStatusType | null, totalAccounts?: number | null, totalAssets?: number | null, totalOperations?: number | null, gasUsed?: string | null, fee?: string | null, gasPrice?: string | null, maturity?: string | null, txPointer?: string | null, isScript: boolean, isCreate: boolean, isMint: boolean, witnesses?: Array | null, receiptsRoot?: string | null, script?: string | null, scriptData?: string | null, bytecodeWitnessIndex?: number | null, bytecodeLength?: string | null, salt?: string | null, storageSlots?: Array | null, rawPayload: string, mintAmount?: string | null, mintAssetId?: string | null, inputAssetIds?: Array | null, time?: { __typename: 'ParsedTime', fromNow?: string | null, full?: string | null, rawTai64?: string | null, rawUnix?: string | null } | null, groupedInputs?: Array<{ __typename: 'GroupedInput', type?: GroupedInputType | null, totalAmount?: string | null, contractId?: string | null, assetId?: string | null, sender?: string | null, recipient?: string | null, data?: string | null, owner?: string | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string } | null> | null } | null> | null, groupedOutputs?: Array<{ __typename: 'GroupedOutput', to?: string | null, type?: GroupedOutputType | null, totalAmount?: string | null, assetId?: string | null, inputIndex?: number | null, recipient?: string | null, outputs?: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string } | null> | null, contract?: { __typename: 'Contract', id: string } | null } | null> | null, accountsInvolved?: Array<{ __typename: 'TransactionAccount', id?: string | null, type?: TransactionAccountType | null } | null> | null, operations?: Array<{ __typename: 'Operation', type?: OperationType | null, receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', receipts?: Array<{ __typename: 'OperationReceipt', item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null, item?: { __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null } | null } | null> | null } | null> | null, inputContract?: { __typename: 'InputContract', contract: { __typename: 'Contract', id: string } } | null, outputContract?: { __typename: 'ContractOutput', inputIndex: number } | null, status?: { __typename: 'FailureStatus', time: string, programState?: { __typename: 'ProgramState', data: string } | null } | { __typename: 'SqueezedOutStatus', reason: string } | { __typename: 'SubmittedStatus', time: string } | { __typename: 'SuccessStatus', time: string, block: { __typename: 'Block', id: string, header: { __typename: 'Header', id: string, height: string, daHeight: string, applicationHash: string, messageReceiptRoot: string, messageReceiptCount: string, time: string } }, programState?: { __typename: 'ProgramState', data: string } | null } | null, inputContracts?: Array<{ __typename: 'Contract', id: string }> | null, inputs?: Array<{ __typename: 'InputCoin', amount: string, assetId: string, owner: string, predicate: string, predicateData: string, txPointer: string, utxoId: string, witnessIndex: number } | { __typename: 'InputContract', utxoId: string, balanceRoot: string, txPointer: string, contract: { __typename: 'Contract', id: string } } | { __typename: 'InputMessage', sender: string, recipient: string, amount: string, nonce: string, data: string, predicate: string, predicateData: string }> | null, outputs: Array<{ __typename: 'ChangeOutput', to: string, amount: string, assetId: string } | { __typename: 'CoinOutput', to: string, amount: string, assetId: string } | { __typename: 'ContractCreated', contract: { __typename: 'Contract', id: string } } | { __typename: 'ContractOutput', inputIndex: number, balanceRoot: string } | { __typename: 'VariableOutput', to: string, amount: string, assetId: string }>, receipts?: Array<{ __typename: 'Receipt', pc?: string | null, is?: string | null, toAddress?: string | null, amount?: string | null, assetId?: string | null, gas?: string | null, param1?: string | null, param2?: string | null, val?: string | null, ptr?: string | null, digest?: string | null, reason?: string | null, ra?: string | null, rb?: string | null, rc?: string | null, rd?: string | null, len?: string | null, receiptType: ReceiptType, result?: string | null, gasUsed?: string | null, data?: string | null, sender?: string | null, recipient?: string | null, nonce?: string | null, contractId?: string | null, subId?: string | null, contract?: { __typename: 'Contract', id: string } | null, to?: { __typename: 'Contract', id: string } | null }> | null }; - -export const ContractItemFragmentDoc = gql` - fragment ContractItem on Contract { - id - bytecode - salt -} - `; -export const ContractBalanceItemFragmentDoc = gql` - fragment ContractBalanceItem on ContractBalance { - contract - amount - assetId -} - `; -export const ContractBalanceConnectionItemFragmentDoc = gql` - fragment ContractBalanceConnectionItem on ContractBalanceConnection { - pageInfo { - hasNextPage - hasPreviousPage - endCursor - startCursor - } - edges { - cursor - node { - ...ContractBalanceItem - } - } -} - ${ContractBalanceItemFragmentDoc}`; -export const AccountBalanceFragmentDoc = gql` - fragment AccountBalance on Balance { - __typename - assetId - amount - owner - utxos { - __typename - utxoId - amount - txCreatedIdx - blockCreated - } -} - `; -export const TransactionContractItemFragmentDoc = gql` - fragment TransactionContractItem on Contract { - __typename - id -} - `; -export const TransactionInputFragmentDoc = gql` - fragment TransactionInput on Input { - __typename - ... on InputCoin { - amount - assetId - owner - predicate - predicateData - txPointer - utxoId - witnessIndex - } - ... on InputContract { - utxoId - balanceRoot - txPointer - contract { - ...TransactionContractItem - } - } - ... on InputMessage { - sender - recipient - amount - nonce - data - predicate - predicateData - } -} - ${TransactionContractItemFragmentDoc}`; -export const TransactionOutputFragmentDoc = gql` - fragment TransactionOutput on Output { - __typename - ... on CoinOutput { - to - amount - assetId - } - ... on ContractOutput { - inputIndex - balanceRoot - } - ... on ChangeOutput { - to - amount - assetId - } - ... on VariableOutput { - to - amount - assetId - } - ... on ContractCreated { - contract { - ...TransactionContractItem - } - } -} - ${TransactionContractItemFragmentDoc}`; -export const TransactionReceiptFragmentDoc = gql` - fragment TransactionReceipt on Receipt { - __typename - contract { - ...TransactionContractItem - } - to { - ...TransactionContractItem - } - pc - is - toAddress - amount - assetId - gas - param1 - param2 - val - ptr - digest - reason - ra - rb - rc - rd - len - receiptType - result - gasUsed - data - sender - recipient - nonce - contractId - subId -} - ${TransactionContractItemFragmentDoc}`; -export const InnerReceiptItemFragmentDoc = gql` - fragment InnerReceiptItem on OperationReceipt { - item { - ...TransactionReceipt - } -} - ${TransactionReceiptFragmentDoc}`; -export const OperationReceiptItemFragmentDoc = gql` - fragment OperationReceiptItem on OperationReceipt { - ...InnerReceiptItem - receipts { - ...InnerReceiptItem - receipts { - ...InnerReceiptItem - receipts { - ...InnerReceiptItem - } - } - } -} - ${InnerReceiptItemFragmentDoc}`; -export const OperationItemFragmentDoc = gql` - fragment OperationItem on Operation { - __typename - type - receipts { - ...OperationReceiptItem - receipts { - ...OperationReceiptItem - } - } -} - ${OperationReceiptItemFragmentDoc}`; -export const TransactionStatusFragmentDoc = gql` - fragment TransactionStatus on TransactionStatus { - __typename - ... on SqueezedOutStatus { - reason - } - ... on SuccessStatus { - time - block { - id - header { - id - height - daHeight - applicationHash - messageReceiptRoot - messageReceiptCount - time - } - } - programState { - data - } - } - ... on FailureStatus { - time - programState { - data - } - } - ... on SubmittedStatus { - time - } -} - `; -export const TransactionItemFragmentDoc = gql` - fragment TransactionItem on Transaction { - id - title - time { - fromNow - full - rawTai64 - rawUnix - } - groupedInputs { - type - totalAmount - inputs { - ...TransactionInput - } - contractId - assetId - sender - recipient - data - owner - } - groupedOutputs { - to - type - totalAmount - outputs { - ...TransactionOutput - } - contract { - id - } - assetId - inputIndex - recipient - } - accountsInvolved { - id - type - } - operations { - ...OperationItem - } - isPredicate - blockHeight - statusType - totalAccounts - totalAssets - totalOperations - gasUsed - fee - __typename - gasPrice - maturity - txPointer - isScript - isCreate - isMint - witnesses - receiptsRoot - script - scriptData - bytecodeWitnessIndex - bytecodeLength - salt - storageSlots - rawPayload - mintAmount - mintAssetId - inputContract { - contract { - id - } - } - outputContract { - inputIndex - } - status { - ...TransactionStatus - } - inputAssetIds - inputContracts { - ...TransactionContractItem - } - inputs { - ...TransactionInput - } - outputs { - ...TransactionOutput - } - receipts { - ...TransactionReceipt - } -} - ${TransactionInputFragmentDoc} -${TransactionOutputFragmentDoc} -${OperationItemFragmentDoc} -${TransactionStatusFragmentDoc} -${TransactionContractItemFragmentDoc} -${TransactionReceiptFragmentDoc}`; -export const BlockItemFragmentDoc = gql` - fragment BlockItem on Block { - time { - fromNow - full - rawTai64 - rawUnix - } - totalGasUsed - id - consensus { - __typename - ... on PoAConsensus { - signature - } - } - header { - transactionsCount - time - } - transactions { - ...TransactionItem - } -} - ${TransactionItemFragmentDoc}`; -export const GetAccountTransactionsDocument = gql` - query getAccountTransactions($owner: Address!) { - transactions: transactionsByOwner(first: 30, owner: $owner) { - pageInfo { - hasNextPage - hasPreviousPage - endCursor - startCursor - } - edges { - cursor - node { - ...TransactionItem - } - } - } -} - ${TransactionItemFragmentDoc}`; -export const GetBalancesDocument = gql` - query getBalances($owner: Address!) { - balances(first: 100, filter: {owner: $owner}) { - nodes { - ...AccountBalance - } - } -} - ${AccountBalanceFragmentDoc}`; -export const GetBlockByHeightDocument = gql` - query getBlockByHeight($height: U32) { - block(height: $height) { - ...BlockItem - } -} - ${BlockItemFragmentDoc}`; -export const GetBlockByIdDocument = gql` - query getBlockById($id: BlockId) { - block(id: $id) { - ...BlockItem - } -} - ${BlockItemFragmentDoc}`; -export const GetContractDocument = gql` - query getContract($id: ContractId!) { - contract(id: $id) { - ...ContractItem - } -} - ${ContractItemFragmentDoc}`; -export const GetContractBalancesDocument = gql` - query getContractBalances($id: ContractId!) { - contractBalances(filter: {contract: $id}, first: 1000) { - ...ContractBalanceConnectionItem - } -} - ${ContractBalanceConnectionItemFragmentDoc}`; -export const GetLastTransactionsDocument = gql` - query getLastTransactions($last: Int, $first: Int, $after: String, $before: String) { - transactions(last: $last, first: $first, after: $after, before: $before) { - pageInfo { - hasNextPage - hasPreviousPage - endCursor - startCursor - } - edges { - cursor - node { - ...TransactionItem - } - } - } -} - ${TransactionItemFragmentDoc}`; -export const GetPredicateDocument = gql` - query getPredicate($address: Address!) { - predicate(address: $address) { - id - bytecode - } -} - `; -export const GetTransactionDocument = gql` - query getTransaction($id: TransactionId!) { - transaction(id: $id) { - ...TransactionItem - } -} - ${TransactionItemFragmentDoc}`; -export const SearchQueryDocument = gql` - query searchQuery($search: String!) { - search(query: $search) { - account { - address - transactions { - id - } - } - contract { - id - } - block { - id - height - } - transaction { - id - } - } -} - `; - -export type SdkFunctionWrapper = (action: (requestHeaders?:Record) => Promise, operationName: string, operationType?: string, variables?: any) => Promise; - - -const defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, _variables) => action(); -const GetAccountTransactionsDocumentString = print(GetAccountTransactionsDocument); -const GetBalancesDocumentString = print(GetBalancesDocument); -const GetBlockByHeightDocumentString = print(GetBlockByHeightDocument); -const GetBlockByIdDocumentString = print(GetBlockByIdDocument); -const GetContractDocumentString = print(GetContractDocument); -const GetContractBalancesDocumentString = print(GetContractBalancesDocument); -const GetLastTransactionsDocumentString = print(GetLastTransactionsDocument); -const GetPredicateDocumentString = print(GetPredicateDocument); -const GetTransactionDocumentString = print(GetTransactionDocument); -const SearchQueryDocumentString = print(SearchQueryDocument); -export function getSdk(client: GraphQLClient, withWrapper: SdkFunctionWrapper = defaultWrapper) { - return { - getAccountTransactions(variables: GetAccountTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetAccountTransactionsQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetAccountTransactionsDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getAccountTransactions', 'query', variables); - }, - getBalances(variables: GetBalancesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetBalancesQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetBalancesDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getBalances', 'query', variables); - }, - getBlockByHeight(variables?: GetBlockByHeightQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetBlockByHeightQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetBlockByHeightDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getBlockByHeight', 'query', variables); - }, - getBlockById(variables?: GetBlockByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetBlockByIdQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetBlockByIdDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getBlockById', 'query', variables); - }, - getContract(variables: GetContractQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetContractQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetContractDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getContract', 'query', variables); - }, - getContractBalances(variables: GetContractBalancesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetContractBalancesQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetContractBalancesDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getContractBalances', 'query', variables); - }, - getLastTransactions(variables?: GetLastTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetLastTransactionsQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetLastTransactionsDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getLastTransactions', 'query', variables); - }, - getPredicate(variables: GetPredicateQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetPredicateQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetPredicateDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getPredicate', 'query', variables); - }, - getTransaction(variables: GetTransactionQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: GetTransactionQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(GetTransactionDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'getTransaction', 'query', variables); - }, - searchQuery(variables: SearchQueryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<{ data: SearchQueryQuery; errors?: GraphQLError[]; extensions?: any; headers: Headers; status: number; }> { - return withWrapper((wrappedRequestHeaders) => client.rawRequest(SearchQueryDocumentString, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'searchQuery', 'query', variables); - } - }; -} -export type Sdk = ReturnType; \ No newline at end of file diff --git a/packages/graphql/src/graphql/GraphQLContext.ts b/packages/graphql/src/graphql/GraphQLContext.ts deleted file mode 100644 index 68e3f93b1..000000000 --- a/packages/graphql/src/graphql/GraphQLContext.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { env } from '~/config'; -import { ChainEntity } from '~/domain/Chain/ChainEntity'; -import DataCache from '~/infra/cache/DataCache'; -import { type GraphQLSDK, client } from './GraphQLSDK'; -import type { GQLChainInfo } from './generated/sdk-provider'; - -export type GraphQLContext = { - chain: ChainEntity | null; - client: GraphQLSDK; - isAuthenticated: boolean; -}; - -export class GraphQLContextFactory { - static async create(req: Request): Promise { - let isAuthenticated = true; - const secret = env.get('SERVER_API_KEY'); - const bearer = `Bearer ${secret}`; - const token = - req.headers.get('x-api-key') || req.headers.get('Authorization'); - if (!token || token !== bearer) { - isAuthenticated = false; - } - - // Cache chain info to avoid fetching on every request - let chainEntity = DataCache.getInstance().get('chainInfo'); - if (!chainEntity) { - const res = await client.sdk.chain(); - const chainItem = res.data?.chain; - if (!chainItem) { - return { client, chain: null, isAuthenticated }; - } - chainEntity = ChainEntity.create(chainItem as GQLChainInfo); - DataCache.getInstance().save('chainInfo', 10 * 60 * 1000, chainEntity); - } - - return { client, chain: chainEntity, isAuthenticated }; - } -} diff --git a/packages/graphql/src/graphql/GraphQLSDK.ts b/packages/graphql/src/graphql/GraphQLSDK.ts deleted file mode 100644 index 77f1a3876..000000000 --- a/packages/graphql/src/graphql/GraphQLSDK.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { GraphQLClient } from 'graphql-request'; -import { env } from '~/config'; -import { getSdk } from '~/graphql/generated/sdk-provider'; - -export type GQLClient = ReturnType; - -export class GraphQLSDK { - client: GraphQLClient; - sdk: ReturnType; - - constructor() { - const provider = env.get('FUEL_PROVIDER'); - if (!provider) { - throw new Error('Missing FUEL_PROVIDER'); - } - this.client = new GraphQLClient(provider); - this.sdk = getSdk(this.client); - } -} - -export const client = new GraphQLSDK(); diff --git a/packages/graphql/src/graphql/GraphQLServer.ts b/packages/graphql/src/graphql/GraphQLServer.ts deleted file mode 100644 index 8b42461b1..000000000 --- a/packages/graphql/src/graphql/GraphQLServer.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { join } from 'node:path'; -import { loadFilesSync } from '@graphql-tools/load-files'; -import { mergeTypeDefs } from '@graphql-tools/merge'; -import { makeExecutableSchema } from '@graphql-tools/schema'; -import type { GraphQLSchema } from 'graphql'; -import { createYoga } from 'graphql-yoga'; -import { env } from '~/config'; -import { GraphQLContextFactory } from './GraphQLContext'; -import { resolvers } from './resolvers'; - -const DEBUG = env.get('DEBUG'); -const typesArray = loadFilesSync(join(__dirname, './schemas')); -const typeDefs = mergeTypeDefs(typesArray); - -export class GraphQLServer { - schema() { - return makeExecutableSchema({ - typeDefs, - resolvers, - }); - } - - setup(schema: GraphQLSchema) { - return createYoga({ - schema, - batching: true, - logging: !!DEBUG, - maskedErrors: !!DEBUG, - context: async ({ request }) => { - return GraphQLContextFactory.create(request); - }, - }); - } -} diff --git a/packages/graphql/src/graphql/resolvers/APYResolver.ts b/packages/graphql/src/graphql/resolvers/APYResolver.ts deleted file mode 100644 index 47e69cfd3..000000000 --- a/packages/graphql/src/graphql/resolvers/APYResolver.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import DataCache from '~/infra/cache/DataCache'; - -const ONE_UNIT = 10n ** 9n; -const INITIAL_SUPPLY = 10_000_000_000n * ONE_UNIT; -// 30 minutes -const CACHE_EXPIRATION = 1000 * 60 * 30; - -export class APYResolver { - static create() { - const resolvers = new APYResolver(); - return { - Query: { - stakingAPY: resolvers.stakingAPY, - }, - }; - } - - async stakingAPY() { - logger.debug('GraphQL', 'APYResolver.stakingAPY'); - const cachedAPY = DataCache.getInstance().get('staking-apy'); - - if (cachedAPY) - return { - amount: cachedAPY, - }; - - const network = env.get('FUEL_CHAIN'); - const envPrefix = network === 'mainnet' ? 'mainnet' : 'testnet'; - const baseUrl = `https://rest.seq.${envPrefix}.fuel.network`; - const poolResp = await fetch( - new URL('/cosmos/staking/v1beta1/pool', baseUrl), - ).then((resp) => resp.json()); - const inflationResp = await fetch( - new URL('/cosmos/mint/v1beta1/inflation', baseUrl), - ).then((resp) => resp.json()); - const inflation = BigInt(Number(inflationResp.inflation) * 100); - const totalDelegation = BigInt(poolResp.pool.bonded_tokens); - const totalInflation = (INITIAL_SUPPLY / 100n) * inflation; - const APY = (totalInflation * 100n) / totalDelegation; - - DataCache.getInstance().save( - 'staking-apy', - CACHE_EXPIRATION, - APY.toString(), - ); - - return { - amount: APY.toString(), - }; - } -} diff --git a/packages/graphql/src/graphql/resolvers/AssetResolver.ts b/packages/graphql/src/graphql/resolvers/AssetResolver.ts deleted file mode 100644 index 23d6005a8..000000000 --- a/packages/graphql/src/graphql/resolvers/AssetResolver.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { logger } from '~/core/Logger'; -import type { GQLQueryTransactionsArgs } from '~/graphql/generated/sdk-provider'; -import AssetDAO from '~/infra/dao/AssetDAO'; -import AssetGateway from '~/infra/gateway/AssetGateway'; -import PaginatedParams from '~/infra/paginator/PaginatedParams'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Params = { - asset: { contractId: string } & GQLQueryTransactionsArgs; -}; - -export class AssetResolver { - static create() { - const resolvers = new AssetResolver(); - return { - Query: { - assetsByContract: resolvers.assetsByContract, - }, - }; - } - - // TODO: index data to Postgres instead of fetch from SDK - async assetsByContract( - _: any, - params: Params['asset'], - { chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'AssetResolver.assetsByContract'); - const assetGateway = new AssetGateway(); - const assetDAO = new AssetDAO(); - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const assets = await assetDAO.getPaginatedByContractId( - params.contractId, - new PaginatedParams(params), - ); - for (const asset of assets.nodes) { - const resolvedAsset = await assetGateway.getAsset(asset.assetId, chainId); - asset.assetId = resolvedAsset.assetId; - asset.contractId = resolvedAsset.contractId; - asset.name = resolvedAsset.name; - asset.symbol = resolvedAsset.symbol; - asset.decimals = resolvedAsset.decimals; - asset.icon = resolvedAsset.icon; - asset.networks = resolvedAsset.networks; - asset.suspicious = resolvedAsset.suspicious; - asset.rate = resolvedAsset.rate; - } - return assets; - } -} diff --git a/packages/graphql/src/graphql/resolvers/BalanceResolver.ts b/packages/graphql/src/graphql/resolvers/BalanceResolver.ts deleted file mode 100644 index 79dc0eac5..000000000 --- a/packages/graphql/src/graphql/resolvers/BalanceResolver.ts +++ /dev/null @@ -1,149 +0,0 @@ -import { logger } from '~/core/Logger'; -import type { - GQLBalance, - GQLQueryBalanceArgs, - GQLQueryBalanceByBlockHeightArgs, - GQLQueryBalancesArgs, - GQLQueryCoinsArgs, -} from '~/graphql/generated/sdk-provider'; -import BalanceDAO from '~/infra/dao/BalanceDAO'; -import { convertToUsd } from '~/infra/dao/utils'; -import AssetGateway from '~/infra/gateway/AssetGateway'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Source = GQLBalance; -type Params = { - balance: GQLQueryBalanceArgs; - balances: GQLQueryBalancesArgs; - balanceByBlockHeight: GQLQueryBalanceByBlockHeightArgs; - utxos: GQLQueryCoinsArgs['filter']; -}; - -export class BalanceResolver { - static create() { - const resolvers = new BalanceResolver(); - return { - Query: { - balance: resolvers.balance, - balances: resolvers.balances, - balanceByBlockHeight: resolvers.balanceByBlockHeight, - }, - Balance: { - utxos: resolvers.utxos, - }, - }; - } - - async balance( - _: Source, - params: Params['balance'], - { client, chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'BalanceResolver.balance'); - const assetGateway = new AssetGateway(); - const res = await client.sdk.balance(params); - const balance = res.data.balance as any; - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const asset = await assetGateway.getAsset(balance.assetId, chainId); - if (asset) { - balance.assetId = asset.assetId; - balance.contractId = asset.contractId; - balance.name = asset.name; - balance.symbol = asset.symbol; - balance.icon = asset.icon; - balance.decimals = asset.decimals; - balance.totalSupply = asset.totalSupply; - balance.suspicious = asset.suspicious; - balance.collection = asset.collection; - balance.rate = asset.rate; - balance.amountInUsd = asset.rate - ? convertToUsd(balance.amount, balance.decimals, asset.rate).formatted - : null; - } - return balance; - } - - async balances( - _: Source, - params: Params['balances'], - { client, chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'BalanceResolver.balances'); - const assetGateway = new AssetGateway(); - const res = (await client.sdk.balances(params)) as any; - const balances = res.data.balances; - for (const balance of balances.nodes) { - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const asset = await assetGateway.getAsset(balance.assetId, chainId); - if (asset) { - balance.assetId = asset.assetId; - balance.contractId = asset.contractId; - balance.name = asset.name; - balance.symbol = asset.symbol; - balance.icon = asset.icon; - balance.decimals = asset.decimals; - balance.totalSupply = asset.totalSupply; - balance.suspicious = asset.suspicious; - if (asset.metadata?.image) { - asset.metadata.image = asset.metadata.image.replace( - 'ipfs://', - 'https://ipfs.io/ipfs/', - ); - } - balance.metadata = JSON.stringify(asset.metadata); - balance.collection = asset.collection; - balance.rate = asset.rate; - balance.amountInUsd = asset.rate - ? convertToUsd(balance.amount, balance.decimals, asset.rate).formatted - : null; - } - } - return balances; - } - - async balanceByBlockHeight( - _: Source, - params: Params['balanceByBlockHeight'], - { chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'BalanceResolver.balanceByBlockHeight'); - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const balanceDAO = new BalanceDAO(); - const output = await balanceDAO.getBalance( - params.accountHash, - params.assetId, - params.blockHeight || null, - ); - if (!output) { - return {}; - } - const assetGateway = new AssetGateway(); - const asset = await assetGateway.getAsset(params.assetId, chainId); - return { - accountHash: output.account_hash, - assetId: output.asset_id, - blockHeight: output.block_height, - balance: output.balance, - balanceInUsd: asset.rate - ? convertToUsd(output.balance, asset.decimals, asset.rate).formatted - : null, - }; - } - - async utxos( - parent: Source, - params: Params['utxos'], - { client }: GraphQLContext, - ) { - logger.debug('GraphQL', 'BalanceResolver.utxos'); - const filter = !params?.owner - ? { - assetId: parent.assetId, - owner: parent.owner, - } - : params; - - const res = await client.sdk.coins({ first: 2500, filter }); - return res.data.coins.nodes; - } -} diff --git a/packages/graphql/src/graphql/resolvers/BlockResolver.ts b/packages/graphql/src/graphql/resolvers/BlockResolver.ts deleted file mode 100644 index f754ba50a..000000000 --- a/packages/graphql/src/graphql/resolvers/BlockResolver.ts +++ /dev/null @@ -1,257 +0,0 @@ -import { sleep } from 'fuels'; -import { GraphQLError } from 'graphql'; -import { logger } from '~/core/Logger'; -import type { - GQLBlock, - GQLQueryBlockArgs, - GQLQueryBlocksArgs, -} from '~/graphql/generated/sdk-provider'; -import DataCache from '~/infra/cache/DataCache'; -import BlockDAO from '~/infra/dao/BlockDAO'; -import { convertToUsd } from '~/infra/dao/utils'; -import AssetGateway from '~/infra/gateway/AssetGateway'; -import PaginatedParams from '~/infra/paginator/PaginatedParams'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Source = GQLBlock; -type Params = { - blocks: GQLQueryBlocksArgs; - block: GQLQueryBlockArgs; - tps: null; - getBlocksDashboard: null; -}; - -export class BlockResolver { - getBlocksDashboardData: Awaited< - ReturnType> - > | null = null; - statisticsData: Awaited< - ReturnType> - > | null = null; - tpsData: Awaited< - ReturnType> - > | null = null; - - static create() { - const resolvers = new BlockResolver(); - return { - startPoolingAnalytics: resolvers.startPoolingAnalytics, - Query: { - block: resolvers.block.bind(resolvers), - blocks: resolvers.blocks.bind(resolvers), - tps: resolvers.tps.bind(resolvers), - statistics: resolvers.statistics.bind(resolvers), - getBlocksDashboard: resolvers.getBlocksDashboard.bind(resolvers), - }, - }; - } - - startPoolingAnalytics = async ({ - chainId, - baseAssetId, - }: { chainId: number; baseAssetId: string }) => { - try { - logger.debug('GraphQL', 'BlockResolver.startPoolingAnalytics START'); - this.getBlocksDashboardData = await this._getBlocksDashboard( - {} as any, - null, - { chainId, baseAssetId }, - ); - this.statisticsData = await this._statistics({} as any, null, { - chainId, - baseAssetId, - }); - this.tpsData = await this._tps({} as any, null); - logger.debug('GraphQL', 'BlockResolver.startPoolingAnalytics END'); - } catch (e) { - logger.error('GraphQL', 'BlockResolver.startPoolingAnalytics', e); - } finally { - await sleep(7_000); - this.startPoolingAnalytics({ chainId, baseAssetId }); - } - }; - - async block(_: Source, { id, height }: Params['block']) { - logger.debug('GraphQL', 'BlockResolver.block'); - if (!id && !height) { - throw new Error('Either id or height must be provided'); - } - - if (id) { - const blockDAO = new BlockDAO(); - const block = await blockDAO.getByHash(id); - return block?.toGQLNode(); - } - - if (!height) throw new Error(); - const blockDAO = new BlockDAO(); - const block = await blockDAO.getByHeight(Number.parseInt(height)); - return block?.toGQLNode(); - } - - async blocks(_: Source, params: Params['blocks']) { - logger.debug('GraphQL', 'BlockResolver.blocks'); - if (!params.first && !params.last) { - throw new GraphQLError('Either first or last must be provided'); - } - const blockDAO = new BlockDAO(); - const blocks = await blockDAO.getPaginatedBlocks( - new PaginatedParams(params), - ); - return blocks; - } - - async getBlocksDashboard( - _: Source, - _params: Params['getBlocksDashboard'], - context: GraphQLContext, - ) { - // If background data is available, return it (fast path) - if (this.getBlocksDashboardData) { - return this.getBlocksDashboardData; - } - - const chainId = context.chain?.chainId; - const baseAssetId = context.chain?.data.consensusParameters.baseAssetId; - - // Fallback: compute on-demand if background process hasn't run yet - logger.debug('GraphQL', 'BlockResolver.getBlocksDashboard - FALLBACK'); - return this._getBlocksDashboard(_, _params, { - chainId: Number.parseInt(chainId || '0'), - baseAssetId, - }); - } - - async _getBlocksDashboard( - _: Source, - _params: Params['getBlocksDashboard'], - { chainId, baseAssetId }: { chainId?: number; baseAssetId?: string }, - ) { - logger.debug('GraphQL', 'BlockResolver.getBlocksDashboard'); - const assetGateway = new AssetGateway(); - const baseAsset = await assetGateway.getAsset( - baseAssetId || '', - chainId || 0, - ); - const blockDAO = new BlockDAO(); - const blocks = await blockDAO.getBlocksDashboard(); - for (const block of blocks.nodes) { - block.totalFeeInUsd = baseAsset?.rate - ? convertToUsd( - String(block.totalFee), - baseAsset.decimals, - baseAsset.rate, - )?.formatted - : ''; - block.gasUsedInUsd = baseAsset?.rate - ? convertToUsd( - String(block.gasUsed), - baseAsset.decimals, - baseAsset.rate, - )?.formatted - : ''; - } - return blocks; - } - - async tps(_: Source, _params: Params['tps']) { - // If background data is available, return it (fast path) - if (this.tpsData) { - return this.tpsData; - } - - // Fallback: compute on-demand if background process hasn't run yet - logger.debug('GraphQL', 'BlockResolver.tps - FALLBACK'); - return this._tps(_, _params); - } - - async _tps(_: Source, _params: Params['tps']) { - logger.debug('GraphQL', 'BlockResolver.tps'); - const cachedTps = DataCache.getInstance().get('tps'); - if (cachedTps) return cachedTps; - const blockDAO = new BlockDAO(); - const maxTs = await blockDAO.getMaxTimestamp(); - const tps = await blockDAO.tps(maxTs); - DataCache.getInstance().save('tps', 60000, tps); - return tps; - } - - async statistics(_: Source, __: any, context: GraphQLContext) { - // If background data is available, return it (fast path) - if (this.statisticsData) { - return this.statisticsData; - } - - const chainId = context.chain?.chainId; - const baseAssetId = context.chain?.data.consensusParameters.baseAssetId; - - // Fallback: compute on-demand if background process hasn't run yet - logger.debug('GraphQL', 'BlockResolver.statistics - FALLBACK'); - return this._statistics(_, __, { - chainId: Number.parseInt(chainId || '0'), - baseAssetId, - }); - } - - async _statistics( - _: Source, - __: any, - { chainId, baseAssetId }: { chainId?: number; baseAssetId?: string }, - ) { - logger.debug('GraphQL', 'BlockResolver.statistics'); - const assetGateway = new AssetGateway(); - const baseAsset = await assetGateway.getAsset( - baseAssetId || '', - chainId || 0, - ); - const cachedTps = DataCache.getInstance().get('statistics'); - if (cachedTps) return cachedTps; - const blockDAO = new BlockDAO(); - - // Pin the analytics window to a single MAX(timestamp) lookup so all - // downstream queries share the same anchor (consistent snapshot) AND so - // the value can be passed as a bound parameter — that's what lets the - // planner pick an Index Scan on blocks_timestamp_idx instead of a - // Parallel Seq Scan over the whole blocks table. - const maxTs = await blockDAO.getMaxTimestamp(); - - const [hourly, averageTpsPerMinute, rollingStats60s, totalFee] = - await Promise.all([ - blockDAO.getHourlyStatistics(maxTs), - blockDAO.getAverageTpsPerMinute(maxTs), - blockDAO.getRollingStats60s(maxTs), - blockDAO.getTotalFee() as any, - ]); - - let totalFee24hrs = 0; - for (const fee of totalFee) { - totalFee24hrs += Number(fee.value); - fee.valueInUsd = baseAsset?.rate - ? convertToUsd(String(fee.value), baseAsset.decimals, baseAsset.rate) - ?.formatted - : null; - } - - const totalFee24hrsInUsd = baseAsset?.rate - ? convertToUsd(String(totalFee24hrs), baseAsset.decimals, baseAsset.rate) - ?.formatted - : null; - - const statistics = { - nodes: { - totalTps: hourly.totalTps, - averageTps: hourly.averageTps, - maxTps: hourly.maxTps, - averageTpsPerMinute, - rollingStats60s, - totalGasUsed: hourly.totalGasUsed, - averageGasUsed: hourly.averageGasUsed, - maxGasUsed: hourly.maxGasUsed, - totalFee, - totalFee24hrs: totalFee24hrsInUsd, - }, - }; - DataCache.getInstance().save('statistics', 60000, statistics); - return statistics; - } -} diff --git a/packages/graphql/src/graphql/resolvers/BridgeResolver.ts b/packages/graphql/src/graphql/resolvers/BridgeResolver.ts deleted file mode 100644 index f37bc441f..000000000 --- a/packages/graphql/src/graphql/resolvers/BridgeResolver.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { logger } from '~/core/Logger'; -import BridgeDAO from '~/infra/dao/BridgeDAO'; -import type { - GQLBridgeResponse, - GQLQueryBridgeEventArgs, - GQLQueryBridgeEventsArgs, -} from '../generated/sdk-provider'; - -export class BridgeResolver { - static create() { - const resolvers = new BridgeResolver(); - return { - Query: { - bridgeEvents: resolvers.bridgeEvents, - bridgeEvent: resolvers.bridgeEvent, - }, - }; - } - - async bridgeEvents(_: any, params: GQLQueryBridgeEventsArgs) { - logger.debug('GraphQL', 'BridgeResolver.bridgeEvents'); - const address = params.address; - const limit = params.limit || 10; - const offset = params.offset || 0; - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.getEvents(address, limit, offset); - for (const element of output.nodes) { - element.__typename = `Bridge${element.type}Response`; - } - return output; - } - - async bridgeEvent(_: any, params: GQLQueryBridgeEventArgs) { - logger.debug('GraphQL', 'BridgeResolver.bridgeEvent'); - const eventId = params.eventId; - const eventType = params.eventType; - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.getEvent(eventType, eventId); - if (!output) return {}; - return { - __typename: - `Bridge${output.type}Response` as GQLBridgeResponse['__typename'], - ...output, - }; - } -} diff --git a/packages/graphql/src/graphql/resolvers/ChainResolver.ts b/packages/graphql/src/graphql/resolvers/ChainResolver.ts deleted file mode 100644 index 977a682dc..000000000 --- a/packages/graphql/src/graphql/resolvers/ChainResolver.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { logger } from '~/core/Logger'; -import type { GQLChainInfo } from '~/graphql/generated/sdk-provider'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Source = GQLChainInfo; -type Params = { - chain: null; -}; - -export class ChainResolver { - static create() { - const resolvers = new ChainResolver(); - return { - Query: { - chain: resolvers.chain, - }, - }; - } - - async chain(_: Source, _params: Params['chain'], { client }: GraphQLContext) { - logger.debug('GraphQL', 'ChainResolver.chain'); - const res = await client.sdk.chain(); - return res.data.chain; - } -} diff --git a/packages/graphql/src/graphql/resolvers/ContractResolver.ts b/packages/graphql/src/graphql/resolvers/ContractResolver.ts deleted file mode 100644 index 149969976..000000000 --- a/packages/graphql/src/graphql/resolvers/ContractResolver.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { logger } from '~/core/Logger'; -import type { - GQLContract, - GQLQueryContractArgs, - GQLQueryContractBalanceArgs, - GQLQueryContractBalancesArgs, -} from '~/graphql/generated/sdk-provider'; -import ContractDAO from '~/infra/dao/ContractDAO'; -import { convertToUsd } from '~/infra/dao/utils'; -import AssetGateway from '~/infra/gateway/AssetGateway'; -import PaginatedParams from '~/infra/paginator/PaginatedParams'; -import type { GraphQLContext } from '../GraphQLContext'; -import type { GQLContractBalance } from '../generated/sdk'; - -type Source = GQLContract; -type Params = { - contracts: any; - contract: GQLQueryContractArgs; - contractBalance: GQLQueryContractBalanceArgs; - contractBalances: GQLQueryContractBalancesArgs; -}; - -export class ContractResolver { - static create() { - const resolvers = new ContractResolver(); - return { - Query: { - contract: resolvers.contract, - contracts: resolvers.contracts, - contractBalance: resolvers.contractBalance, - contractBalances: resolvers.contractBalances, - }, - }; - } - - async contract(_: Source, { id }: Params['contract']) { - logger.debug('GraphQL', 'ContractResolver.contract'); - if (!id) { - throw new Error('Contract ID is required'); - } - const contractDAO = new ContractDAO(); - const contract = await contractDAO.getByHash(id); - return contract?.toGQLNode(); - } - - async contracts(_: Source, params: Params['contracts']) { - logger.debug('GraphQL', 'ContractResolver.contracts'); - const contractDAO = new ContractDAO(); - const contracts = await contractDAO.getPaginatedContracts( - new PaginatedParams(params), - ); - return contracts; - } - - async contractBalance( - _: Source, - params: Params['contractBalance'], - { client }: GraphQLContext, - ) { - logger.debug('GraphQL', 'ContractResolver.contractBalance'); - const res = await client.sdk.contractBalance(params); - return res.data.contractBalance; - } - - async contractBalances( - _: Source, - params: Params['contractBalances'], - { client, chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'ContractResolver.contractBalances'); - const assetGateway = new AssetGateway(); - params.first = 100; - const res = await client.sdk.contractBalances(params); - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const output = res.data.contractBalances; - for (const edge of output.edges) { - const node = edge.node as GQLContractBalance; - if (node.assetId) { - const asset = await assetGateway.getAsset(node.assetId, chainId); - if (asset) { - node.assetId = asset.assetId; - node.name = asset.name; - node.symbol = asset.symbol; - node.decimals = asset.decimals; - node.icon = asset.icon; - node.suspicious = asset.suspicious; - node.amountInUsd = convertToUsd( - node.amount, - Number(node.decimals), - asset.rate, - ).formatted; - } - } - } - return output; - } -} diff --git a/packages/graphql/src/graphql/resolvers/NodeResolver.ts b/packages/graphql/src/graphql/resolvers/NodeResolver.ts deleted file mode 100644 index f3a3e155c..000000000 --- a/packages/graphql/src/graphql/resolvers/NodeResolver.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { logger } from '~/core/Logger'; -import type { GQLNodeInfo } from '~/graphql/generated/sdk-provider'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Source = GQLNodeInfo; -type Params = { - nodeInfo: null; -}; - -export class NodeResolver { - static create() { - const resolvers = new NodeResolver(); - return { - Query: { - nodeInfo: resolvers.nodeInfo, - }, - }; - } - - async nodeInfo( - _: Source, - _params: Params['nodeInfo'], - { client }: GraphQLContext, - ) { - logger.debug('GraphQL', 'NodeResolver.nodeInfo'); - const res = await client.sdk.nodeInfo(); - return res.data.nodeInfo; - } -} diff --git a/packages/graphql/src/graphql/resolvers/PredicateResolver.ts b/packages/graphql/src/graphql/resolvers/PredicateResolver.ts deleted file mode 100644 index cac09a89a..000000000 --- a/packages/graphql/src/graphql/resolvers/PredicateResolver.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { logger } from '~/core/Logger'; -import PredicateDAO from '~/infra/dao/PredicateDAO'; - -type Params = { - predicate: { address: string }; -}; - -export class PredicateResolver { - static create() { - const resolvers = new PredicateResolver(); - return { - Query: { - predicate: resolvers.predicate, - }, - }; - } - - async predicate(_: any, params: Params['predicate']) { - logger.debug('GraphQL', 'PredicateResolver.predicate'); - const predicateDAO = new PredicateDAO(); - const predicate = await predicateDAO.getByAddress(params.address); - if (!predicate || predicate.bytecode === '0x') return; - return predicate.toGQLNode(); - } -} diff --git a/packages/graphql/src/graphql/resolvers/PublicResolver.ts b/packages/graphql/src/graphql/resolvers/PublicResolver.ts deleted file mode 100644 index bfd4c699c..000000000 --- a/packages/graphql/src/graphql/resolvers/PublicResolver.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { logger } from '~/core/Logger'; -import AssetGateway from '~/infra/gateway/AssetGateway'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Params = { - asset: { assetId: string }; -}; - -export class PublicResolver { - static create() { - const resolvers = new PublicResolver(); - return { - Query: { - asset: resolvers.asset, - }, - }; - } - - async asset(_: any, _params: Params['asset'], { chain }: GraphQLContext) { - logger.debug('GraphQL', 'PublicResolver.asset'); - const assetId = _params.assetId; - const assetGateway = new AssetGateway(); - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - return assetGateway.getAsset(assetId, chainId); - } -} diff --git a/packages/graphql/src/graphql/resolvers/SearchResolver.ts b/packages/graphql/src/graphql/resolvers/SearchResolver.ts deleted file mode 100644 index 044c96b21..000000000 --- a/packages/graphql/src/graphql/resolvers/SearchResolver.ts +++ /dev/null @@ -1,126 +0,0 @@ -import { Hash256 } from '~/application/vo'; -import DataCache from '~/infra/cache/DataCache'; -import BlockDAO from '~/infra/dao/BlockDAO'; -import ContractDAO from '~/infra/dao/ContractDAO'; -import PredicateDAO from '~/infra/dao/PredicateDAO'; -import TransactionDAO from '~/infra/dao/TransactionDAO'; - -type Params = { - search: { query: string }; -}; - -export class SearchResolver { - static create() { - const resolvers = new SearchResolver(); - return { - Query: { - search: resolvers.search, - }, - }; - } - - async search(_null: any, params: Params['search']) { - const cacheKey = `search:${params.query.toLowerCase()}`; - const cachedResult = DataCache.getInstance().get(cacheKey); - if (cachedResult !== undefined) { - return cachedResult; - } - - // Check if query is a block height (numeric, not starting with 0x) - if (!params.query.startsWith('0x') && !Number.isNaN(Number(params.query))) { - const blockDAO = new BlockDAO(); - const block = await blockDAO.getByHeight(Number(params.query)); - if (block) { - const result = { - block: block.toGQLNode(), - }; - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, result); - return result; - } - } - - let address: string; - try { - address = Hash256.create(params.query).value(); - } catch { - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, null); - return null; - } - - const blockDAO = new BlockDAO(); - const contractDAO = new ContractDAO(); - const transactionDAO = new TransactionDAO(); - const predicateDAO = new PredicateDAO(); - - const results = await Promise.allSettled([ - blockDAO.getByHash(address), - contractDAO.getByHash(address), - transactionDAO.getByHash(address), - predicateDAO.getByAddress(address), - transactionDAO.accountExists(address), - ]); - - const [ - blockResult, - contractResult, - transactionResult, - predicateResult, - accountExistsResult, - ] = results; - - // Priority order: Block > Contract > Transaction > Account (only if has transactions) > Predicate - - if (blockResult.status === 'fulfilled' && blockResult.value) { - const result = { - block: blockResult.value.toGQLNode(), - }; - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, result); - return result; - } - - if (contractResult.status === 'fulfilled' && contractResult.value) { - const result = { - contract: contractResult.value.toGQLNode(), - }; - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, result); - return result; - } - - if (transactionResult.status === 'fulfilled' && transactionResult.value) { - const result = { - transaction: transactionResult.value.toGQLNode(), - }; - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, result); - return result; - } - - // Only return account if it has transactions (validate it exists) - const accountExists = - accountExistsResult.status === 'fulfilled' && accountExistsResult.value; - if (accountExists) { - const result = { - account: { - address, - }, - }; - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, result); - return result; - } - - // Only return predicate if it has bytecode (validate it exists) - if ( - predicateResult.status === 'fulfilled' && - predicateResult.value && - predicateResult.value.bytecode !== '0x' - ) { - const result = { - predicate: predicateResult.value.toGQLNode(), - }; - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, result); - return result; - } - - DataCache.getInstance().save(cacheKey, 1 * 60 * 1000, null); - return null; - } -} diff --git a/packages/graphql/src/graphql/resolvers/StakingResolver.ts b/packages/graphql/src/graphql/resolvers/StakingResolver.ts deleted file mode 100644 index c9275d0ac..000000000 --- a/packages/graphql/src/graphql/resolvers/StakingResolver.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { logger } from '~/core/Logger'; -import StakingDAO from '~/infra/dao/StakingDAO'; -import PaginatedParams from '~/infra/paginator/PaginatedParams'; -import type { - GQLQueryStakingEventArgs, - GQLQueryStakingEventsArgs, - GQLStakingEventResponse, - GQLStakingEventsResult, -} from '../generated/sdk-provider'; - -export class StakingResolver { - static create() { - const resolvers = new StakingResolver(); - return { - Query: { - stakingEvents: resolvers.stakingEvents, - stakingEvent: resolvers.stakingEvent, - }, - }; - } - - async stakingEvents( - _: GQLStakingEventsResult, - params: GQLQueryStakingEventsArgs, - ) { - logger.debug('GraphQL', 'StakingResolver.stakingEvents'); - const paginatedParams = new PaginatedParams(params); - const stakingDAO = new StakingDAO(); - const output = await stakingDAO.getEvents(params.address, paginatedParams); - for (const element of output.nodes) { - element.__typename = `${element.type}Response`; - } - return output; - } - - async stakingEvent( - _: GQLStakingEventsResult, - params: GQLQueryStakingEventArgs, - ) { - logger.debug('GraphQL', 'StakingResolver.stakingEvent'); - const eventId = params.eventId; - const stakingDAO = new StakingDAO(); - const output = await stakingDAO.getEvent(eventId); - return { - __typename: - `${output.type}Response` as GQLStakingEventResponse['__typename'], - ...output, - }; - } -} diff --git a/packages/graphql/src/graphql/resolvers/TransactionResolver.ts b/packages/graphql/src/graphql/resolvers/TransactionResolver.ts deleted file mode 100644 index dee9b17ce..000000000 --- a/packages/graphql/src/graphql/resolvers/TransactionResolver.ts +++ /dev/null @@ -1,165 +0,0 @@ -import GetTransaction from '~/application/uc/GetTransaction'; -import { logger } from '~/core/Logger'; -import type { - GQLQueryTransactionArgs, - GQLQueryTransactionsArgs, - GQLQueryTransactionsByBlockIdArgs, - GQLQueryTransactionsByOwnerArgs, - GQLTransaction, -} from '~/graphql/generated/sdk-provider'; -import DataCache from '~/infra/cache/DataCache'; -import TransactionDAO from '~/infra/dao/TransactionDAO'; -import { convertToUsd } from '~/infra/dao/utils'; -import AssetGateway from '~/infra/gateway/AssetGateway'; -import PaginatedParams from '~/infra/paginator/PaginatedParams'; -import type { GraphQLContext } from '../GraphQLContext'; - -type Source = GQLTransaction; -type Params = { - transaction: GQLQueryTransactionArgs; - transactions: GQLQueryTransactionsArgs; - transactionByOwner: GQLQueryTransactionsByOwnerArgs; - transactionByBlockId: GQLQueryTransactionsByBlockIdArgs; -}; - -export class TransactionResolver { - static create() { - const resolvers = new TransactionResolver(); - return { - Query: { - transaction: resolvers.transaction, - transactions: resolvers.transactions, - transactionsByOwner: resolvers.transactionsByOwner, - transactionsByBlockId: resolvers.transactionsByBlockId, - }, - }; - } - - async transaction( - _: Source, - params: Params['transaction'], - { chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'TransactionResolver.transaction'); - const baseAssetId = chain?.data.consensusParameters.baseAssetId; - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const getTransaction = new GetTransaction(); - const transaction = await getTransaction.execute( - params.id, - chainId, - baseAssetId, - ); - if (transaction && baseAssetId != null) { - const assetGateway = new AssetGateway(); - const baseAsset = await assetGateway.getAsset(baseAssetId, chainId); - - transaction.mintAmountUsd = baseAsset?.rate - ? convertToUsd( - transaction?.mintAmount, - baseAsset.decimals, - baseAsset.rate, - ).formatted - : ''; - } - return transaction; - } - - async transactions( - _: Source, - params: Params['transactions'], - { chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'TransactionResolver.transactions'); - const transactionDAO = new TransactionDAO(); - const paginatedParams = new PaginatedParams(params); - const baseAssetId = chain?.data.consensusParameters.baseAssetId || ''; - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const assetGateway = new AssetGateway(); - const baseAsset = await assetGateway.getAsset(baseAssetId, chainId); - const transactions = - await transactionDAO.getPaginatedTransactions(paginatedParams); - for (const transaction of transactions.nodes) { - if (transaction.gasCosts?.fee) { - transaction.gasCosts.feeInUsd = baseAsset?.rate - ? convertToUsd( - transaction.gasCosts.fee || '', - baseAsset.decimals, - baseAsset.rate, - ).formatted - : null; - } - } - return transactions; - } - - async transactionsByOwner( - _: Source, - params: Params['transactionByOwner'] & { ownerType?: string }, - { chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'TransactionResolver.transactionsByOwner'); - const paginatedParams = new PaginatedParams(params); - const ownerType = params.ownerType; - const cacheKey = `txByOwner:${params.owner}:${paginatedParams.cursor || 'init'}:${paginatedParams.direction}:${paginatedParams.last}:${ownerType || 'all'}`; - - const cached = DataCache.getInstance().get(cacheKey); - if (cached) { - return cached; - } - - const transactionDAO = new TransactionDAO(); - const baseAssetId = chain?.data.consensusParameters.baseAssetId || ''; - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const assetGateway = new AssetGateway(); - const baseAsset = await assetGateway.getAsset(baseAssetId, chainId); - const transactions = await transactionDAO.getPaginatedTransactionsByOwner( - params.owner, - paginatedParams, - ownerType, - ); - for (const transaction of transactions.nodes) { - if (transaction.gasCosts?.fee) { - transaction.gasCosts.feeInUsd = baseAsset?.rate - ? convertToUsd( - transaction.gasCosts.fee || '', - baseAsset.decimals, - baseAsset.rate, - ).formatted - : null; - } - } - - DataCache.getInstance().save(cacheKey, 30000, transactions); - return transactions; - } - - async transactionsByBlockId( - _: Source, - params: Params['transactionByBlockId'], - { chain }: GraphQLContext, - ) { - logger.debug('GraphQL', 'TransactionResolver.transactionsByBlockId'); - const transactionDAO = new TransactionDAO(); - const paginatedParams = new PaginatedParams(params); - const baseAssetId = chain?.data.consensusParameters.baseAssetId || ''; - const chainId = chain ? Number.parseInt(chain.chainId) : undefined; - const assetGateway = new AssetGateway(); - const baseAsset = await assetGateway.getAsset(baseAssetId, chainId); - const transactions = await transactionDAO.getPaginatedTransactionsByBlockId( - params.blockId, - paginatedParams, - ); - for (const transaction of transactions.nodes) { - if (transaction.gasCosts?.fee) { - transaction.gasCosts.feeInUsd = baseAsset?.rate - ? convertToUsd( - transaction.gasCosts.fee || '', - baseAsset.decimals, - baseAsset.rate, - ).formatted - : null; - } - } - return transactions; - } -} diff --git a/packages/graphql/src/graphql/resolvers/index.ts b/packages/graphql/src/graphql/resolvers/index.ts deleted file mode 100644 index d9e01aa72..000000000 --- a/packages/graphql/src/graphql/resolvers/index.ts +++ /dev/null @@ -1,58 +0,0 @@ -import GraphQLAuth from '~/infra/auth/GraphQLAuth'; -import { APYResolver } from './APYResolver'; -import { AssetResolver } from './AssetResolver'; -import { BalanceResolver } from './BalanceResolver'; -import { BlockResolver } from './BlockResolver'; -import { BridgeResolver } from './BridgeResolver'; -import { ChainResolver } from './ChainResolver'; -import { ContractResolver } from './ContractResolver'; -import { NodeResolver } from './NodeResolver'; -import { PoliciesResolver } from './PoliciesResolver'; -import { PredicateResolver } from './PredicateResolver'; -import { PublicResolver } from './PublicResolver'; -import { SearchResolver } from './SearchResolver'; -import { StakingResolver } from './StakingResolver'; -import { TransactionResolver } from './TransactionResolver'; - -export const blockResolver = BlockResolver.create(); -const balanceResolver = BalanceResolver.create(); -const chainResolver = ChainResolver.create(); -const contractResolver = ContractResolver.create(); -const nodeResolver = NodeResolver.create(); -const policiesResolver = PoliciesResolver.create(); -const predicateResolver = PredicateResolver.create(); -const searchResolver = SearchResolver.create(); -const transactionResolver = TransactionResolver.create(); -const assetResolver = AssetResolver.create(); -const stakingResolver = StakingResolver.create(); -const bridgeResolver = BridgeResolver.create(); - -// Public Resolvers -const apyResolver = APYResolver.create(); -const publicResolver = PublicResolver.create(); - -export const resolvers = { - Query: { - ...GraphQLAuth.apply({ - ...balanceResolver.Query, - ...blockResolver.Query, - ...chainResolver.Query, - ...contractResolver.Query, - ...nodeResolver.Query, - ...predicateResolver.Query, - ...searchResolver.Query, - ...transactionResolver.Query, - ...assetResolver.Query, - ...stakingResolver.Query, - ...bridgeResolver.Query, - }), - ...apyResolver.Query, - ...publicResolver.Query, - }, - Balance: balanceResolver.Balance, - Transaction: { - ...transactionResolver.Transaction, - ...policiesResolver.Transaction, - }, - Policies: policiesResolver.Policies, -}; diff --git a/packages/graphql/src/index-nft-collections.ts b/packages/graphql/src/index-nft-collections.ts deleted file mode 100644 index ebd9b546d..000000000 --- a/packages/graphql/src/index-nft-collections.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { DatabaseConnection } from './infra/database/DatabaseConnection'; - -const connection = DatabaseConnection.getInstance(); - -export async function indexNftCollections(contractId: string) { - const [collection] = await connection.query( - 'select * from indexer.collections where contract_id = $1', - [contractId], - ); - if (!collection) return; - console.log(collection); - const assets = await connection.query( - `select * from indexer.assets_contracts where contract_id = $1 and metadata->>'name' is null`, - [collection.contract_id], - ); - console.log(assets.length); - for (const asset of assets) { - console.log(asset.asset_id); - try { - if (asset.metadata) { - const url = collection.url.replace('{subId}', Number(asset.sub_id)); - console.log(url); - const response = await fetch(url); - const resolvedMetadata = await response.json(); - const metadata = Object.assign(asset.metadata, resolvedMetadata); - await connection.query( - 'update indexer.assets_contracts set metadata = $1 where asset_id = $2', - [metadata, asset.asset_id], - ); - } - } catch (e: any) { - console.log(e); - } - } -} - -(async () => { - const collections = [ - '0x202b55f66b8bafaf3b4fdf0653f1a4320607781dbd368bb576bc09250dd7dbbe', - '0x59b10bd361740618f12bba00f1083ef304a294b37ed7a8756c1b9cfc9b491b16', - '0x5d0188a9f77c4e5e48c459b5d02ccedac1a26d45b9f9c9e886f8563395bad32d', - '0xc5c219d360dcddbdaad2e0a33afc3550794ed4dfc484efb13562023189a08851', - '0xf0b6e2320caccb9071e45b1150b4da6f5edf74e7375ac6c87084822a87832de2', - ]; - for (const collection of collections) { - await indexNftCollections(collection); - } -})(); diff --git a/packages/graphql/src/index-total-supply.ts b/packages/graphql/src/index-total-supply.ts deleted file mode 100644 index ac0c6b442..000000000 --- a/packages/graphql/src/index-total-supply.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { Contract, Provider } from 'fuels'; -import { bn } from 'fuels'; -import { abi } from '~/infra/abi/SRC7Abi'; -import { env } from './config'; -import { DatabaseConnection } from './infra/database/DatabaseConnection'; - -const connection = DatabaseConnection.getInstance(); - -export async function indexTotalSupply() { - const providerUrl = env.get('FUEL_PROVIDER'); - if (!providerUrl) { - throw new Error('FUEL_PROVIDER is not set'); - } - const provider = new Provider(providerUrl); - const assets = await connection.query( - 'select asset_id, contract_id from indexer.assets_contracts where total_supply is null', - [], - ); - console.log(assets.length); - let index = 0; - for (const asset of assets) { - try { - console.log(index++, assets.length, asset.asset_id); - const contract = new Contract(asset.contract_id, abi, provider); - const outputTotalSupply = await contract.functions - .total_supply({ bits: asset.asset_id }) - .dryRun(); - const totalSupply = bn(outputTotalSupply.value).toString() as any; - await connection.query( - 'update indexer.assets_contracts set total_supply = $1 where asset_id = $2', - [totalSupply, asset.asset_id], - ); - } catch (e: any) { - console.log(e); - } - } -} - -(async () => { - await indexTotalSupply(); -})(); diff --git a/packages/graphql/src/infra/abi/BridgeAbi.ts b/packages/graphql/src/infra/abi/BridgeAbi.ts deleted file mode 100644 index b8148031d..000000000 --- a/packages/graphql/src/infra/abi/BridgeAbi.ts +++ /dev/null @@ -1,825 +0,0 @@ -export const bridgeAbi = { - programType: 'contract', - specVersion: '1', - encodingVersion: '1', - concreteTypes: [ - { - type: '()', - concreteTypeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - type: 'b256', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - type: 'enum errors::BridgeFungibleTokenError', - concreteTypeId: - '0b110bf0bfe47de46ec4252cf33a4c4225e4f8185d7382091b5a7cae96b05136', - metadataTypeId: 0, - }, - { - type: 'enum standards::src7::Metadata', - concreteTypeId: - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - metadataTypeId: 1, - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - metadataTypeId: 3, - typeArguments: [ - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - metadataTypeId: 3, - typeArguments: [ - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - metadataTypeId: 3, - typeArguments: [ - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - metadataTypeId: 3, - typeArguments: [ - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - ], - }, - { - type: 'enum sway_libs::reentrancy::errors::ReentrancyError', - concreteTypeId: - '4d216c57b3357523323f59401c7355785b41bdf832f6e1106272186b94797038', - metadataTypeId: 4, - }, - { - type: 'struct events::ClaimRefundEvent', - concreteTypeId: - '43a196568054cc5857b7b8949732aea78a79c356fbbf23605d9057655fbaabc8', - metadataTypeId: 7, - }, - { - type: 'struct events::DepositEvent', - concreteTypeId: - 'aeb9b947da259c606e2c25be1150e2150f609fe5f2ec593c9a7ebb771e4e7065', - metadataTypeId: 8, - }, - { - type: 'struct events::RefundRegisteredEvent', - concreteTypeId: - '53314ca6f7d49036353511ef4d38a91d77a13dceeb09509b89c707fcbb3b4a71', - metadataTypeId: 9, - }, - { - type: 'struct events::WithdrawalEvent', - concreteTypeId: - '4b2a1039798597241d783edcc2292afb341e5f5beb9858521a9740426db8138a', - metadataTypeId: 10, - }, - { - type: 'struct standards::src20::SetDecimalsEvent', - concreteTypeId: - 'fbe071a6e7ca2b2b5e503e82638f9f11c861a6fb452b65473eca8260db87392d', - metadataTypeId: 11, - }, - { - type: 'struct standards::src20::SetNameEvent', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - metadataTypeId: 12, - }, - { - type: 'struct standards::src20::SetSymbolEvent', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - metadataTypeId: 13, - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - metadataTypeId: 14, - }, - { - type: 'struct standards::src7::SetMetadataEvent', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - metadataTypeId: 15, - }, - { - type: 'struct std::asset_id::AssetId', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - metadataTypeId: 17, - }, - { - type: 'struct std::string::String', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - metadataTypeId: 21, - }, - { - type: 'u64', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - type: 'u8', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - ], - metadataTypes: [ - { - type: 'enum errors::BridgeFungibleTokenError', - metadataTypeId: 0, - components: [ - { - name: 'UnauthorizedSender', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'NoCoinsSent', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'NoRefundAvailable', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'AssetNotFound', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'WithdrawalToZeroAddress', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src7::Metadata', - metadataTypeId: 1, - components: [ - { - name: 'B256', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'Bytes', - typeId: 18, - }, - { - name: 'Int', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'String', - typeId: 21, - }, - ], - }, - { - type: 'enum std::identity::Identity', - metadataTypeId: 2, - components: [ - { - name: 'Address', - typeId: 16, - }, - { - name: 'ContractId', - typeId: 20, - }, - ], - }, - { - type: 'enum std::option::Option', - metadataTypeId: 3, - components: [ - { - name: 'None', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'Some', - typeId: 5, - }, - ], - typeParameters: [5], - }, - { - type: 'enum sway_libs::reentrancy::errors::ReentrancyError', - metadataTypeId: 4, - components: [ - { - name: 'NonReentrant', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'generic T', - metadataTypeId: 5, - }, - { - type: 'raw untyped ptr', - metadataTypeId: 6, - }, - { - type: 'struct events::ClaimRefundEvent', - metadataTypeId: 7, - components: [ - { - name: 'amount', - typeId: 22, - }, - { - name: 'from', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'token_address', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'token_id', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct events::DepositEvent', - metadataTypeId: 8, - components: [ - { - name: 'amount', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'from', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'to', - typeId: 2, - }, - ], - }, - { - type: 'struct events::RefundRegisteredEvent', - metadataTypeId: 9, - components: [ - { - name: 'amount', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'token_address', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'token_id', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'from', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct events::WithdrawalEvent', - metadataTypeId: 10, - components: [ - { - name: 'amount', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'from', - typeId: 2, - }, - { - name: 'to', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct standards::src20::SetDecimalsEvent', - metadataTypeId: 11, - components: [ - { - name: 'asset', - typeId: 17, - }, - { - name: 'decimals', - typeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src20::SetNameEvent', - metadataTypeId: 12, - components: [ - { - name: 'asset', - typeId: 17, - }, - { - name: 'name', - typeId: 3, - typeArguments: [ - { - name: '', - typeId: 21, - }, - ], - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src20::SetSymbolEvent', - metadataTypeId: 13, - components: [ - { - name: 'asset', - typeId: 17, - }, - { - name: 'symbol', - typeId: 3, - typeArguments: [ - { - name: '', - typeId: 21, - }, - ], - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - metadataTypeId: 14, - components: [ - { - name: 'asset', - typeId: 17, - }, - { - name: 'supply', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src7::SetMetadataEvent', - metadataTypeId: 15, - components: [ - { - name: 'asset', - typeId: 17, - }, - { - name: 'metadata', - typeId: 3, - typeArguments: [ - { - name: '', - typeId: 1, - }, - ], - }, - { - name: 'key', - typeId: 21, - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct std::address::Address', - metadataTypeId: 16, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::asset_id::AssetId', - metadataTypeId: 17, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::bytes::Bytes', - metadataTypeId: 18, - components: [ - { - name: 'buf', - typeId: 19, - }, - { - name: 'len', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::bytes::RawBytes', - metadataTypeId: 19, - components: [ - { - name: 'ptr', - typeId: 6, - }, - { - name: 'cap', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::contract_id::ContractId', - metadataTypeId: 20, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::string::String', - metadataTypeId: 21, - components: [ - { - name: 'bytes', - typeId: 18, - }, - ], - }, - { - type: 'u256', - metadataTypeId: 22, - }, - ], - functions: [ - { - inputs: [ - { - name: 'msg_idx', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'process_message', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'payable', - arguments: [], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset_id', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'asset_to_l1_address', - output: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset_id', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'asset_to_sub_id', - output: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'bridged_token_gateway', - output: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - attributes: null, - }, - { - inputs: [ - { - name: 'from', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'token_address', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'token_id', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - name: 'claim_refund', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'to', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - name: 'withdraw', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'payable', - arguments: [], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'decimals', - output: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'name', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'symbol', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'total_assets', - output: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'total_supply', - output: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'key', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'metadata', - output: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - ], - loggedTypes: [ - { - logId: '5557842539076482339', - concreteTypeId: - '4d216c57b3357523323f59401c7355785b41bdf832f6e1106272186b94797038', - }, - { - logId: '797431737660767716', - concreteTypeId: - '0b110bf0bfe47de46ec4252cf33a4c4225e4f8185d7382091b5a7cae96b05136', - }, - { - logId: '5994656859013025846', - concreteTypeId: - '53314ca6f7d49036353511ef4d38a91d77a13dceeb09509b89c707fcbb3b4a71', - }, - { - logId: '17415926155927968170', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - }, - { - logId: '18149631459970394923', - concreteTypeId: - 'fbe071a6e7ca2b2b5e503e82638f9f11c861a6fb452b65473eca8260db87392d', - }, - { - logId: '17462098202904023478', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - }, - { - logId: '12590297951544646752', - concreteTypeId: - 'aeb9b947da259c606e2c25be1150e2150f609fe5f2ec593c9a7ebb771e4e7065', - }, - { - logId: '7845998088195677205', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - }, - { - logId: '12152039456660331088', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - }, - { - logId: '4873341570055982168', - concreteTypeId: - '43a196568054cc5857b7b8949732aea78a79c356fbbf23605d9057655fbaabc8', - }, - { - logId: '5416159340904421156', - concreteTypeId: - '4b2a1039798597241d783edcc2292afb341e5f5beb9858521a9740426db8138a', - }, - ], - messagesTypes: [], - configurables: [ - { - name: 'BRIDGED_TOKEN_GATEWAY', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - offset: 57016, - }, - ], -}; diff --git a/packages/graphql/src/infra/abi/SRC7Abi.ts b/packages/graphql/src/infra/abi/SRC7Abi.ts deleted file mode 100644 index 955b05b0e..000000000 --- a/packages/graphql/src/infra/abi/SRC7Abi.ts +++ /dev/null @@ -1,2833 +0,0 @@ -export const abi = { - programType: 'contract', - specVersion: '1', - encodingVersion: '1', - concreteTypes: [ - { - type: '()', - concreteTypeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - type: 'b256', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - type: 'bool', - concreteTypeId: - 'b760f44fa5965c2474a3b471467a22c43185152129295af588b022ae50b50903', - }, - { - type: 'enum errors::MintError', - concreteTypeId: - 'ee89c439b5472cab716006d7c677d16e15301e6c82cfce12cebfa57919f537de', - metadataTypeId: 0, - }, - { - type: 'enum errors::SetError', - concreteTypeId: - 'bf6597cf3d56a5e47a920520e275ccd481a27e7c988ea6af6f253170d5374c5a', - metadataTypeId: 1, - }, - { - type: 'enum standards::src5::AccessError', - concreteTypeId: - '3f702ea3351c9c1ece2b84048006c8034a24cbc2bad2e740d0412b4172951d3d', - metadataTypeId: 2, - }, - { - type: 'enum standards::src5::State', - concreteTypeId: - '192bc7098e2fe60635a9918afb563e4e5419d386da2bdbf0d716b4bc8549802c', - metadataTypeId: 3, - }, - { - type: 'enum standards::src7::Metadata', - concreteTypeId: - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - metadataTypeId: 4, - }, - { - type: 'enum std::identity::Identity', - concreteTypeId: - 'ab7cd04e05be58e3fc15d424c2c4a57f824a2a2d97d67252440a3925ebdc1335', - metadataTypeId: 5, - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '0c2beb9013490c4f753f2757dfe2d8340b22ce3827d596d81d249b7038033cb6', - metadataTypeId: 6, - typeArguments: [ - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - metadataTypeId: 6, - typeArguments: [ - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - metadataTypeId: 6, - typeArguments: [ - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - metadataTypeId: 6, - typeArguments: [ - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - metadataTypeId: 6, - typeArguments: [ - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - ], - }, - { - type: 'enum sway_libs::asset::errors::BurnError', - concreteTypeId: - '3acdc2adac8e0589c5864525e0edc9dc61a9571a4d09c3c57b58ea76d33f4b46', - metadataTypeId: 7, - }, - { - type: 'enum sway_libs::asset::errors::MintError', - concreteTypeId: - 'dff9dfec998a49b40f1c4b09567400f0e712aaf939c08f7d07bc5c63116e1084', - metadataTypeId: 8, - }, - { - type: 'enum sway_libs::asset::errors::SetMetadataError', - concreteTypeId: - 'c6c09c148c1a1341c7ab81697b3545cc695fa67668a169cddc59790a9a0b6b44', - metadataTypeId: 9, - }, - { - type: 'enum sway_libs::ownership::errors::InitializationError', - concreteTypeId: - '1dfe7feadc1d9667a4351761230f948744068a090fe91b1bc6763a90ed5d3893', - metadataTypeId: 10, - }, - { - type: 'enum sway_libs::pausable::errors::PauseError', - concreteTypeId: - '8b3afcadf894415a10b09fc3717487e33802c8ffbb030edafe84ca4a71b280bc', - metadataTypeId: 11, - }, - { - type: 'struct standards::src20::SetNameEvent', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - metadataTypeId: 14, - }, - { - type: 'struct standards::src20::SetSymbolEvent', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - metadataTypeId: 15, - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - metadataTypeId: 16, - }, - { - type: 'struct standards::src7::SetMetadataEvent', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - metadataTypeId: 17, - }, - { - type: 'struct std::asset_id::AssetId', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - metadataTypeId: 19, - }, - { - type: 'struct std::string::String', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - metadataTypeId: 23, - }, - { - type: 'struct sway_libs::ownership::events::OwnershipSet', - concreteTypeId: - 'e1ef35033ea9d2956f17c3292dea4a46ce7d61fdf37bbebe03b7b965073f43b5', - metadataTypeId: 24, - }, - { - type: 'u64', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - type: 'u8', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - ], - metadataTypes: [ - { - type: 'enum errors::MintError', - metadataTypeId: 0, - components: [ - { - name: 'CannotMintMoreThanOneNFTWithSubId', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'MaxNFTsMinted', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'NFTAlreadyMinted', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'SubIdCannotBeNone', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum errors::SetError', - metadataTypeId: 1, - components: [ - { - name: 'ValueAlreadySet', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src5::AccessError', - metadataTypeId: 2, - components: [ - { - name: 'NotOwner', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src5::State', - metadataTypeId: 3, - components: [ - { - name: 'Uninitialized', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'Initialized', - typeId: 5, - }, - { - name: 'Revoked', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum standards::src7::Metadata', - metadataTypeId: 4, - components: [ - { - name: 'B256', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'Bytes', - typeId: 20, - }, - { - name: 'Int', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'String', - typeId: 23, - }, - ], - }, - { - type: 'enum std::identity::Identity', - metadataTypeId: 5, - components: [ - { - name: 'Address', - typeId: 18, - }, - { - name: 'ContractId', - typeId: 22, - }, - ], - }, - { - type: 'enum std::option::Option', - metadataTypeId: 6, - components: [ - { - name: 'None', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'Some', - typeId: 12, - }, - ], - typeParameters: [12], - }, - { - type: 'enum sway_libs::asset::errors::BurnError', - metadataTypeId: 7, - components: [ - { - name: 'NotEnoughCoins', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'ZeroAmount', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::asset::errors::MintError', - metadataTypeId: 8, - components: [ - { - name: 'ZeroAmount', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::asset::errors::SetMetadataError', - metadataTypeId: 9, - components: [ - { - name: 'EmptyString', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'EmptyBytes', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::ownership::errors::InitializationError', - metadataTypeId: 10, - components: [ - { - name: 'CannotReinitialized', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'enum sway_libs::pausable::errors::PauseError', - metadataTypeId: 11, - components: [ - { - name: 'Paused', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'NotPaused', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - ], - }, - { - type: 'generic T', - metadataTypeId: 12, - }, - { - type: 'raw untyped ptr', - metadataTypeId: 13, - }, - { - type: 'struct standards::src20::SetNameEvent', - metadataTypeId: 14, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'name', - typeId: 6, - typeArguments: [ - { - name: '', - typeId: 23, - }, - ], - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct standards::src20::SetSymbolEvent', - metadataTypeId: 15, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'symbol', - typeId: 6, - typeArguments: [ - { - name: '', - typeId: 23, - }, - ], - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - metadataTypeId: 16, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'supply', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct standards::src7::SetMetadataEvent', - metadataTypeId: 17, - components: [ - { - name: 'asset', - typeId: 19, - }, - { - name: 'metadata', - typeId: 6, - typeArguments: [ - { - name: '', - typeId: 4, - }, - ], - }, - { - name: 'key', - typeId: 23, - }, - { - name: 'sender', - typeId: 5, - }, - ], - }, - { - type: 'struct std::address::Address', - metadataTypeId: 18, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::asset_id::AssetId', - metadataTypeId: 19, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::bytes::Bytes', - metadataTypeId: 20, - components: [ - { - name: 'buf', - typeId: 21, - }, - { - name: 'len', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::bytes::RawBytes', - metadataTypeId: 21, - components: [ - { - name: 'ptr', - typeId: 13, - }, - { - name: 'cap', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::contract_id::ContractId', - metadataTypeId: 22, - components: [ - { - name: 'bits', - typeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - ], - }, - { - type: 'struct std::string::String', - metadataTypeId: 23, - components: [ - { - name: 'bytes', - typeId: 20, - }, - ], - }, - { - type: 'struct sway_libs::ownership::events::OwnershipSet', - metadataTypeId: 24, - components: [ - { - name: 'new_owner', - typeId: 5, - }, - ], - }, - ], - functions: [ - { - inputs: [ - { - name: '_asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'decimals', - output: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the number of decimals the asset uses.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' The standardized decimals for NFTs is 0u8.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the decimals.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - The decimal precision used by `asset`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssedId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [ - ' let decimals = contract_abi.decimals(asset).unwrap();', - ], - }, - { - name: 'doc-comment', - arguments: [' assert(decimals == 0u8);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'name', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the name of the asset, such as “Ether”.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the name.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * [Option] - The name of `asset`.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_ic: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let name = contract_abi.name(asset).unwrap();'], - }, - { - name: 'doc-comment', - arguments: [' assert(name.len() != 0);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'symbol', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the symbol of the asset, such as “ETH”.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the symbol.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * [Option] - The symbol of `asset`.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let symbol = contract_abi.symbol(asset).unwrap();'], - }, - { - name: 'doc-comment', - arguments: [' assert(symbol.len() != 0);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'total_assets', - output: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - attributes: [ - { - name: 'doc-comment', - arguments: [ - ' Returns the total number of individual NFTs for this contract.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [u64] - The number of assets that this contract has minted.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let total_assets = contract_abi.total_assets();'], - }, - { - name: 'doc-comment', - arguments: [' assert(total_assets != 0);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'total_supply', - output: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the total supply of coins for an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' This must always be at most 1 for NFTs.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the total supply.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - The total supply of coins for `asset`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [ - ' let total_supply = contract_abi.total_supply(asset).unwrap();', - ], - }, - { - name: 'doc-comment', - arguments: [' assert(total_supply == 1);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'sub_id', - concreteTypeId: - '7c5ee1cecf5f8eacd1284feb5f0bf2bdea533a51e2f0c9aabe9236d335989f3b', - }, - { - name: 'amount', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'burn', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Burns assets sent with the given `sub_id`.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' NOTE: The sha-256 hash of `(ContractId, SubId)` must match the `AssetId` where `ContractId` is the id of', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' the implementing contract and `SubId` is the given `sub_id` argument.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `sub_id`: [SubId] - The sub-identifier of the asset to burn.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `amount`: [u64] - The quantity of coins to burn.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the contract is paused.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src3::SRC3;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset_id: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SR3, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' contract_abi.burn {'], - }, - { - name: 'doc-comment', - arguments: [' gas: 10000,'], - }, - { - name: 'doc-comment', - arguments: [' coins: 1,'], - }, - { - name: 'doc-comment', - arguments: [' asset_id: AssetId,'], - }, - { - name: 'doc-comment', - arguments: [' } (ZERO_B256, 1);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'payable', - arguments: [], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'recipient', - concreteTypeId: - 'ab7cd04e05be58e3fc15d424c2c4a57f824a2a2d97d67252440a3925ebdc1335', - }, - { - name: 'sub_id', - concreteTypeId: - '0c2beb9013490c4f753f2757dfe2d8340b22ce3827d596d81d249b7038033cb6', - }, - { - name: 'amount', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'mint', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Mints new assets using the `sub_id` sub-identifier.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' This conforms to the SRC-20 NFT portion of the standard for a maximum', - ], - }, - { - name: 'doc-comment', - arguments: [' mint amount of 1 coin per asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `recipient`: [Identity] - The user to which the newly minted assets are transferred to.', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' * `sub_id`: [SubId] - The sub-identifier of the newly minted asset.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `amount`: [u64] - The quantity of coins to mint.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the contract is paused.'], - }, - { - name: 'doc-comment', - arguments: [' * When amount is greater than one.'], - }, - { - name: 'doc-comment', - arguments: [' * When the asset has already been minted.'], - }, - { - name: 'doc-comment', - arguments: [ - ' * When more than the MAX_SUPPLY NFTs have been minted.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `3`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src3::SRC3;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SR3, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [ - ' contract_abi.mint(Identity::ContractId(ContractId::this()), ZERO_B256, 1);', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'key', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'metadata', - output: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - attributes: [ - { - name: 'doc-comment', - arguments: [ - ' Returns metadata for the corresponding `asset` and `key`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the metadata.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `key`: [String] - The key to the specific metadata.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - `Some` metadata that corresponds to the `key` or `None`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src_7::{SRC7, Metadata};'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC7, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let key = String::from_ascii_str("image");'], - }, - { - name: 'doc-comment', - arguments: [' let data = contract_abi.metadata(asset, key);'], - }, - { - name: 'doc-comment', - arguments: [' assert(data.is_some());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'owner', - output: - '192bc7098e2fe60635a9918afb563e4e5419d386da2bdbf0d716b4bc8549802c', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns the owner.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Return Values'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [State] - Represents the state of ownership for this contract.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use standards::src5::SRC5;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let ownership_abi = abi(contract_id, SRC_5);'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' match ownership_abi.owner() {'], - }, - { - name: 'doc-comment', - arguments: [ - ' State::Uninitalized => log("The ownership is uninitalized"),', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' State::Initialized(owner) => log("The ownership is initalized"),', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' State::Revoked => log("The ownership is revoked"),', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: '_asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: '_decimals', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - ], - name: 'set_decimals', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' This function should never be called.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Additional Information'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' NFT decimals are always `0u8` and thus must not be set.', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' This function is an artifact of the SetAssetAttributes ABI definition,', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' but does not have a use in this contract as the decimal value is hardcoded.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the function is called.'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'name', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'set_name', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Sets the name of an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to set the name.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `name`: [String] - The name of the asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the owner of the contract.'], - }, - { - name: 'doc-comment', - arguments: [' * When the name has already been set for an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use asset::SetAssetAttributes;'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(asset: AssetId, contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [ - ' let set_abi = abi(SetAssetAttributes, contract_id);', - ], - }, - { - name: 'doc-comment', - arguments: [' let src_20_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let name = String::from_ascii_str("Ether");'], - }, - { - name: 'doc-comment', - arguments: [' set_abi.set_name(asset, name);'], - }, - { - name: 'doc-comment', - arguments: [' assert(src_20_abi.name(asset) == name);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'symbol', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'set_symbol', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Sets the symbol of an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to set the symbol.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `symbol`: [String] - The symbol of the asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the owner of the contract.'], - }, - { - name: 'doc-comment', - arguments: [' * When the symbol has already been set for an asset.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use asset::SetAssetAttributes;'], - }, - { - name: 'doc-comment', - arguments: [' use src20::SRC20;'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(asset: AssetId, contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [ - ' let set_abi = abi(SetAssetAttributes, contract_id);', - ], - }, - { - name: 'doc-comment', - arguments: [' let src_20_abi = abi(SRC20, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let symbol = String::from_ascii_str("ETH");'], - }, - { - name: 'doc-comment', - arguments: [' set_abi.set_symbol(asset, symbol);'], - }, - { - name: 'doc-comment', - arguments: [' assert(src_20_abi.symbol(asset) == symbol);'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'key', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - { - name: 'metadata', - concreteTypeId: - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - }, - ], - name: 'set_metadata', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Stores metadata for a specific asset and key pair.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset for the metadata to be stored.', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' * `key`: [String] - The key for the metadata to be stored.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `metadata`: [Metadata] - The metadata to be stored.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * When the metadata has already been set for an asset.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `2`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Example'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use asset::metdata::SetAssetMetadata;'], - }, - { - name: 'doc-comment', - arguments: [' use src_7::{SRC7, Metadata};'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' fn foo(asset: AssetId, key: String, contract_id: ContractId, metadata: Metadata) {', - ], - }, - { - name: 'doc-comment', - arguments: [' let set_abi = abi(SetAssetMetadata, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let src_7_abi = abi(SRC7, contract);'], - }, - { - name: 'doc-comment', - arguments: [ - ' set_abi.set_metadata(storage.metadata, asset, key, metadata);', - ], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(src_7_abi.metadata(asset, key) == metadata);', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [], - name: 'is_paused', - output: - 'b760f44fa5965c2474a3b471467a22c43185152129295af588b022ae50b50903', - attributes: [ - { - name: 'doc-comment', - arguments: [' Returns whether the contract is paused.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * [bool] - The pause state for the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use sway_libs::pausable::Pausable;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let pausable_abi = abi(Pausable, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' assert(!pausable_abi.is_paused());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'pause', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Pauses the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the contract owner.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use sway_libs::pausable::Pausable;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let pausable_abi = abi(Pausable, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' pausable_abi.pause();'], - }, - { - name: 'doc-comment', - arguments: [' assert(pausable_abi.is_paused());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [], - name: 'unpause', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Unpauses the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When the caller is not the contract owner.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Accesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Writes: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use sway_libs::pausable::Pausable;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId) {'], - }, - { - name: 'doc-comment', - arguments: [' let pausable_abi = abi(Pausable, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' pausable_abi.unpause();'], - }, - { - name: 'doc-comment', - arguments: [' assert(!pausable_abi.is_paused());'], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['write'], - }, - ], - }, - { - inputs: [ - { - name: 'owner', - concreteTypeId: - 'ab7cd04e05be58e3fc15d424c2c4a57f824a2a2d97d67252440a3925ebdc1335', - }, - ], - name: 'constructor', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'doc-comment', - arguments: [' Sets the defaults for the contract.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `owner`: [Identity] - The `Identity` that will be the first owner.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Reverts'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * When ownership has been set before.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Number of Storage Acesses'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' * Reads: `1`'], - }, - { - name: 'doc-comment', - arguments: [' * Write: `1`'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use standards::src5::SRC5;'], - }, - { - name: 'doc-comment', - arguments: [' use nft::Constructor;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract: ContractId, owner: Identity) {'], - }, - { - name: 'doc-comment', - arguments: [' let src_5_abi = abi(SRC5, contract.bits());'], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(src_5_abi.owner() == State::Uninitialized);', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' let constructor_abi = abi(Constructor, contract.bits());', - ], - }, - { - name: 'doc-comment', - arguments: [' constructor_abi.constructor(owner);'], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(src_5_abi.owner() == State::Initialized(owner));', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - ], - loggedTypes: [ - { - logId: '10032608944051208538', - concreteTypeId: - '8b3afcadf894415a10b09fc3717487e33802c8ffbb030edafe84ca4a71b280bc', - }, - { - logId: '4237256875605624201', - concreteTypeId: - '3acdc2adac8e0589c5864525e0edc9dc61a9571a4d09c3c57b58ea76d33f4b46', - }, - { - logId: '17462098202904023478', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - }, - { - logId: '17188485204969729195', - concreteTypeId: - 'ee89c439b5472cab716006d7c677d16e15301e6c82cfce12cebfa57919f537de', - }, - { - logId: '16139176946940135860', - concreteTypeId: - 'dff9dfec998a49b40f1c4b09567400f0e712aaf939c08f7d07bc5c63116e1084', - }, - { - logId: '13791596350235125220', - concreteTypeId: - 'bf6597cf3d56a5e47a920520e275ccd481a27e7c988ea6af6f253170d5374c5a', - }, - { - logId: '14321618427101975361', - concreteTypeId: - 'c6c09c148c1a1341c7ab81697b3545cc695fa67668a169cddc59790a9a0b6b44', - }, - { - logId: '7845998088195677205', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - }, - { - logId: '12152039456660331088', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - }, - { - logId: '17415926155927968170', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - }, - { - logId: '4571204900286667806', - concreteTypeId: - '3f702ea3351c9c1ece2b84048006c8034a24cbc2bad2e740d0412b4172951d3d', - }, - { - logId: '2161305517876418151', - concreteTypeId: - '1dfe7feadc1d9667a4351761230f948744068a090fe91b1bc6763a90ed5d3893', - }, - { - logId: '16280289466020123285', - concreteTypeId: - 'e1ef35033ea9d2956f17c3292dea4a46ce7d61fdf37bbebe03b7b965073f43b5', - }, - ], - messagesTypes: [], - configurables: [], -}; diff --git a/packages/graphql/src/infra/auth/GraphQLAuth.ts b/packages/graphql/src/infra/auth/GraphQLAuth.ts deleted file mode 100644 index 63c76c367..000000000 --- a/packages/graphql/src/infra/auth/GraphQLAuth.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { GraphQLError } from 'graphql'; -import type { GraphQLContext } from '~/graphql/GraphQLContext'; - -export default class GraphQLAuth { - static apply(resolvers: any) { - for (const resolver in resolvers) { - resolvers[resolver] = GraphQLAuth.auth(resolvers[resolver]); - } - return resolvers; - } - - static auth(fn: Function) { - return (_: any, params: any, context: GraphQLContext) => { - if (!context.isAuthenticated) { - throw new GraphQLError('Authorization header is required'); - } - return fn(_, params, context); - }; - } -} diff --git a/packages/graphql/src/infra/cache/AssetMetadata.ts b/packages/graphql/src/infra/cache/AssetMetadata.ts deleted file mode 100644 index 9ac97f11d..000000000 --- a/packages/graphql/src/infra/cache/AssetMetadata.ts +++ /dev/null @@ -1,797 +0,0 @@ -import { Contract, Provider } from 'fuels'; -import { env } from '~/config'; - -export default class AssetMetadata { - static instance: AssetMetadata; - private lastDate?: Date; - private provider?: Provider; - private values: Record = {}; - - private constructor() {} - - async getProvider() { - if (!this.provider) { - const providerUrl = env.get('FUEL_PROVIDER'); - if (!providerUrl) { - throw new Error('FUEL_PROVIDER is not set'); - } - this.provider = new Provider(providerUrl); - } - return this.provider; - } - - shouldFetch(asset_id: string) { - const now = new Date(); - return ( - !this.lastDate || - !this.values[asset_id] || - now.getTime() - this.lastDate.getTime() > 60000 - ); - } - - returnValue(asset_id: string, value: any) { - this.lastDate = new Date(); - this.values[asset_id] = value; - return value; - } - - static parseUrl(url: string): string { - // Check if the input is a valid CID - const isCID = - /^(Qm[1-9A-HJ-NP-Za-km-z]{44}|b[A-Za-z2-7]{58}|B[A-Z2-7]{58}|z[1-9A-HJ-NP-Za-km-z]{48}|F[0-9A-F]{50})$/.test( - url, - ); - - if (isCID) { - // If it's a CID, convert it to an IPFS gateway URL - return `https://ipfs.io/ipfs/${url}`; - } - if (url.startsWith('ipfs://')) { - // Convert IPFS URI to a gateway URL - const cid = url.slice(7); - return `https://ipfs.io/ipfs/${cid}`; - } - if (url.startsWith('ar://')) { - // Convert Arweave URI to a gateway URL - const id = url.slice(5); - return `https://arweave.net/${id}`; - } - if (url.startsWith('data:')) { - // Data URIs are returned as-is - return url; - } - if (!url.startsWith('http://') && !url.startsWith('https://')) { - // Assume HTTPS for URLs without a protocol - return `https://${url}`; - } - // Return other URLs as-is - return url; - } - - async fetch(contractId: string, asset_id: string) { - if (this.shouldFetch(asset_id)) { - try { - const provider = await this.getProvider(); - const contract = new Contract(contractId, ABI_SRC7, provider); - const { value } = await contract.functions - .metadata( - { - bits: asset_id, - }, - 'uri', - ) - .get(); - if (!value?.String) return null; - const uri = AssetMetadata.parseUrl(value.String); - return this.returnValue(asset_id, uri); - } catch { - return null; - } - } - return this.values[asset_id]; - } - - static getInstance() { - if (!AssetMetadata.instance) { - AssetMetadata.instance = new AssetMetadata(); - } - return AssetMetadata.instance; - } -} - -const ABI_SRC7 = { - programType: 'contract', - specVersion: '1', - encodingVersion: '1', - concreteTypes: [ - { - type: '()', - concreteTypeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - type: 'enum standards::src7::Metadata', - concreteTypeId: - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - metadataTypeId: 1, - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - metadataTypeId: 3, - typeArguments: [ - 'f44b531974c6c04e17e66ab54e9868d230b9a24b3710b184399c363f0190180d', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - metadataTypeId: 3, - typeArguments: [ - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - metadataTypeId: 3, - typeArguments: [ - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - ], - }, - { - type: 'enum std::option::Option', - concreteTypeId: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - metadataTypeId: 3, - typeArguments: [ - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - ], - }, - { - type: 'str[12]', - concreteTypeId: - 'd41cd041a54363a3d61ab80537895c873f2315f976fc58def6e5035f6b1f0710', - }, - { - type: 'str[27]', - concreteTypeId: - '4692ce1cc6bd808ea5fe87f76008be9b96a38c78a8b1b86957d486351b10ff75', - }, - { - type: 'str[5]', - concreteTypeId: - '84877f6e98274b9e4721db68b4c0bdb9e52b8e9572c5bd7811c07a41ced882c7', - }, - { - type: 'str[7]', - concreteTypeId: - '5bc5f5dfcd28de7e77d30dec3e6392905198dac3b172c043b403f669f66585ca', - }, - { - type: 'struct standards::src20::SetDecimalsEvent', - concreteTypeId: - 'fbe071a6e7ca2b2b5e503e82638f9f11c861a6fb452b65473eca8260db87392d', - metadataTypeId: 6, - }, - { - type: 'struct standards::src20::SetNameEvent', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - metadataTypeId: 7, - }, - { - type: 'struct standards::src20::SetSymbolEvent', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - metadataTypeId: 8, - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - metadataTypeId: 9, - }, - { - type: 'struct standards::src7::SetMetadataEvent', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - metadataTypeId: 10, - }, - { - type: 'struct std::asset_id::AssetId', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - metadataTypeId: 12, - }, - { - type: 'struct std::string::String', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - metadataTypeId: 16, - }, - { - type: 'u64', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - type: 'u8', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - ], - metadataTypes: [ - { - type: 'b256', - metadataTypeId: 0, - }, - { - type: 'enum standards::src7::Metadata', - metadataTypeId: 1, - components: [ - { - name: 'B256', - typeId: 0, - }, - { - name: 'Bytes', - typeId: 13, - }, - { - name: 'Int', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'String', - typeId: 16, - }, - ], - }, - { - type: 'enum std::identity::Identity', - metadataTypeId: 2, - components: [ - { - name: 'Address', - typeId: 11, - }, - { - name: 'ContractId', - typeId: 15, - }, - ], - }, - { - type: 'enum std::option::Option', - metadataTypeId: 3, - components: [ - { - name: 'None', - typeId: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - }, - { - name: 'Some', - typeId: 4, - }, - ], - typeParameters: [4], - }, - { - type: 'generic T', - metadataTypeId: 4, - }, - { - type: 'raw untyped ptr', - metadataTypeId: 5, - }, - { - type: 'struct standards::src20::SetDecimalsEvent', - metadataTypeId: 6, - components: [ - { - name: 'asset', - typeId: 12, - }, - { - name: 'decimals', - typeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src20::SetNameEvent', - metadataTypeId: 7, - components: [ - { - name: 'asset', - typeId: 12, - }, - { - name: 'name', - typeId: 3, - typeArguments: [ - { - name: '', - typeId: 16, - }, - ], - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src20::SetSymbolEvent', - metadataTypeId: 8, - components: [ - { - name: 'asset', - typeId: 12, - }, - { - name: 'symbol', - typeId: 3, - typeArguments: [ - { - name: '', - typeId: 16, - }, - ], - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src20::TotalSupplyEvent', - metadataTypeId: 9, - components: [ - { - name: 'asset', - typeId: 12, - }, - { - name: 'supply', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct standards::src7::SetMetadataEvent', - metadataTypeId: 10, - components: [ - { - name: 'asset', - typeId: 12, - }, - { - name: 'metadata', - typeId: 3, - typeArguments: [ - { - name: '', - typeId: 1, - }, - ], - }, - { - name: 'key', - typeId: 16, - }, - { - name: 'sender', - typeId: 2, - }, - ], - }, - { - type: 'struct std::address::Address', - metadataTypeId: 11, - components: [ - { - name: 'bits', - typeId: 0, - }, - ], - }, - { - type: 'struct std::asset_id::AssetId', - metadataTypeId: 12, - components: [ - { - name: 'bits', - typeId: 0, - }, - ], - }, - { - type: 'struct std::bytes::Bytes', - metadataTypeId: 13, - components: [ - { - name: 'buf', - typeId: 14, - }, - { - name: 'len', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::bytes::RawBytes', - metadataTypeId: 14, - components: [ - { - name: 'ptr', - typeId: 5, - }, - { - name: 'cap', - typeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - }, - { - type: 'struct std::contract_id::ContractId', - metadataTypeId: 15, - components: [ - { - name: 'bits', - typeId: 0, - }, - ], - }, - { - type: 'struct std::string::String', - metadataTypeId: 16, - components: [ - { - name: 'bytes', - typeId: 13, - }, - ], - }, - ], - functions: [ - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'key', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - ], - name: 'metadata', - output: - 'fe93748eeb5d91a422fcea06e1b374216ad4ac0b2db01be0a6316af7f90dfa4f', - attributes: [ - { - name: 'doc-comment', - arguments: [ - ' Returns metadata for the corresponding `asset` and `key`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Arguments'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * `asset`: [AssetId] - The asset of which to query the metadata.', - ], - }, - { - name: 'doc-comment', - arguments: [' * `key`: [String] - The key to the specific metadata.'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Returns'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [ - ' * [Option] - `Some` metadata that corresponds to the `key` or `None`.', - ], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' # Examples'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' ```sway'], - }, - { - name: 'doc-comment', - arguments: [' use src7::{SRC7, Metadata};'], - }, - { - name: 'doc-comment', - arguments: [' use std::string::String;'], - }, - { - name: 'doc-comment', - arguments: [''], - }, - { - name: 'doc-comment', - arguments: [' fn foo(contract_id: ContractId, asset: AssetId) {'], - }, - { - name: 'doc-comment', - arguments: [' let contract_abi = abi(SRC7, contract_id);'], - }, - { - name: 'doc-comment', - arguments: [' let key = String::from_ascii_str("social:x");'], - }, - { - name: 'doc-comment', - arguments: [' let data = contract_abi.metadata(asset, key);'], - }, - { - name: 'doc-comment', - arguments: [ - ' assert(data.unwrap() == Metadata::String(String::from_ascii_str("fuel_network")));', - ], - }, - { - name: 'doc-comment', - arguments: [' }'], - }, - { - name: 'doc-comment', - arguments: [' ```'], - }, - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'svg_image', - concreteTypeId: - '9a7f1d3e963c10e0a4ea70a8e20a4813d1dc5682e28f74cb102ae50d32f7f98c', - }, - { - name: 'health_attribute', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'set_src7_events', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: [ - { - name: 'storage', - arguments: ['read', 'write'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'decimals', - output: - '2da102c46c7263beeed95818cd7bee801716ba8303dddafdcd0f6c9efda4a0f1', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'name', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'symbol', - output: - '7c06d929390a9aeeb8ffccf8173ac0d101a9976d99dda01cce74541a81e75ac0', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [], - name: 'total_assets', - output: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - ], - name: 'total_supply', - output: - 'd852149004cc9ec0bbe7dc4e37bffea1d41469b759512b6136f2e865a4c06e7d', - attributes: [ - { - name: 'storage', - arguments: ['read'], - }, - ], - }, - { - inputs: [ - { - name: 'asset', - concreteTypeId: - 'c0710b6731b1dd59799cf6bef33eee3b3b04a2e40e80a0724090215bbf2ca974', - }, - { - name: 'supply', - concreteTypeId: - '1506e6f44c1d6291cdf46395a8e573276a4fa79e8ace3fc891e092ef32d1b0a0', - }, - ], - name: 'set_src20_data', - output: - '2e38e77b22c314a449e91fafed92a43826ac6aa403ae6a8acb6cf58239fbaf5d', - attributes: null, - }, - ], - loggedTypes: [ - { - logId: '17415926155927968170', - concreteTypeId: - 'f1b1cc90b68559aa4bb5cc58201ebb5c5402ed3aa28927140761e8ff7dcd3ab8', - }, - { - logId: '7845998088195677205', - concreteTypeId: - '6ce295b0fb4c1c15e8ed1cfa4babda47d8a04940a5266a3229e12243a2e37c2c', - }, - { - logId: '12152039456660331088', - concreteTypeId: - 'a8a4b78066c51a50da6349bd395fe1c67e774d75c1db2c5c22288a432d7a363d', - }, - { - logId: '18149631459970394923', - concreteTypeId: - 'fbe071a6e7ca2b2b5e503e82638f9f11c861a6fb452b65473eca8260db87392d', - }, - { - logId: '17462098202904023478', - concreteTypeId: - 'f255d5cc2114d1b6bc34bef4c28d4b60caccffd9a672ed16b79ea217e1c4a8a3', - }, - ], - messagesTypes: [], - configurables: [ - { - name: 'DECIMALS', - concreteTypeId: - 'c89951a24c6ca28c13fd1cfdc646b2b656d69e61a92b91023be7eb58eb914b6b', - offset: 34624, - }, - { - name: 'NAME', - concreteTypeId: - '5bc5f5dfcd28de7e77d30dec3e6392905198dac3b172c043b403f669f66585ca', - offset: 34632, - }, - { - name: 'SYMBOL', - concreteTypeId: - '84877f6e98274b9e4721db68b4c0bdb9e52b8e9572c5bd7811c07a41ced882c7', - offset: 34688, - }, - { - name: 'SOCIAL_X', - concreteTypeId: - 'd41cd041a54363a3d61ab80537895c873f2315f976fc58def6e5035f6b1f0710', - offset: 34672, - }, - { - name: 'SITE_FORUM', - concreteTypeId: - '4692ce1cc6bd808ea5fe87f76008be9b96a38c78a8b1b86957d486351b10ff75', - offset: 34640, - }, - ], -}; diff --git a/packages/graphql/src/infra/dao/AssetDAO.ts b/packages/graphql/src/infra/dao/AssetDAO.ts deleted file mode 100644 index ace3e415e..000000000 --- a/packages/graphql/src/infra/dao/AssetDAO.ts +++ /dev/null @@ -1,174 +0,0 @@ -import { isB256 } from 'fuels'; -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import type PaginatedParams from '../paginator/PaginatedParams'; - -export default class AssetDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getAssetOwner(assetId: string) { - if (!isB256(assetId)) return null; - const [asset] = await this.databaseConnection.query( - 'select a.owner from indexer.assets_contracts a where a.asset_id = $1', - [assetId], - ); - if (!asset) return; - return asset.owner; - } - - async getByAssetId(assetId: string) { - const assetData = ( - await this.databaseConnection.query( - ` - select ac.*, c.name as collection from indexer.assets_contracts ac left join indexer.collections c using (contract_id) where ac.asset_id = $1 - `, - [assetId], - ) - )[0]; - if (!assetData) return; - return { - assetId: assetData.asset_id, - contractId: assetData.contract_id, - subId: assetData.sub_id, - name: assetData.name, - symbol: assetData.symbol, - decimals: assetData.decimals, - totalSupply: assetData.total_supply, - suspicious: false, - metadata: assetData.metadata, - collection: assetData.collection, - }; - } - - async getPaginatedByContractId( - contractId: string, - paginatedParams: PaginatedParams, - ) { - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - const assetsData = await this.databaseConnection.query( - ` - select - * - from - indexer.assets_contracts c - where - c.contract_id = $1 and - ($2::text is null or c._id ${direction} $2) - order by - c._id ${order} - limit - $3 - `, - [contractId.toLowerCase(), paginatedParams.cursor, paginatedParams.last], - ); - assetsData.sort((a: any, b: any) => { - return a._id.localeCompare(b._id) * -1; - }); - if (assetsData.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - const startCursor = assetsData[0]._id; - const endCursor = assetsData[assetsData.length - 1]._id; - const hasPreviousPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.assets_contracts t where t._id < $1 and t.contract_id = $2)', - [endCursor, contractId], - ) - )[0].exists; - const hasNextPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.assets_contracts t where t._id > $1 and t.contract_id = $2)', - [startCursor, contractId], - ) - )[0].exists; - const [previousRows] = await this.databaseConnection.query( - 'select count(*)::integer as count from indexer.assets_contracts where _id > $1 and contract_id = $2', - [startCursor, contractId], - ); - const [totalCount] = await this.databaseConnection.query( - 'select count(*)::integer as count from indexer.assets_contracts where contract_id = $1', - [contractId], - ); - const newNodes = assetsData.map((assetData) => ({ - _id: assetData._id, - assetId: assetData.asset_id, - contractId: assetData.contract_id, - subId: assetData.sub_id, - name: assetData.name, - symbol: assetData.symbol, - decimals: assetData.decimals, - totalSupply: assetData.total_supply, - suspicious: false, - icon: '', - networks: [], - rate: null, - })); - const edges = newNodes.map((node) => ({ - node, - cursor: paginatedParams.cursor, - })); - const paginatedResults = { - nodes: newNodes, - edges, - pageInfo: { - startCount: previousRows.count + 1, - endCount: previousRows.count + paginatedParams.last, - totalCount: totalCount.count, - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - - return paginatedResults; - } - - async getAssetsRate() { - const data = await this.databaseConnection.query( - 'select symbol, rate from indexer.assets_rates where _id in (select max(_id) from indexer.assets_rates group by symbol)', - [], - ); - return data.map((assetRate) => ({ - symbol: assetRate.symbol, - rate: Number(assetRate.rate), - })); - } - - async getAssetsRateByAssetId(assetId: string) { - const [data] = await this.databaseConnection.query( - 'select symbol, rate from indexer.assets_rates where _id = (select max(_id) from indexer.assets_rates where asset_id = $1)', - [assetId], - ); - if (!data) return; - return { - symbol: data.symbol, - rate: Number(data.rate), - }; - } - - async getAssetsRateBySymbol(symbol: string) { - const [data] = await this.databaseConnection.query( - 'select symbol, rate from indexer.assets_rates where _id = (select max(_id) from indexer.assets_rates where symbol = $1)', - [symbol], - ); - if (!data) return; - return { - symbol: data.symbol, - rate: Number(data.rate), - }; - } -} diff --git a/packages/graphql/src/infra/dao/BalanceDAO.ts b/packages/graphql/src/infra/dao/BalanceDAO.ts deleted file mode 100644 index 3a17d54e6..000000000 --- a/packages/graphql/src/infra/dao/BalanceDAO.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; - -export default class BalanceDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getBalance( - accountHash: string, - assetId: string, - blockHeight: number | null, - ) { - const [balanceData] = await this.databaseConnection.query( - ` - select - block_height, - account_hash, - asset_id, - balance - from - indexer.balance - where - _id = ( - select - max(_id) - from - indexer.balance - where - account_hash = $1 and - asset_id = $2 and - ($3::integer is null or block_height = $3) - ); - `, - [accountHash, assetId, blockHeight], - ); - return balanceData; - } -} diff --git a/packages/graphql/src/infra/dao/BlockDAO.ts b/packages/graphql/src/infra/dao/BlockDAO.ts deleted file mode 100644 index a74247f73..000000000 --- a/packages/graphql/src/infra/dao/BlockDAO.ts +++ /dev/null @@ -1,333 +0,0 @@ -import dayjs from 'dayjs'; -import utc from 'dayjs/plugin/utc'; -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import type PaginatedParams from '../paginator/PaginatedParams'; -import Block from './Block'; -dayjs.extend(utc); - -export default class BlockDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getByHeight(height: number) { - const blockData = ( - await this.databaseConnection.query( - ` - select - b.* - from - indexer.blocks b - where - b._id = $1 - `, - [height], - ) - )[0]; - if (!blockData) return; - return new Block(blockData); - } - - async getByHash(hash: string) { - const blockData = ( - await this.databaseConnection.query( - ` - select - b.* - from - indexer.blocks b - where - b.id = $1 - `, - [hash.toLowerCase()], - ) - )[0]; - if (!blockData) return; - return new Block(blockData); - } - - async getPaginatedBlocks(paginatedParams: PaginatedParams) { - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - const blocksData = await this.databaseConnection.query( - ` - select - * - from - indexer.blocks b - where - $1::integer is null or b._id ${direction} $1 - order by - b._id ${order} - limit 10 - `, - [paginatedParams.cursor], - ); - blocksData.sort((a: any, b: any) => { - return (a._id - b._id) * -1; - }); - const blocks = []; - for (const blockData of blocksData) { - blocks.push(new Block(blockData)); - } - if (blocks.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - const startCursor = blocksData[0]._id; - const endCursor = blocksData[blocksData.length - 1]._id; - const hasPreviousPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.blocks where _id < $1)', - [endCursor], - ) - )[0].exists; - const hasNextPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.blocks where _id > $1)', - [startCursor], - ) - )[0].exists; - const newNodes = blocks.map((n) => n.toGQLNode()); - const edges = newNodes.map((node) => ({ - node, - cursor: paginatedParams.cursor, - })); - const paginatedResults = { - nodes: newNodes, - edges, - pageInfo: { - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - return paginatedResults; - } - - async findLatestBlockHeight(): Promise { - const [row] = await this.databaseConnection.query( - 'select _id from indexer.blocks order by _id desc limit 1', - [], - ); - return row ? row._id : null; - } - - async getBlocksDashboard() { - const blocksData = await this.databaseConnection.query( - ` - select - b._id as blockno, - b.id as hash, - b.gas_used as gasused, - b.total_fee as totalfee, - b.producer, - b.timestamp as timestamp, - b.transactions_count as transactionscount, - pg_column_size(b.data) as blocksize - from - indexer.blocks b - order by - b._id desc - limit 6 - `, - [], - ); - const formattedBlocksData = blocksData.map((block) => ({ - timestamp: new Date(Number(block.timestamp)).getTime(), - gasUsed: Number(block.gasused) || 0, - gasUsedInUsd: '', - totalFee: Number(block.totalfee) || 0, - totalFeeInUsd: '', - blockNo: block.blockno, - blockHash: block.hash, - producer: block.producer, - transactionsCount: Number(block.transactionscount) || 0, - blockSize: Number(block.blocksize) || 0, - })); - return { - nodes: formattedBlocksData, - }; - } - - // The window-anchor `MAX("timestamp")` is computed once via getMaxTimestamp() - // and passed in as $1. Embedding the subquery turned the WHERE filter into a - // runtime parameter the planner can't size, which made it pick a Parallel Seq - // Scan over the whole 50M-row blocks table. With $1 bound to a literal, the - // planner uses the histogram on `timestamp` and picks an Index Scan on - // blocks_timestamp_idx that touches only the recent ~89K rows. - - async getMaxTimestamp(): Promise { - const [row] = await this.databaseConnection.query( - 'SELECT MAX("timestamp") AS max_ts FROM indexer.blocks', - [], - ); - return row?.max_ts ?? null; - } - - async tps(maxTs: Date | null) { - if (!maxTs) return { nodes: [] }; - const data = await this.databaseConnection.query( - `SELECT to_char(date_trunc('hour', "timestamp"), 'YYYY-MM-DD HH24') AS date, - SUM(transactions_count) AS total_tps, - SUM(gas_used::int) AS total_gas_used - FROM indexer.blocks - WHERE "timestamp" > date_trunc('hour', $1::timestamptz) - INTERVAL '24 hours' - AND "timestamp" < date_trunc('hour', $1::timestamptz) - GROUP BY 1 - ORDER BY 1 ASC`, - [maxTs], - ); - const intervals = []; - for (const row of data) { - const interval: any = {}; - interval.start = dayjs(row.date) - .startOf('hour') - .utcOffset(0, true) - .toDate(); - interval.end = dayjs(row.date) - .startOf('hour') - .add(1, 'hour') - .utcOffset(0, true) - .toDate(); - interval.txCount = Number(row.total_tps); - interval.totalGas = Number(row.total_gas_used); - intervals.push(interval); - } - return { - nodes: intervals, - }; - } - - // Single scan that emits all six per-hour aggregates the dashboard needs. - // Replaces six individual queries (getTotalTps/getAverageTps/getMaxTps and - // their gas equivalents) which were each doing the same 24h scan. - async getHourlyStatistics(maxTs: Date | null) { - const empty = { - totalTps: [], - averageTps: [], - maxTps: [], - totalGasUsed: [], - averageGasUsed: [], - maxGasUsed: [], - }; - if (!maxTs) return empty; - const rows = await this.databaseConnection.query( - `SELECT to_char(date_trunc('hour', "timestamp"), 'YYYY-MM-DD HH24') AS date, - SUM(transactions_count)::numeric AS sum_txs, - AVG(transactions_count)::numeric AS avg_txs, - MAX(transactions_count)::numeric AS max_txs, - SUM(gas_used::numeric) AS sum_gas, - AVG(gas_used::numeric) AS avg_gas, - MAX(gas_used::numeric) AS max_gas - FROM indexer.blocks - WHERE "timestamp" > date_trunc('hour', $1::timestamptz) - INTERVAL '24 hours' - GROUP BY 1 - ORDER BY 1`, - [maxTs], - ); - const toBucket = (col: string) => - rows.map((r: any) => ({ - date: dayjs(r.date).startOf('hour').utcOffset(0, true).toDate(), - value: Number(r[col]), - })); - // The legacy getMaxTps used a 23-hour window (vs 24h here); preserve the - // historical entry count to keep any external SDK consumer's expectations - // intact. - return { - totalTps: toBucket('sum_txs'), - averageTps: toBucket('avg_txs'), - maxTps: toBucket('max_txs').slice(-24), - totalGasUsed: toBucket('sum_gas'), - averageGasUsed: toBucket('avg_gas'), - maxGasUsed: toBucket('max_gas'), - }; - } - - async getAverageTpsPerMinute(maxTs: Date | null) { - if (!maxTs) return []; - const data = await this.databaseConnection.query( - `SELECT to_char(date_trunc('minute', "timestamp"), 'YYYY-MM-DD HH24:MI') AS date, - SUM(transactions_count)::float / 60 AS value - FROM indexer.blocks - WHERE "timestamp" > $1::timestamptz - INTERVAL '24 hours' - GROUP BY 1 - ORDER BY 1 ASC`, - [maxTs], - ); - return data.map((row) => ({ - date: dayjs(row.date).startOf('minute').utcOffset(0, true).toDate(), - value: Number(row.value) || 0, - })); - } - - async getRollingStats60s(maxTs: Date | null) { - if (!maxTs) { - return { - tps: 0, - avgTxPerBlock: 0, - avgGasPerBlock: 0, - avgBlockSize: 0, - peakTps: 0, - }; - } - const [stats, peak] = await Promise.all([ - this.databaseConnection.query( - `SELECT - COALESCE(SUM(transactions_count)::float / 60, 0) AS tps, - CASE WHEN COUNT(*) > 0 THEN SUM(transactions_count)::float / COUNT(*) ELSE 0 END AS avg_tx_per_block, - CASE WHEN COUNT(*) > 0 THEN AVG(gas_used::numeric) ELSE 0 END AS avg_gas_per_block, - CASE WHEN COUNT(*) > 0 THEN AVG(pg_column_size(data)) ELSE 0 END AS avg_block_size - FROM indexer.blocks - WHERE "timestamp" > $1::timestamptz - INTERVAL '60 seconds'`, - [maxTs], - ), - this.databaseConnection.query( - `SELECT COALESCE(MAX(minute_tps), 0) AS peak_tps - FROM ( - SELECT SUM(transactions_count)::float / 60 AS minute_tps - FROM indexer.blocks - WHERE "timestamp" > $1::timestamptz - INTERVAL '24 hours' - GROUP BY date_trunc('minute', "timestamp") - ) t`, - [maxTs], - ), - ]); - return { - tps: Number(stats[0]?.tps) || 0, - avgTxPerBlock: Number(stats[0]?.avg_tx_per_block) || 0, - avgGasPerBlock: Number(stats[0]?.avg_gas_per_block) || 0, - avgBlockSize: Number(stats[0]?.avg_block_size) || 0, - peakTps: Number(peak[0]?.peak_tps) || 0, - }; - } - - async getTotalFee() { - // Optimized query using materialized view for pre-computed hourly statistics - // View refreshes every 10 minutes and eliminates expensive JSON extraction - const data = await this.databaseConnection.query( - `SELECT to_char(hour, 'YYYY-MM-DD HH24') AS date, - total_fee AS value - FROM indexer.hourly_statistics_agg - WHERE hour > (SELECT MAX(hour) FROM indexer.hourly_statistics_agg) - INTERVAL '24 hours' - AND hour <= (SELECT MAX(hour) FROM indexer.hourly_statistics_agg) - ORDER BY hour`, - [], - ); - return data.map((row) => ({ - date: dayjs(row.date).startOf('hour').utcOffset(0, true).toDate(), - value: Number(row.value), - })); - } -} diff --git a/packages/graphql/src/infra/dao/BridgeDAO.ts b/packages/graphql/src/infra/dao/BridgeDAO.ts deleted file mode 100644 index 033d209e2..000000000 --- a/packages/graphql/src/infra/dao/BridgeDAO.ts +++ /dev/null @@ -1,735 +0,0 @@ -import dayjs from 'dayjs'; -import { dataLength, ethers, toUtf8Bytes, zeroPadValue } from 'ethers'; -import { - Address, - type BytesLike, - InputMessageCoder, - ZeroBytes32, - arrayify, - bn, - concat, - sha256, -} from 'fuels'; -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import { - type BridgeResponse, - type CommitQueryItem, - type DepositEvent, - DepositQueryType, - type DepositResponse, - DepositStatusType, - type EventRow, - type MessageDecoded, - type MessageSpent, - ResponseType, - type WithdrawEvent, - type WithdrawResponse, - WithdrawStatusType, -} from './BridgeDAO.types'; - -// Time to finalize withdraw in days -const TIME_TO_FINALIZE_COMMIT = 7; -const TIME_TO_INCLUDE_BLOCK = 30; - -// TODO: Contract changes base on the network -const BRIDGE_CONTRACT_L2_ADDRESS = - '0xd02112ef9c39f1cea7c8527c26242ca1f5d26bcfe8d1564bee054d3b04175471'; - -function getTokenId(_tokenAddress: BytesLike) { - const tokenId: BytesLike = ZeroBytes32; - let tokenAddress = _tokenAddress; - if (dataLength(tokenAddress) < 32) { - tokenAddress = zeroPadValue(tokenAddress, 32); - } - const subId = sha256(concat([toUtf8Bytes('1'), tokenAddress, tokenId])); - const assetId = sha256(concat([BRIDGE_CONTRACT_L2_ADDRESS, subId])); - return assetId; -} - -export const MESSAGE_TYPES = { - DEPOSIT: '0x0000000000000000000000000000000000000000000000000000000000000000', - DEPOSIT_WITH_DATA: - '0x0000000000000000000000000000000000000000000000000000000000000002', -} as const; - -// This is default used on mainnet and testnet -const ETH_ASSET_ID = - '0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07'; - -function decodeMessageOut(bytes: string): { - recipient: string; - assetId: string; - amount: string; - ethAssetId: string; -} { - const [recipient, tokenId, amount] = ethers.AbiCoder.defaultAbiCoder().decode( - new Array(3).fill('bytes32'), - arrayify(bytes).slice(4), - ); - return { - recipient, - assetId: getTokenId(tokenId), - ethAssetId: tokenId, - amount: bn(amount).toString(), - }; -} - -function decodeMessageIn(bytes: string): MessageDecoded { - const [ - contractId, - _messageType, - address, - _tokenId, - sender, - recipient, - amount, - decimals, - ] = ethers.AbiCoder.defaultAbiCoder().decode( - new Array(8).fill('bytes32'), - arrayify(bytes), - ); - - return { - address, - assetId: getTokenId(contractId), - sender, - recipient, - amount: bn(amount).toString(), - decimals: bn(decimals).toNumber(), - }; -} - -function getValidAddress(address: string) { - try { - return Address.fromString(address); - } catch (_error) { - throw new Error('Invalid address format, expected a valid FUEL address'); - } -} - -export default class BridgeDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - averageTimeDifferenceInSeconds(dates: Date[]) { - if (dates.length < 2) return 0; - const timestamps = dates - .map((date) => date.getTime()) - .sort((a, b) => b - a); - let totalDiff = 0; - for (let i = 1; i < timestamps.length; i++) { - totalDiff += timestamps[i - 1] - timestamps[i]; - } - const avgDiffInMilliseconds = totalDiff / (timestamps.length - 1); - return avgDiffInMilliseconds / 1000; - } - - async getLastCommits(): Promise<{ - lastCommit: CommitQueryItem; - lastFinalizedCommit: CommitQueryItem; - commitPeriod: number; - }> { - const blocks = await this.databaseConnection.query( - `select - cl."timestamp", - cl.tx_hash, - b._id as fuel_block_height, - b.id as fuel_block_hash, - cl.block_height as eth_block_height, - (cl."timestamp" < (now() - interval '7 days')) as is_finalized - from - indexer.contract_l1_logs cl - join - indexer.blocks b - on b.id = cl.decoded_args->>'blockHash' - where - cl."event" = 'CommitSubmitted' and - cl."timestamp" > (now() - interval '10 days') and - cl.contract_hash in (select contract_hash from indexer.contract_l1_index where name = 'FuelChainState') - order by cl."timestamp" desc`, - [], - ); - const diff = this.averageTimeDifferenceInSeconds( - blocks.map((block) => block.timestamp), - ); - return { - lastCommit: blocks[0], - lastFinalizedCommit: blocks.find((b) => b.is_finalized === true), - commitPeriod: diff, - }; - } - - async getBlockCommit(block_height: string): Promise<{ - fuel_block_height: string; - fuel_block_hash: string; - eth_block_height: string; - tx_hash: string; - timestamp: Date; - } | null> { - const [block] = await this.databaseConnection.query( - `select - b._id as fuel_block_height, - b.id as fuel_block_hash, - cl.block_height as eth_block_height, - cl.tx_hash as tx_hash, - cl."timestamp" - from - indexer.blocks b - join - indexer.contract_l1_args ca - on ca."key" = 'blockHash' - and ca."value" = b.id - join - indexer.contract_l1_logs cl - on cl._id = ca.contract_l1_log_id - where - b._id >= $1 - order by b._id asc - limit 1`, - [block_height], - ); - return block; - } - - async blockIsSynced(blockHeight: string) { - const [blockIsSynced] = await this.databaseConnection.query( - `select - b.da_height - from - indexer.blocks b - where - b.da_height >= $1 - order by b._id desc - limit 1`, - [blockHeight], - ); - return blockIsSynced ? blockIsSynced.da_height > 0 : false; - } - - async getMessageSpent( - address: string, - nonce: string, - ): Promise { - const [messageSpent] = await this.databaseConnection.query( - `select - t.tx_hash, - t.block_id, - t."timestamp", - i.nonce - from - indexer.transactions_accounts t_a - join - indexer.inputs i - on i.transaction_id = t_a._id - and i.nonce = $1 - join - indexer.transactions t - on t.tx_hash = t_a.tx_hash - where - t_a.account_hash = $2`, - [String(nonce), Address.fromString(address).toB256()], - ); - return messageSpent - ? { - tx_hash: messageSpent.tx_hash, - block_height: messageSpent.block_id, - nonce: messageSpent.nonce, - timestamp: messageSpent.timestamp, - } - : null; - } - - parseWithdrawEvent(event: any): EventRow & WithdrawEvent { - const messageId = InputMessageCoder.getMessageId({ - sender: event.sender, - amount: bn(event.amount), - nonce: event.nonce, - recipient: event.recipient, - data: event.data, - }); - const data: EventRow & WithdrawEvent = { - event_id: event.event_id, - event_type: event.event_type, - tx_hash: event.tx_id, - block_height: event.block_id, - timestamp: event.timestamp, - data: event.data, - messageId, - sender: event.sender, - recipient: event.recipient, - amount: bn(event.amount).toString(), - assetId: ETH_ASSET_ID, - ethAssetId: ETH_ASSET_ID, - }; - - if (bn(data.amount).isZero()) { - const { recipient, amount, assetId, ethAssetId } = decodeMessageOut( - event.data, - ); - data.amount = amount; - data.recipient = recipient; - data.assetId = assetId; - data.ethAssetId = ethAssetId; - } - - return data; - } - - parseDepositEvent(event: any): EventRow & DepositEvent { - if (event.key === 'data') { - const data = decodeMessageIn(event.decoded_args.data); - return { - event_id: event.event_id, - event_type: event.event_type, - type: DepositQueryType.ERC_20, - tx_hash: event.tx_hash, - block_height: event.block_height, - timestamp: event.timestamp, - nonce: bn(event.decoded_args.nonce).toHex(32), - ...data, - }; - } - return { - event_id: event.event_id, - event_type: event.event_type, - type: DepositQueryType.ETH, - tx_hash: event.tx_hash, - block_height: event.block_height, - timestamp: event.timestamp, - nonce: bn(event.decoded_args.nonce).toHex(32), - address: ZeroBytes32, - assetId: ETH_ASSET_ID, - sender: event.decoded_args.sender, - recipient: event.decoded_args.recipient, - amount: bn(event.decoded_args.amount).toString(), - decimals: 9, - }; - } - - async processDepositEvent(event: EventRow & DepositEvent) { - const data: EventRow & DepositResponse = { - event_id: event.event_id, - event_type: event.event_type, - type: ResponseType.Deposit, - amount: event.amount, - ethAssetId: event.address, - assetId: event.assetId, - from: event.sender, - to: event.recipient, - status: DepositStatusType.WaitingSync, - statusInfo: { - [DepositStatusType.TransactionSent]: { - ethTx: { - height: event.block_height, - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [DepositStatusType.WaitingSync]: { - dateExpectedToComplete: dayjs(event.timestamp) - .add(TIME_TO_INCLUDE_BLOCK, 'minutes') - .toDate(), - }, - }, - }; - const isSynced = await this.blockIsSynced(event.block_height); - - if (event.type === DepositQueryType.ERC_20) { - const messageSpent = await this.getMessageSpent( - event.recipient, - event.nonce, - ); - if (isSynced) { - data.status = DepositStatusType.ReadyToProcessDeposit; - data.statusInfo[DepositStatusType.ReadyToProcessDeposit] = { - nonce: event.nonce, - }; - } - if (messageSpent) { - data.status = DepositStatusType.Finalized; - data.statusInfo[DepositStatusType.Finalized] = {}; - } - } - - if (event.type === DepositQueryType.ETH && isSynced) { - data.status = DepositStatusType.Finalized; - data.statusInfo[DepositStatusType.Finalized] = {}; - } - - return data; - } - - async processWithdrawEvent(event: EventRow & WithdrawEvent) { - const { lastCommit, lastFinalizedCommit, commitPeriod } = - await this.getLastCommits(); - const data: EventRow & WithdrawResponse = { - event_id: event.event_id, - event_type: event.event_type, - type: ResponseType.Withdraw, - amount: event.amount, - ethAssetId: event.ethAssetId, - assetId: event.assetId, - from: event.sender, - to: event.recipient, - status: WithdrawStatusType.WaitingCommittingToL1, - statusInfo: { - [WithdrawStatusType.TransactionSent]: { - fuelTx: { - height: event.block_height, - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [WithdrawStatusType.WaitingCommittingToL1]: { - dateExpectedToComplete: dayjs(lastCommit.timestamp) - .add(commitPeriod, 'seconds') - .toDate(), - }, - }, - }; - const blockCommited = await this.getBlockCommit(event.block_height); - if (blockCommited) { - const dateToFinalize = dayjs(blockCommited.timestamp).add( - TIME_TO_FINALIZE_COMMIT, - 'days', - ); - data.status = WithdrawStatusType.WaitingFinalization; - data.statusInfo[WithdrawStatusType.WaitingFinalization] = { - dateExpectedToComplete: dateToFinalize.toDate(), - ethTx: { - height: blockCommited.eth_block_height, - txHash: blockCommited.tx_hash, - timestamp: blockCommited.timestamp, - }, - }; - if (dateToFinalize.isBefore()) { - data.status = WithdrawStatusType.ReadyToProcessWithdraw; - data.statusInfo[WithdrawStatusType.ReadyToProcessWithdraw] = { - transactionId: event.tx_hash, - nonce: event.messageId, - commitBlockId: blockCommited.fuel_block_height, - commitBlockHeight: blockCommited.fuel_block_hash, - }; - if ( - Number(lastFinalizedCommit.fuel_block_height) > - Number(blockCommited.fuel_block_height) - ) { - data.statusInfo[WithdrawStatusType.ReadyToProcessWithdraw] = { - transactionId: event.tx_hash, - nonce: event.messageId, - commitBlockId: lastFinalizedCommit.fuel_block_height, - commitBlockHeight: lastFinalizedCommit.fuel_block_hash, - }; - } - } - } - - const [messageRelayed] = await this.databaseConnection.query( - `SELECT - cl."timestamp", - cl.tx_hash, - cl.block_height - FROM - indexer.contract_l1_logs cl - JOIN - indexer.contract_l1_args ca - on ca."key" = 'messageId' - and ca.contract_l1_log_id = cl._id - and ca."value" = $1 - WHERE - cl.signature = 'MessageRelayed(bytes32,bytes32,bytes32,uint64)' - ORDER BY cl."timestamp" DESC`, - [event.messageId], - ); - if (messageRelayed) { - data.status = WithdrawStatusType.Finalized; - data.statusInfo[WithdrawStatusType.Finalized] = { - ethTx: { - height: messageRelayed.block_height, - txHash: messageRelayed.tx_hash, - timestamp: messageRelayed.timestamp, - }, - }; - } - return data; - } - - async queryEvents(address: Address, limit: number, offset: number) { - const events: Array = - await this.databaseConnection.query( - `select - 'deposit' as event_type, - cl._id as event_id, - cl."timestamp", - cl.contract_hash, - cl.block_height, - cl.tx_hash, - cl.decoded_args as decoded_args, - ca."key", - null as tx_id, - null as block_id, - null as contract_id, - null as sender, - null as nonce, - null as amount, - null as recipient, - null as data - from - indexer.contract_l1_logs cl - join - indexer.contract_l1_args ca - on ca.contract_l1_log_id = cl._id - and (( - ca."key" = 'recipient' - and ca."value" = $1 - ) or ( - ca."key" = 'data' - and ca."value" LIKE '%${address.toB256().replace('0x', '')}%' - )) - where - cl.event = 'MessageSent' - AND cl.contract_hash in ( - select ci.contract_hash from indexer.contract_l1_index ci where ci."name" in ( - 'FuelMessagePortal', 'FuelERC20GatewayV4' - ) - ) - union all - select - 'withdraw' as event_type, - r._id as event_id, - t."timestamp" as timestamp, - null as contract_hash, - null as block_height, - null as tx_hash, - null as decoded_args, - null as key, - t.tx_hash as tx_id, - t.block_id as block_id, - a_c.account_hash as contract_id, - r.receipt_sender as sender, - r.receipt_nonce as nonce, - r.receipt_amount as amount, - r.receipt_recipient as recipient, - r.receipt_data as data - from - indexer.transactions_accounts a_c - join indexer.transactions t on (t.tx_hash = a_c.tx_hash) - join indexer.receipts r on (r.tx_hash = t.tx_hash) - where - a_c.account_hash = $1 and - r.receipt_type = 'MESSAGE_OUT' - order by timestamp desc - limit $2 - offset $3 - `, - [address.toB256(), limit, offset], - ); - return events; - } - - async queryLogsForRecipient( - address: string, - recipient: string, - predicate: string, - ) { - // Remove 0x prefix and convert to lowercase for comparison - const recipientHex = recipient.toLowerCase().replace('0x', ''); - - const events: Array = - await this.databaseConnection.query( - `SELECT - ca.value as recipient, - cl."raw_log"->>'blockHash' as "blockHash", - cl."raw_log"->>'topics' as "topics", - cl."raw_log"->>'data' as "data", - cl."decoded_args"->>'nonce' as "nonce", - cl.tx_hash as "transactionHash" - FROM - indexer.contract_l1_logs cl - JOIN - indexer.contract_l1_args ca - ON ca.contract_l1_log_id = cl._id - AND ca."key" = 'recipient' - WHERE cl.contract_hash = $1 - AND ( - -- Direct recipient match (ETH deposits) - LOWER(ca."value") = LOWER($2) - OR ( - -- ERC20 deposits: recipient is predicate, but check if data contains actual recipient - LOWER(ca."value") = LOWER($3) - AND EXISTS ( - SELECT 1 - FROM indexer.contract_l1_args ca_data - WHERE ca_data.contract_l1_log_id = cl._id - AND ca_data."key" = 'data' - AND LOWER(ca_data."value") LIKE '%' || $4 || '%' - ) - ) - ) - ORDER BY cl."timestamp" DESC - `, - [address, recipient, predicate, recipientHex], - ); - return events; - } - - async queryBlockHashes(address: string, fromBlock: number) { - const events: Array = - await this.databaseConnection.query( - `SELECT - cl."decoded_args"->>'blockHash' as "fuelBlockHash", - cl."raw_log"->>'blockHash' as "ethBlockHash" - FROM - indexer.contract_l1_logs cl - WHERE - cl.contract_hash = $1 AND - cl.event = 'CommitSubmitted' AND - cl.block_height > $2 - ORDER BY cl."timestamp" ASC - `, - [address, fromBlock], - ); - return events; - } - - async queryMessageRelayedTxHash(address: string, messageId: string) { - const events: Array = - await this.databaseConnection.query( - `SELECT - cl.tx_hash as "transactionHash" - FROM - indexer.contract_l1_logs cl - WHERE - cl.contract_hash = $1 AND - cl.event = 'MessageRelayed' AND - cl.decoded_args->>'messageId' = $2 - ORDER BY cl."timestamp" ASC - `, - [address, messageId], - ); - return events; - } - - async existsQueryEvents(address: Address, limit: number, offset: number) { - if (offset < 0) return false; - const events = await this.queryEvents(address, limit, offset); - return events.length > 0; - } - - async getEvents( - rawAddress: string, - limit: number, - offset: number, - ): Promise { - if (limit < 0 || offset < 0) return []; - const address = getValidAddress(rawAddress); - const events = await this.queryEvents(address, limit, offset); - const hasPreviousPage = await this.existsQueryEvents( - address, - limit, - offset + limit, - ); - const hasNextPage = await this.existsQueryEvents( - address, - limit, - offset - limit, - ); - const promises = events.map( - async (event: EventRow & DepositEvent & WithdrawEvent) => { - if (event.event_type === 'deposit') { - const deposit = await this.processDepositEvent( - this.parseDepositEvent(event), - ); - return deposit; - } - if (event.event_type === 'withdraw') { - const withdraw = await this.processWithdrawEvent( - this.parseWithdrawEvent(event), - ); - return withdraw; - } - throw new Error(''); - }, - ); - const mergedEvents: Array = await Promise.all(promises); - return { - nodes: mergedEvents, - pageInfo: { - limit, - offset, - hasPreviousPage, - hasNextPage, - }, - }; - } - - async queryDepositEvent(eventId: number) { - const [event] = await this.databaseConnection.query( - `select - 'deposit' as event_type, - cl._id as event_id, - cl."timestamp", - cl.contract_hash, - cl.block_height, - cl.tx_hash, - cl.decoded_args as decoded_args, - ca."key" - from - indexer.contract_l1_logs cl - join indexer.contract_l1_args ca on ca.contract_l1_log_id = cl._id - where - cl._id = $1 and - ((ca."key" = 'recipient' and (cl.decoded_args->>'amount')::numeric > 0) or (ca."key" = 'data' and (cl.decoded_args->>'amount')::numeric = 0)) - `, - [eventId], - ); - return event; - } - - async queryWithdrawEvent(eventId: number) { - const [event] = await this.databaseConnection.query( - ` - select - 'withdraw' as event_type, - r._id as event_id, - t."timestamp" as timestamp, - t.tx_hash as tx_id, - t.block_id as block_id, - a_c.account_hash as contract_id, - r.receipt_sender as sender, - r.receipt_nonce as nonce, - r.receipt_amount as amount, - r.receipt_recipient as recipient, - r.receipt_data as data - from - indexer.transactions_accounts a_c - join indexer.transactions t on (t.tx_hash = a_c.tx_hash) - join indexer.receipts r on (r.tx_hash = t.tx_hash) - where - r._id = $1 - `, - [eventId], - ); - return event; - } - - async getEvent(eventType: string, eventId: number) { - if (eventType === 'deposit') { - const event = await this.queryDepositEvent(eventId); - const deposit = await this.processDepositEvent( - this.parseDepositEvent(event), - ); - return deposit; - } - if (eventType === 'withdraw') { - const event = await this.queryWithdrawEvent(eventId); - const withdraw = await this.processWithdrawEvent( - this.parseWithdrawEvent(event), - ); - return withdraw; - } - } -} diff --git a/packages/graphql/src/infra/dao/BridgeDAO.types.ts b/packages/graphql/src/infra/dao/BridgeDAO.types.ts deleted file mode 100644 index 0f0a37b9b..000000000 --- a/packages/graphql/src/infra/dao/BridgeDAO.types.ts +++ /dev/null @@ -1,157 +0,0 @@ -export type EventRow = { - event_id: string; - event_type: string; -}; - -export type CommitQueryItem = { - timestamp: Date; - tx_hash: string; - eth_block_height: string; - fuel_block_height: string; - fuel_block_hash: string; - is_finalized: boolean; -}; - -export enum ResponseType { - Withdraw = 'Withdraw', - Deposit = 'Deposit', -} - -export enum WithdrawStatusType { - TransactionSent = 'TransactionSent', - WaitingCommittingToL1 = 'WaitingCommittingToL1', - WaitingFinalization = 'WaitingFinalization', - ReadyToProcessWithdraw = 'ReadyToProcessWithdraw', - Finalized = 'Finalized', -} - -export enum DepositStatusType { - TransactionSent = 'TransactionSent', - WaitingSync = 'WaitingSync', - ReadyToProcessDeposit = 'ReadyToProcessDeposit', - Finalized = 'Finalized', -} - -export type MessageDecoded = { - address: string; - assetId: string; - sender: string; - recipient: string; - amount: string; - decimals: number; -}; - -export type MessageSpent = { - tx_hash: string; - block_height: string; - timestamp: Date; - nonce: string; -}; - -export enum DepositQueryType { - ERC_20 = 'ERC_20', - ETH = 'ETH', -} - -export type DepositEvent = MessageDecoded & { - tx_hash: string; - block_height: string; - timestamp: Date; - nonce: string; - type: DepositQueryType; -}; - -export type WithdrawEvent = { - tx_hash: string; - block_height: string; - timestamp: Date; - data: string; - messageId: string; - sender: string; - recipient: string; - amount: string; - assetId: string; - ethAssetId: string; -}; - -export type WithdrawResponse = { - type: ResponseType.Withdraw; - from: string; - to: string; - amount: string; - assetId: string; - ethAssetId: string; - status: WithdrawStatusType; - statusInfo: { - [WithdrawStatusType.TransactionSent]?: { - fuelTx: { - height: string; - txHash: string; - timestamp: Date; - }; - }; - [WithdrawStatusType.WaitingCommittingToL1]?: { - dateExpectedToComplete: Date; - }; - [WithdrawStatusType.WaitingFinalization]?: { - dateExpectedToComplete: Date; - ethTx: { - height: string; - txHash: string; - timestamp: Date; - }; - }; - [WithdrawStatusType.ReadyToProcessWithdraw]?: { - transactionId: string; - nonce: string; - commitBlockId: string; - commitBlockHeight: string; - }; - [WithdrawStatusType.Finalized]?: { - ethTx: { - height: string; - txHash: string; - timestamp: Date; - }; - }; - }; -}; - -export type DepositResponse = { - type: ResponseType.Deposit; - from: string; - to: string; - amount: string; - assetId: string; - ethAssetId: string; - status: DepositStatusType; - statusInfo: { - [DepositStatusType.TransactionSent]?: { - ethTx: { - height: string; - txHash: string; - timestamp: Date; - }; - }; - [DepositStatusType.WaitingSync]?: { - dateExpectedToComplete: Date; - }; - [DepositStatusType.ReadyToProcessDeposit]?: { - nonce: string; - }; - [DepositStatusType.Finalized]?: {}; - }; -}; - -export type BridgeDepositResponse = EventRow & DepositResponse; -export type BridgeWithdrawResponse = EventRow & WithdrawResponse; -export type BridgeResponse = BridgeDepositResponse | BridgeWithdrawResponse; -export type GraphQLBridgeResponse = { - nodes: BridgeResponse[]; - pageInfo: { - limit: number; - offset: number; - hasPreviousPage: boolean; - hasNextPage: boolean; - }; -}; diff --git a/packages/graphql/src/infra/dao/Contract.ts b/packages/graphql/src/infra/dao/Contract.ts deleted file mode 100644 index 7a6899cb9..000000000 --- a/packages/graphql/src/infra/dao/Contract.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { GQLContract } from '~/graphql/generated/sdk-provider'; - -export default class Contract { - id: number; - contract_hash: string; - data: any; - - constructor(contract: any) { - this.id = contract._id; - this.contract_hash = contract.contract_hash; - this.data = contract.data; - } - - toGQLNode(): GQLContract { - return { - ...this.data, - _id: this.id, - }; - } -} diff --git a/packages/graphql/src/infra/dao/ContractDAO.ts b/packages/graphql/src/infra/dao/ContractDAO.ts deleted file mode 100644 index 462f17d80..000000000 --- a/packages/graphql/src/infra/dao/ContractDAO.ts +++ /dev/null @@ -1,98 +0,0 @@ -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import type PaginatedParams from '../paginator/PaginatedParams'; -import Contract from './Contract'; - -export default class ContractDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getByHash(hash: string) { - const contractData = ( - await this.databaseConnection.query( - ` - select - c.* - from - indexer.contracts c - where - c.contract_hash = $1 - `, - [hash.toLowerCase()], - ) - )[0]; - if (!contractData) return; - const contract = new Contract(contractData); - return contract; - } - - async getPaginatedContracts(paginatedParams: PaginatedParams) { - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - const contractsData = await this.databaseConnection.query( - ` - select - * - from - indexer.contracts c - where - $1::integer is null or c._id ${direction} $1 - order by - c._id ${order} - limit 10 - `, - [paginatedParams.cursor], - ); - contractsData.sort((a: any, b: any) => { - return (a._id - b._id) * -1; - }); - const contracts: Contract[] = []; - for (const contractData of contractsData) { - contracts.push(new Contract(contractData)); - } - if (contracts.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - const startCursor = contractsData[0]._id; - const endCursor = contractsData[contractsData.length - 1]._id; - const hasPreviousPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.contracts where _id < $1)', - [endCursor], - ) - )[0].exists; - const hasNextPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.contracts where _id > $1)', - [startCursor], - ) - )[0].exists; - const newNodes = contracts.map((n) => n.toGQLNode()); - const edges = newNodes.map((node) => ({ - node, - cursor: paginatedParams.cursor, - })); - const paginatedResults = { - nodes: newNodes, - edges, - pageInfo: { - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - return paginatedResults; - } -} diff --git a/packages/graphql/src/infra/dao/CosmosDAO.ts b/packages/graphql/src/infra/dao/CosmosDAO.ts deleted file mode 100644 index 5cdc08aee..000000000 --- a/packages/graphql/src/infra/dao/CosmosDAO.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; - -export default class CosmosDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getCosmosEvents(type: string, key: string, value: string) { - const events = await this.databaseConnection.query( - 'select r.*, e.* from indexer.cosmos_responses r join indexer.cosmos_events e on (e.cosmos_response_id = r._id) where type = $1 and key = $2 and value = $3', - [type, key, value], - ); - return events; - } -} diff --git a/packages/graphql/src/infra/dao/L1DAO.ts b/packages/graphql/src/infra/dao/L1DAO.ts deleted file mode 100644 index 95f0999a2..000000000 --- a/packages/graphql/src/infra/dao/L1DAO.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; - -export default class L1DAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getContractEvent( - contractHash: string, - event: string, - key: string, - value: string, - ) { - const events = await this.databaseConnection.query( - 'select * from indexer.contract_l1_logs l join indexer.contract_l1_args a on (a.contract_l1_log_id = l._id) where contract_hash = $1 and event = $2 and key = $3 and value = $4', - [contractHash, event, key, value], - ); - return events; - } -} diff --git a/packages/graphql/src/infra/dao/Predicate.ts b/packages/graphql/src/infra/dao/Predicate.ts deleted file mode 100644 index ef3a24a99..000000000 --- a/packages/graphql/src/infra/dao/Predicate.ts +++ /dev/null @@ -1,18 +0,0 @@ -export default class Predicate { - id: number; - address: string; - bytecode: any; - - constructor(predicate: any) { - this.id = predicate._id; - this.address = predicate.address; - this.bytecode = predicate.bytecode; - } - - toGQLNode() { - return { - bytecode: this.bytecode, - address: this.address, - }; - } -} diff --git a/packages/graphql/src/infra/dao/PredicateDAO.ts b/packages/graphql/src/infra/dao/PredicateDAO.ts deleted file mode 100644 index 2c1f3fb24..000000000 --- a/packages/graphql/src/infra/dao/PredicateDAO.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import Predicate from './Predicate'; - -export default class PredicateDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getByAddress(address: string) { - const predicateData = ( - await this.databaseConnection.query( - ` - select - p.* - from - indexer.predicates p - where - p.address = $1 - `, - [address.toLowerCase()], - ) - )[0]; - if (!predicateData) return; - const predicate = new Predicate(predicateData); - return predicate; - } -} diff --git a/packages/graphql/src/infra/dao/StakingDAO.ts b/packages/graphql/src/infra/dao/StakingDAO.ts deleted file mode 100644 index 7a556f36c..000000000 --- a/packages/graphql/src/infra/dao/StakingDAO.ts +++ /dev/null @@ -1,1620 +0,0 @@ -import { fuelsequencer } from '@fuel-infrastructure/fuelsequencerjs'; -import { MsgWithdrawDelegatorReward } from '@fuel-infrastructure/fuelsequencerjs/dist/codegen/cosmos/distribution/v1beta1/tx'; -import { - MsgBeginRedelegate, - MsgDelegate, - MsgUndelegate, -} from '@fuel-infrastructure/fuelsequencerjs/dist/codegen/cosmos/staking/v1beta1/tx'; -import { MsgWithdrawToEthereum } from '@fuel-infrastructure/fuelsequencerjs/dist/codegen/fuelsequencer/bridge/v1/tx'; -import dayjs from 'dayjs'; -import { ethers } from 'ethers'; -import { arrayify } from 'fuels'; -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import type PaginatedParams from '../paginator/PaginatedParams'; -import { convertEthAddressToSequencerUserAddress } from '../util/util'; -import { - BaseStatusType, - type ClaimRewardsResponse, - type CommitQueryItem, - type ComosTx, - type DelegateResponse, - type ProccessedWithdrawQueryItem, - type QueryItem, - type RedelegateResponse, - ResponseType, - type SequencerEventItem, - type UndelegateEvent, - type UndelegateResponse, - UndelegateStatusType, - type WithdrawEvent, - type WithdrawResponse, - WithdrawStatusType, -} from './StakingDAO.types'; -import { getTimeToFinalize } from './TEMP_StakingDAO'; - -// Time to synchronize in sequencer (minutes) -const TIME_TO_SYNCHRONIZE_IN_SEQUENCER = 30; - -// Time to commit to L1 (hours) -const TIME_TO_COMMIT_SEQUENCER_BLOCK_TO_L1 = 8; - -enum DecodersTypes { - MsgWithdrawToEthereum = '/fuelsequencer.bridge.v1.MsgWithdrawToEthereum', - MsgDelegate = '/cosmos.staking.v1beta1.MsgDelegate', - MsgUndelegate = '/cosmos.staking.v1beta1.MsgUndelegate', - MsgBeginRedelegate = '/cosmos.staking.v1beta1.MsgBeginRedelegate', - MsgWithdrawDelegatorReward = '/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward', -} - -const decodersMapping = { - [DecodersTypes.MsgWithdrawToEthereum]: MsgWithdrawToEthereum, - [DecodersTypes.MsgDelegate]: MsgDelegate, - [DecodersTypes.MsgUndelegate]: MsgUndelegate, - [DecodersTypes.MsgBeginRedelegate]: MsgBeginRedelegate, - [DecodersTypes.MsgWithdrawDelegatorReward]: MsgWithdrawDelegatorReward, -} as const; -type Param = ReturnType< - (typeof decodersMapping)[T]['decode'] ->; - -function normalizeCosmosQueryResponse( - items: Array, - preferredEventType?: string, -): Array> { - // Combine events with same event_index and same event_type - const tryParse = (value: string) => { - try { - if (typeof value !== 'string') return value; - return JSON.parse(value); - } catch (_error) { - return value; - } - }; - const result: Record> = {}; - for (const item of items) { - result[item.tx_hash] = result[item.tx_hash] || { - height: item.block_height, - txHash: item.tx_hash, - timestamp: item.timestamp, - id: item.id, - events: [], - }; - result[item.tx_hash].events[item.event_index] = { - ...result[item.tx_hash].events[item.event_index], - type: item.event_type, - [item.event_key]: tryParse(item.event_value), - }; - } - - return Object.values(result).map((tx) => { - const events = tx.events.filter((e) => !!e); - - // If a preferred event type is specified, filter events to only include that type - // and set the 'event' property to the first event of that type - if (preferredEventType) { - const filteredEvents = events.filter( - (e) => (e as any).type === preferredEventType, - ); - return { - ...tx, - events: filteredEvents, - event: filteredEvents.length > 0 ? filteredEvents[0] : events[0], - }; - } - - return { - ...tx, - events, - event: events[0], - }; - }); -} - -function getValidAddress(address: string) { - try { - return ethers.getAddress(address); - } catch (_error) { - throw new Error( - 'Invalid address format, expected a valid Ethereum address', - ); - } -} - -export default class StakingDAO { - databaseConnection: DatabaseConnectionReplica; - private singleQueryCounter = 0; - private batchQueryCounter = 0; - private skippedQueryCounter = 0; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - // Method to get and reset counters for logging - getQueryCounters() { - const counters = { - singleQueries: this.singleQueryCounter, - batchQueries: this.batchQueryCounter, - skippedQueries: this.skippedQueryCounter, - }; - return counters; - } - - // Reset counters for next set of operations - resetQueryCounters() { - this.singleQueryCounter = 0; - this.batchQueryCounter = 0; - this.skippedQueryCounter = 0; - } - - averageTimeDifferenceInSeconds(dates: Date[]) { - if (dates.length < 2) return 0; - const timestamps = dates - .map((date) => date.getTime()) - .sort((a, b) => b - a); - let totalDiff = 0; - for (let i = 1; i < timestamps.length; i++) { - totalDiff += timestamps[i - 1] - timestamps[i]; - } - const avgDiffInMilliseconds = totalDiff / (timestamps.length - 1); - return avgDiffInMilliseconds / 1000; - } - - async getLastCommittedBlock(): Promise< - CommitQueryItem & { commit_period: number } - > { - const blocks = await this.databaseConnection.query( - `SELECT - ca.value as cosmos_block_number, - cl."timestamp" as timestamp, - cl.tx_hash as tx_hash, - cl.block_height as eth_block_height - FROM - indexer.contract_l1_logs cl - JOIN - indexer.contract_l1_args ca - ON ca.contract_l1_log_id = cl._id - AND ca."key" = 'blockNumber' - ORDER BY - cl."timestamp" desc - LIMIT 10`, - [], - ); - const diff = this.averageTimeDifferenceInSeconds( - blocks.map((block) => block.timestamp), - ); - return { - commit_period: diff, - timestamp: blocks[0].timestamp, - tx_hash: blocks[0].tx_hash, - eth_block_height: blocks[0].eth_block_height, - cosmos_block_number: blocks[0].cosmos_block_number, - }; - } - - async blockIsSynced(blockHeight: number) { - const [blockIsSynced] = await this.databaseConnection.query( - `SELECT - cr.block_height as block_height - FROM - indexer.cosmos_events ce2 - JOIN indexer.cosmos_responses cr ON cr._id = ce2.cosmos_response_id - WHERE - ce2."type" = 'fuelsequencer.bridge.EventEthereumBlockSynced' - AND ce2."key" = 'block_number' - AND CAST(TRIM(BOTH '"' FROM ce2."value") AS INT) > $1 - LIMIT 1`, - [blockHeight], - ); - return blockIsSynced ? blockIsSynced.block_height > 0 : false; - } - - async cosmos_queryEvents( - blockHeight: number, - eventsQuery: Array<{ - type: string; - key: string; - value: string; - }>, - ) { - // Increment counter for single queries - this.singleQueryCounter++; - - // console.log( - // `[StakingDAO] Querying SINGLE block ${blockHeight} with ${eventsQuery.length} event queries (Total single queries: ${this.singleQueryCounter})`, - // ); - - const whereClause = eventsQuery - .map( - (eventQuery) => ` - ( - ce3."type" = '${eventQuery.type}' - AND ce3."key" = '${eventQuery.key}' - AND LOWER(ce3."value") = LOWER('${eventQuery.value}') - )`, - ) - .join(' OR '); - const whereClauseType = eventsQuery - .map((eventQuery) => `ce."type" = '${eventQuery.type}'`) - .join(' OR '); - const events: Array = await this.databaseConnection.query( - `SELECT - cr._id AS id, - cr.tx_hash AS tx_hash, - cr.block_height AS block_height, - cr.timestamp AS timestamp, - ce.index AS event_index, - ce.type AS event_type, - ce.key AS event_key, - ce.value AS event_value - FROM - indexer.cosmos_responses cr - JOIN - indexer.cosmos_events ce - ON ce.cosmos_response_id = cr._id - AND ( - ${whereClauseType} - ) - WHERE - cr.block_height IN ( - SELECT - cr.block_height - FROM - indexer.cosmos_events ce2 - JOIN - indexer.cosmos_responses cr - ON cr._id = ce2.cosmos_response_id - WHERE - ce2."type" = 'fuelsequencer.bridge.EventEthereumBlockSynced' - AND ce2."key" = 'block_number' - AND ce2."value" = $1 - ) - AND cr._id IN ( - SELECT - ce3.cosmos_response_id - FROM - indexer.cosmos_events ce3 - WHERE - ${whereClause} - ) - ORDER BY cr._id, ce.index`, - [`"${blockHeight}"`], - ); - - if (events.length === 0) { - return []; - } - - // Pass the preferred event type when there's only one query type - const preferredEventType = - eventsQuery.length === 1 ? eventsQuery[0].type : undefined; - return normalizeCosmosQueryResponse(events, preferredEventType); - } - - async cosmos_queryEventsMultipleBlocks( - blockHeights: number[], - eventsQueries: Array<{ - type: string; - key: string; - value: string; - queryId?: string; // Optional identifier to distinguish between different queries - }>, - ) { - // Increment counter for batch queries - this.batchQueryCounter++; - - // console.log( - // `[StakingDAO] Querying MULTIPLE blocks (${blockHeights.length} blocks) with ${eventsQueries.length} event queries (Total batch queries: ${this.batchQueryCounter})`, - // ); - - if (blockHeights.length === 0 || eventsQueries.length === 0) { - return {}; - } - - const whereClause = eventsQueries - .map( - (eventQuery) => ` - ( - ce3."type" = '${eventQuery.type}' - AND ce3."key" = '${eventQuery.key}' - AND LOWER(ce3."value") = LOWER('${eventQuery.value}') - )`, - ) - .join(' OR '); - - // Create placeholders for block heights with proper formatting - const blockHeightsPlaceholders = blockHeights - .map((_, index) => `$${index + 1}`) - .join(','); - const blockHeightsValues = blockHeights.map((height) => `"${height}"`); - - // First, get all cosmos blocks associated with the Ethereum blocks - const ethToCosmosBlocks: Record = {}; - - // Initialize with empty arrays for each Ethereum block - for (const blockHeight of blockHeights) { - ethToCosmosBlocks[blockHeight] = []; - } - - // Query for all cosmos blocks that contain these Ethereum blocks - const cosmosBlocksForEthBlocks = await this.databaseConnection.query( - `SELECT DISTINCT - cr.block_height AS cosmos_block_height, - CAST(TRIM(BOTH '"' FROM ce2.value) AS INT) AS eth_block_height - FROM - indexer.cosmos_responses cr - JOIN - indexer.cosmos_events ce2 - ON ce2.cosmos_response_id = cr._id - AND ce2."type" = 'fuelsequencer.bridge.EventEthereumBlockSynced' - AND ce2."key" = 'block_number' - AND ce2."value" IN (${blockHeightsPlaceholders}) - ORDER BY cr.block_height`, - blockHeightsValues, - ); - - // Populate the mapping - for (const mapping of cosmosBlocksForEthBlocks) { - const ethBlock = mapping.eth_block_height; - const cosmosBlock = mapping.cosmos_block_height; - - if (!ethToCosmosBlocks[ethBlock]) { - ethToCosmosBlocks[ethBlock] = []; - } - - ethToCosmosBlocks[ethBlock].push(cosmosBlock); - } - - // Log the relationship between Ethereum and Cosmos blocks - // console.log( - // '[StakingDAO] Ethereum->Cosmos block mappings:', - // Object.entries(ethToCosmosBlocks) - // .map(([eth, cosmos]) => `${eth}->[${cosmos.join(', ')}]`) - // .join('; '), - // ); - - // Now query for all the cosmos_response_ids that match our event types - // For each of the cosmos blocks we found above - const cosmosBlocks = Object.values(ethToCosmosBlocks).flat(); - - if (cosmosBlocks.length === 0) { - // console.log( - // '[StakingDAO] No cosmos blocks found for the ethereum blocks', - // ); - return {}; - } - - const cosmosBlocksPlaceholders = cosmosBlocks - .map((_, index) => `$${index + 1}`) - .join(','); - - const matchedResponseIds = await this.databaseConnection.query( - `SELECT DISTINCT - cr._id AS response_id, - cr.block_height AS cosmos_block_height, - ce3.type AS event_type, - CASE - ${eventsQueries - .map( - (eq) => - `WHEN ce3."type" = '${eq.type}' AND ce3."key" = '${eq.key}' THEN '${eq.queryId || eq.type}'`, - ) - .join('\n ')} - END AS query_type - FROM - indexer.cosmos_responses cr - JOIN - indexer.cosmos_events ce3 - ON ce3.cosmos_response_id = cr._id - AND (${whereClause}) - WHERE - cr.block_height IN (${cosmosBlocksPlaceholders}) - ORDER BY cr._id`, - cosmosBlocks, - ); - - if (matchedResponseIds.length === 0) { - // console.log('[StakingDAO] No matching events found in cosmos blocks'); - return {}; - } - - // Group response IDs by query type and store event types - const responseIdsByQueryType: Record< - string, - { ids: number[]; eventType: string } - > = {}; - - // Create a reverse mapping from cosmos blocks to ethereum blocks - const cosmosToEthBlocks: Record = {}; - - // Build the reverse mapping - for (const [ethBlock, cosmosBlocks] of Object.entries(ethToCosmosBlocks)) { - const ethNum = Number.parseInt(ethBlock, 10); - for (const cosmosBlock of cosmosBlocks) { - if (!cosmosToEthBlocks[cosmosBlock]) { - cosmosToEthBlocks[cosmosBlock] = []; - } - cosmosToEthBlocks[cosmosBlock].push(ethNum); - } - } - - // Process each matched response - for (const match of matchedResponseIds) { - if (match.query_type) { - // Store response info by query type - responseIdsByQueryType[match.query_type] = responseIdsByQueryType[ - match.query_type - ] || { - ids: [], - eventType: match.event_type, - }; - responseIdsByQueryType[match.query_type].ids.push(match.response_id); - } - } - - // Now fetch ALL events for these response IDs, not just the ones matching our criteria - const result: Record = {}; - - for (const [queryType, queryData] of Object.entries( - responseIdsByQueryType, - )) { - if (queryData.ids.length === 0) continue; - - const idPlaceholders = queryData.ids - .map((_, idx) => `$${idx + 1}`) - .join(','); - - const events: Array = await this.databaseConnection.query( - `SELECT - cr._id AS id, - cr.tx_hash AS tx_hash, - cr.block_height AS block_height, - cr.timestamp AS timestamp, - ce.index AS event_index, - ce.type AS event_type, - ce.key AS event_key, - ce.value AS event_value - FROM - indexer.cosmos_responses cr - JOIN - indexer.cosmos_events ce - ON ce.cosmos_response_id = cr._id - WHERE - cr._id IN (${idPlaceholders}) - ORDER BY cr._id, ce.index`, - queryData.ids, - ); - - if (events.length > 0) { - // Pass the preferred event type to normalizeCosmosQueryResponse - result[queryType] = normalizeCosmosQueryResponse( - events, - queryData.eventType, - ); - } else { - result[queryType] = []; - } - } - - // Add the mappings to the result - result.__ethToCosmosBlocks = ethToCosmosBlocks; - result.__cosmosToEthBlocks = cosmosToEthBlocks; - - return result; - } - - async processEvent( - address: string, - event: any, - prefetchedData?: { - withdrawEvents: ComosTx[]; - delegateEvents: ComosTx[]; - undelegateEvents: ComosTx[]; - withdrawRewardsEvents: ComosTx[]; - redelegateEvents: ComosTx[]; - lastCommittedBlock: CommitQueryItem & { commit_period: number }; - contractTimeToFinalizeInMinutes: number; - }, - ) { - const finalHistory: any[] = []; - - // Create a flexible mapping to handle different event signatures - const eventProcessingMap: Array<{ - type: string; - data: any; - }> = []; - - // Handle different event signatures - switch (event.signature) { - case 'Authorize(address,bytes)': { - const bytes = arrayify(event.decoded_args.data); - const eventDecoded = fuelsequencer.bridge.AuthorizeTx.decode(bytes); - - // For Authorize events, decode messages immediately and add to processing map - for (const message of eventDecoded.messages) { - let decodedData; - switch (message.typeUrl) { - case DecodersTypes.MsgDelegate: - decodedData = MsgDelegate.decode(message.value); - break; - case DecodersTypes.MsgUndelegate: - decodedData = MsgUndelegate.decode(message.value); - break; - case DecodersTypes.MsgBeginRedelegate: - decodedData = MsgBeginRedelegate.decode(message.value); - break; - case DecodersTypes.MsgWithdrawDelegatorReward: - decodedData = MsgWithdrawDelegatorReward.decode(message.value); - break; - case DecodersTypes.MsgWithdrawToEthereum: - decodedData = MsgWithdrawToEthereum.decode(message.value); - break; - default: - continue; // Skip unknown message types - } - - eventProcessingMap.push({ - type: message.typeUrl, - data: decodedData, - }); - } - break; - } - case 'Delegate(address,address,uint256)': { - eventProcessingMap.push({ - type: DecodersTypes.MsgDelegate, - data: { - delegatorAddress: event.decoded_args.delegator, - validatorAddress: event.decoded_args.validator, - amount: { - amount: event.decoded_args.amount, - }, - }, - }); - break; - } - case 'Redelegate(address,address,address,uint256)': { - eventProcessingMap.push({ - type: DecodersTypes.MsgBeginRedelegate, - data: { - delegatorAddress: event.decoded_args.delegator, - validatorSrcAddress: event.decoded_args.srcValidator, - validatorDstAddress: event.decoded_args.dstValidator, - amount: { - amount: event.decoded_args.amount, - }, - }, - }); - break; - } - case 'ClaimRewards(address,address)': { - eventProcessingMap.push({ - type: DecodersTypes.MsgWithdrawDelegatorReward, - data: { - delegatorAddress: event.decoded_args.delegator, - validatorAddress: event.decoded_args.validator, - }, - }); - break; - } - case 'Unbond(address,address,uint256)': { - eventProcessingMap.push({ - type: DecodersTypes.MsgUndelegate, - data: { - delegatorAddress: event.decoded_args.delegator, - validatorAddress: event.decoded_args.validator, - amount: { - amount: event.decoded_args.amount, - }, - }, - }); - break; - } - case 'Withdraw(address,address,uint256)': { - eventProcessingMap.push({ - type: DecodersTypes.MsgWithdrawToEthereum, - data: { - from: event.decoded_args.sender, - to: event.decoded_args.recipient, - amount: { - amount: event.decoded_args.amount, - }, - }, - }); - break; - } - default: - console.log(`Unknown event signature: ${event.signature}`); - return finalHistory; - } - - // Process each item in the mapping - for (const item of eventProcessingMap) { - switch (item.type) { - case DecodersTypes.MsgDelegate: { - finalHistory.push( - await this.createDelegateHistory( - address, - event, - item.data, - prefetchedData?.delegateEvents, - ), - ); - break; - } - case DecodersTypes.MsgUndelegate: { - finalHistory.push( - await this.createUndelegateHistory( - address, - event, - item.data, - prefetchedData?.undelegateEvents, - ), - ); - break; - } - case DecodersTypes.MsgBeginRedelegate: { - finalHistory.push( - await this.createRedelegateHistory( - address, - event, - item.data, - prefetchedData?.redelegateEvents, - ), - ); - break; - } - case DecodersTypes.MsgWithdrawDelegatorReward: { - finalHistory.push( - await this.createClaimRewardsHistory( - address, - event, - item.data, - prefetchedData?.withdrawRewardsEvents, - ), - ); - break; - } - case DecodersTypes.MsgWithdrawToEthereum: { - finalHistory.push( - await this.createWithdrawHistory( - address, - event, - item.data, - prefetchedData?.withdrawEvents, - prefetchedData?.lastCommittedBlock, - prefetchedData?.contractTimeToFinalizeInMinutes, - ), - ); - break; - } - } - } - return finalHistory; - } - - async createWithdrawHistory( - address: string, - event: SequencerEventItem, - withdraw: Param, - prefetchedWithdrawEvents?: ComosTx[], - prefetchedLastCommittedBlock?: CommitQueryItem & { commit_period: number }, - prefetchedContractTimeToFinalizeInMinutes?: number, - ): Promise { - const contractTimeToFinalizeInMinutes = - prefetchedContractTimeToFinalizeInMinutes || (await getTimeToFinalize()); - - const data: WithdrawResponse = { - id: event._id, - type: ResponseType.Withdraw, - from: withdraw.from, - to: withdraw.to, - amount: withdraw.amount.amount, - status: BaseStatusType.WaitingSync, - timestampToFinish: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .add(TIME_TO_COMMIT_SEQUENCER_BLOCK_TO_L1, 'hours') - .add(contractTimeToFinalizeInMinutes, 'minutes') - .toDate() - .toISOString(), - statusInfo: { - [BaseStatusType.TransactionSent]: { - ethTx: { - height: event.block_height.toString(), - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [BaseStatusType.WaitingSync]: { - dateExpectedToComplete: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate(), - }, - }, - }; - - // Use prefetched events if available, otherwise query the database - let withdrawEvents: ComosTx[] = []; - if (prefetchedWithdrawEvents) { - this.skippedQueryCounter++; - // console.log( - // `[StakingDAO] SKIPPING single cosmos_queryEvents call - using prefetched data for withdraw event at block ${event.block_height} (Total skipped: ${this.skippedQueryCounter})`, - // ); - withdrawEvents = prefetchedWithdrawEvents; - } else { - // console.log( - // `[StakingDAO] NO prefetched data available - making single cosmos_queryEvents call for withdraw event at block ${event.block_height}`, - // ); - withdrawEvents = await this.cosmos_queryEvents( - event.block_height, - [ - { - key: 'from', - type: 'fuelsequencer.bridge.EventWithdrawToEthereumReported', - value: `"${address.toLowerCase()}"`, - }, - ], - ); - } - - // Transaction sent but not synced with sequencer - if (withdrawEvents.length === 0) { - const blockIsSynced = await this.blockIsSynced(event.block_height); - if (blockIsSynced) { - data.status = BaseStatusType.Skipped; - data.statusInfo[BaseStatusType.Skipped] = { - message: - 'Event was sent but not synced with sequencer due to be invalid', - }; - } - return data; - } - - // TODO: once we treat multiple events per tx, we need to find the right one - const lastestCommittedBlock = - prefetchedLastCommittedBlock || (await this.getLastCommittedBlock()); - const withdrawSequencerTX = withdrawEvents[0]; - - // updates previous status with the tx that completed it - data.statusInfo[BaseStatusType.WaitingSync] = { - ...data.statusInfo[BaseStatusType.WaitingSync], - sequencerTx: { - height: withdrawSequencerTX.height, - txHash: withdrawSequencerTX.txHash, - timestamp: withdrawSequencerTX.timestamp, - }, - }; - - // move to new status and update its information - data.status = WithdrawStatusType.WaitingCommittingToL1; - data.statusInfo[WithdrawStatusType.WaitingCommittingToL1] = { - dateExpectedToComplete: dayjs(lastestCommittedBlock.timestamp) - .add(lastestCommittedBlock.commit_period, 'seconds') - .toDate(), - }; - - // Ensure that the event property contains the expected values - if (withdrawSequencerTX.event && 'nonce' in withdrawSequencerTX.event) { - data.nonce = withdrawSequencerTX.event.nonce; - } - - // now that sequencer computed the initial ethTx, we can more precisely estimate the time to finalize - data.timestampToFinish = dayjs(withdrawSequencerTX.timestamp) - .add(lastestCommittedBlock.commit_period, 'seconds') - .add(contractTimeToFinalizeInMinutes, 'minutes') - .toDate() - .toISOString(); - - const blockCommmiteds: Array = - await this.databaseConnection.query( - `SELECT - ca.value as cosmos_block_number, - cl."timestamp" as timestamp, - cl.tx_hash as tx_hash, - cl.block_height as eth_block_height - FROM - indexer.contract_l1_logs cl - JOIN - indexer.contract_l1_args ca - ON ca.contract_l1_log_id = cl._id - AND ca."key" = 'blockNumber' - AND CAST(ca."value" AS INT) >= $1 - ORDER BY cl."timestamp" ASC - LIMIT 1`, - [withdrawSequencerTX.height], - ); - const [blockCommited] = blockCommmiteds; - if (blockCommmiteds.length === 0) { - return data; - } - - // updates previous status with the tx that completed it - data.statusInfo[WithdrawStatusType.WaitingCommittingToL1] = { - ethTx: { - height: blockCommited.eth_block_height, - txHash: blockCommited.tx_hash, - timestamp: blockCommited.timestamp, - }, - }; - - // move to new status and update its information - data.status = WithdrawStatusType.WaitingFinalization; - data.statusInfo[WithdrawStatusType.WaitingFinalization] = { - dateExpectedToComplete: dayjs(blockCommited.timestamp) - .add(contractTimeToFinalizeInMinutes, 'minutes') - .toDate(), - }; - - // now that sequencer block is commited to L1, we can more precisely estimate the time to finalize - data.timestampToFinish = dayjs(blockCommited.timestamp) - .add(contractTimeToFinalizeInMinutes, 'minutes') - .toDate() - .toISOString(); - - // Check if the finalization period has passed based on timestampToFinish - if (dayjs().isAfter(dayjs(data.timestampToFinish))) { - // move to new status and update its information - data.status = WithdrawStatusType.ReadyToProcessWithdraw; - data.statusInfo[WithdrawStatusType.ReadyToProcessWithdraw] = { - proof: `fetch-proof?nonce=${data.nonce}`, - }; - } - - const [withdrawFinalized]: Array = - await this.databaseConnection.query( - `select - cl.block_height as block_height, - cl."timestamp" as timestamp, - cl.tx_hash as tx_hash - from - indexer.contract_l1_logs cl - join - indexer.contract_l1_args ca - ON ca.contract_l1_log_id = cl._id - AND ca."key" = 'nonce' - AND ca."value" = $1 - where - event = 'WithdrawalProcessed'`, - [data.nonce], - ); - - if (withdrawFinalized) { - // updates previous status with the tx that completed it - data.statusInfo[WithdrawStatusType.ReadyToProcessWithdraw] = { - ...data.statusInfo[WithdrawStatusType.ReadyToProcessWithdraw], - ethTx: { - height: withdrawFinalized.block_height, - txHash: withdrawFinalized.tx_hash, - timestamp: withdrawFinalized.timestamp, - }, - }; - - // move to new status and update its information - data.status = BaseStatusType.Finalized; - data.statusInfo[BaseStatusType.Finalized] = {}; - } - - return data; - } - - async createDelegateHistory( - address: string, - event: SequencerEventItem, - delegate: Param, - prefetchedDelegateEvents?: ComosTx[], - ): Promise { - const data: DelegateResponse = { - id: event._id, - type: ResponseType.Stake, - from: delegate.delegatorAddress, - amount: delegate.amount.amount, - validator: delegate.validatorAddress, - status: BaseStatusType.WaitingSync, - timestampToFinish: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate() - .toISOString(), - statusInfo: { - [BaseStatusType.TransactionSent]: { - ethTx: { - height: event.block_height.toString(), - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [BaseStatusType.WaitingSync]: { - dateExpectedToComplete: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate(), - }, - }, - }; - - // Use prefetched events if available, otherwise query the database - let delegateTX; - if (prefetchedDelegateEvents && prefetchedDelegateEvents.length > 0) { - this.skippedQueryCounter++; - // console.log( - // `[StakingDAO] SKIPPING single cosmos_queryEvents call - using prefetched data for delegate event at block ${event.block_height} (Total skipped: ${this.skippedQueryCounter})`, - // ); - delegateTX = prefetchedDelegateEvents[0]; - } else { - // console.log( - // `[StakingDAO] NO prefetched data available - making single cosmos_queryEvents call for delegate event at block ${event.block_height}`, - // ); - [delegateTX] = await this.cosmos_queryEvents(event.block_height, [ - { - key: 'delegator', - type: 'delegate', - value: address.toLowerCase(), - }, - ]); - } - - if (!delegateTX) { - const blockIsSynced = await this.blockIsSynced(event.block_height); - if (blockIsSynced) { - data.status = BaseStatusType.Skipped; - data.statusInfo[BaseStatusType.Skipped] = { - message: - 'Event was sent but not synced with sequencer due to be invalid', - }; - } - return data; - } - - // updates previous status with the tx that completed it - data.statusInfo[BaseStatusType.WaitingSync] = { - ...data.statusInfo[BaseStatusType.WaitingSync], - sequencerTx: { - height: delegateTX.height, - txHash: delegateTX.txHash, - timestamp: delegateTX.timestamp, - }, - }; - - // move to new status and update its information - data.status = BaseStatusType.Finalized; - data.statusInfo[BaseStatusType.Finalized] = {}; - return data; - } - - async createRedelegateHistory( - address: string, - event: SequencerEventItem, - delegate: Param, - prefetchedRedelegateEvents?: ComosTx[], - ): Promise { - const data: RedelegateResponse = { - id: event._id, - type: ResponseType.ReDelegate, - from: delegate.delegatorAddress, - amount: delegate.amount.amount, - toValidator: delegate.validatorDstAddress, - fromValidator: delegate.validatorSrcAddress, - timestampToFinish: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate() - .toISOString(), - status: BaseStatusType.WaitingSync, - statusInfo: { - [BaseStatusType.TransactionSent]: { - ethTx: { - height: event.block_height.toString(), - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [BaseStatusType.WaitingSync]: { - dateExpectedToComplete: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate(), - }, - }, - }; - - const sequencerAddress = convertEthAddressToSequencerUserAddress(address); - - // Use prefetched events if available, otherwise query the database - let redelegateTX; - if (prefetchedRedelegateEvents && prefetchedRedelegateEvents.length > 0) { - this.skippedQueryCounter++; - // console.log( - // `[StakingDAO] SKIPPING single cosmos_queryEvents call - using prefetched data for redelegate event at block ${event.block_height} (Total skipped: ${this.skippedQueryCounter})`, - // ); - // Note: For redelegate, we check the tx hash rather than delegate type - const txHash = - data.statusInfo[BaseStatusType.TransactionSent]?.ethTx?.txHash || ''; - redelegateTX = prefetchedRedelegateEvents.find( - (evt) => evt.txHash === txHash, - ); - } else { - // console.log( - // `[StakingDAO] NO prefetched data available - making single cosmos_queryEvents call for redelegate event at block ${event.block_height}`, - // ); - [redelegateTX] = await this.cosmos_queryEvents(event.block_height, [ - { - type: 'redelegate', - key: 'destination_validator', - value: delegate.validatorDstAddress, - }, - { - type: 'withdraw_rewards', - key: 'delegator', - value: sequencerAddress!, - }, - ]); - } - - if (!redelegateTX) { - const blockIsSynced = await this.blockIsSynced(event.block_height); - if (blockIsSynced) { - data.status = BaseStatusType.Skipped; - data.statusInfo[BaseStatusType.Skipped] = { - message: - 'Event was sent but not synced with sequencer due to be invalid', - }; - } - return data; - } - - // updates previous status with the tx that completed it - data.statusInfo[BaseStatusType.WaitingSync] = { - ...data.statusInfo[BaseStatusType.WaitingSync], - sequencerTx: { - height: redelegateTX.height, - txHash: redelegateTX.txHash, - timestamp: redelegateTX.timestamp, - }, - }; - - // move to new status and update its information - data.status = BaseStatusType.Finalized; - data.statusInfo[BaseStatusType.Finalized] = {}; - - return data; - } - - async createClaimRewardsHistory( - address: string, - event: SequencerEventItem, - claimRewards: Param, - prefetchedWithdrawRewardsEvents?: ComosTx[], - ): Promise { - const data: ClaimRewardsResponse = { - id: event._id, - type: ResponseType.ClaimRewards, - from: claimRewards.delegatorAddress, - validator: claimRewards.validatorAddress, - timestampToFinish: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate() - .toISOString(), - status: BaseStatusType.WaitingSync, - statusInfo: { - [BaseStatusType.TransactionSent]: { - ethTx: { - height: event.block_height.toString(), - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [BaseStatusType.WaitingSync]: { - dateExpectedToComplete: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate(), - }, - }, - }; - - const sequencerAddress = convertEthAddressToSequencerUserAddress(address); - - // Use prefetched events if available, otherwise query the database - let claimRewardsTX; - if ( - prefetchedWithdrawRewardsEvents && - prefetchedWithdrawRewardsEvents.length > 0 - ) { - this.skippedQueryCounter++; - // console.log( - // `[StakingDAO] SKIPPING single cosmos_queryEvents call - using prefetched data for claim rewards event at block ${event.block_height} (Total skipped: ${this.skippedQueryCounter})`, - // ); - claimRewardsTX = prefetchedWithdrawRewardsEvents[0]; - } else { - // console.log( - // `[StakingDAO] NO prefetched data available - making single cosmos_queryEvents call for claim rewards event at block ${event.block_height}`, - // ); - [claimRewardsTX] = await this.cosmos_queryEvents(event.block_height, [ - { - type: 'withdraw_rewards', - key: 'delegator', - value: sequencerAddress!, - }, - ]); - } - - if (!claimRewardsTX) { - const blockIsSynced = await this.blockIsSynced(event.block_height); - if (blockIsSynced) { - data.status = BaseStatusType.Skipped; - data.statusInfo[BaseStatusType.Skipped] = { - message: - 'Event was sent but not synced with sequencer due to be invalid', - }; - } - return data; - } - - // updates previous status with the tx that completed it - data.statusInfo[BaseStatusType.WaitingSync] = { - ...data.statusInfo[BaseStatusType.WaitingSync], - sequencerTx: { - height: claimRewardsTX.height, - txHash: claimRewardsTX.txHash, - timestamp: claimRewardsTX.timestamp, - }, - }; - - // move to new status and update its information - data.status = BaseStatusType.Finalized; - data.statusInfo[BaseStatusType.Finalized] = {}; - - return data; - } - - async createUndelegateHistory( - address: string, - event: SequencerEventItem, - undelegate: Param, - prefetchedUndelegateEvents?: ComosTx[], - ): Promise { - const data: UndelegateResponse = { - id: event._id, - type: ResponseType.Undelegate, - from: undelegate.delegatorAddress, - amount: undelegate.amount.amount, - validator: undelegate.validatorAddress, - timestampToFinish: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate() - .toISOString(), - status: BaseStatusType.WaitingSync, - statusInfo: { - [BaseStatusType.TransactionSent]: { - ethTx: { - height: event.block_height.toString(), - txHash: event.tx_hash, - timestamp: event.timestamp, - }, - }, - [BaseStatusType.WaitingSync]: { - dateExpectedToComplete: dayjs(event.timestamp) - .add(TIME_TO_SYNCHRONIZE_IN_SEQUENCER, 'minutes') - .toDate(), - }, - }, - }; - - // Use prefetched events if available, otherwise query the database - let undelegateTX; - if (prefetchedUndelegateEvents && prefetchedUndelegateEvents.length > 0) { - this.skippedQueryCounter++; - // console.log( - // `[StakingDAO] SKIPPING single cosmos_queryEvents call - using prefetched data for undelegate event at block ${event.block_height} (Total skipped: ${this.skippedQueryCounter})`, - // ); - undelegateTX = prefetchedUndelegateEvents[0]; - } else { - // console.log( - // `[StakingDAO] NO prefetched data available - making single cosmos_queryEvents call for undelegate event at block ${event.block_height}`, - // ); - [undelegateTX] = await this.cosmos_queryEvents( - event.block_height, - [ - { - type: 'unbond', - key: 'delegator', - value: address.toLowerCase(), - }, - ], - ); - } - - if (!undelegateTX) { - const blockIsSynced = await this.blockIsSynced(event.block_height); - if (blockIsSynced) { - data.status = BaseStatusType.Skipped; - data.statusInfo[BaseStatusType.Skipped] = { - message: - 'Event was sent but not synced with sequencer due to be invalid', - }; - } - return data; - } - - // updates previous status with the tx that completed it - data.statusInfo[BaseStatusType.WaitingSync] = { - ...data.statusInfo[BaseStatusType.WaitingSync], - sequencerTx: { - height: undelegateTX.height, - txHash: undelegateTX.txHash, - timestamp: undelegateTX.timestamp, - }, - }; - - // move to new status and update its information - data.status = UndelegateStatusType.WaitingUnbonding; - const dateToComplete = dayjs(undelegateTX.event.completion_time).toDate(); - data.statusInfo[UndelegateStatusType.WaitingUnbonding] = { - dateExpectedToComplete: dateToComplete, - }; - - // now that sequencer computed the initial ethTx, we can more precisely estimate the time to finalize unbondiong - data.timestampToFinish = dateToComplete.toISOString(); - - if (dayjs(undelegateTX.event.completion_time).isBefore(Date.now())) { - data.status = BaseStatusType.Finalized; - data.statusInfo[BaseStatusType.Finalized] = {}; - } - - return data; - } - - async eth_queryEvents( - address: string, - paginatedParams: PaginatedParams, - ): Promise { - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - const events: Array = - await this.databaseConnection.query( - `select - log.tx_hash, - log.signature, - log._id, - log.block_height, - log.decoded_args, - log.timestamp - from - indexer.contract_l1_logs log - where - ( - ( - log._id in ( - select - distinct contract_l1_log_id - from - indexer.contract_l1_args - where - key = 'sender' and - value = $1 - ) and - signature IN ('Authorize(address,bytes)', 'Withdraw(address,address,uint256)') - ) OR - ( - log._id in ( - select - distinct contract_l1_log_id - from - indexer.contract_l1_args - where - key = 'delegator' and - value = $1 - ) and - signature IN ('Delegate(address,address,uint256)', 'Redelegate(address,address,address,uint256)', 'ClaimRewards(address,address)', 'Unbond(address,address,uint256)') - ) - ) and - ($2::integer is null or log._id ${direction} $2) - order by - log.block_height ${order} - limit $3 - `, - [address, paginatedParams.cursor, paginatedParams.last], - ); - - events.sort((a: any, b: any) => { - return b._id - a._id; - }); - - if (events.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - const startCursor = events[0]._id; - const endCursor = events[events.length - 1]._id; - const hasPreviousPage = ( - await this.databaseConnection.query( - ` - select exists( - select - 1 - from - indexer.contract_l1_logs log - where - ( - ( - log._id in ( - select - distinct contract_l1_log_id - from - indexer.contract_l1_args - where - key = 'sender' and - value = $1 - ) and - signature IN ('Authorize(address,bytes)', 'Withdraw(address,address,uint256)') - ) OR - ( - log._id in ( - select - distinct contract_l1_log_id - from - indexer.contract_l1_args - where - key = 'delegator' and - value = $1 - ) and - signature IN ('Delegate(address,address,uint256)', 'Redelegate(address,address,address,uint256)', 'ClaimRewards(address,address)', 'Unbond(address,address,uint256)') - ) - ) and - log._id < $2) - `, - [address, endCursor], - ) - )[0].exists; - const hasNextPage = ( - await this.databaseConnection.query( - ` - select exists( - select - 1 - from - indexer.contract_l1_logs log - where - ( - ( - log._id in ( - select - distinct contract_l1_log_id - from - indexer.contract_l1_args - where - key = 'sender' and - value = $1 - ) and - signature IN ('Authorize(address,bytes)', 'Withdraw(address,address,uint256)') - ) OR - ( - log._id in ( - select - distinct contract_l1_log_id - from - indexer.contract_l1_args - where - key = 'delegator' and - value = $1 - ) and - signature IN ('Delegate(address,address,uint256)', 'Redelegate(address,address,address,uint256)', 'ClaimRewards(address,address)', 'Unbond(address,address,uint256)') - ) - ) and - log._id > $2) - `, - [address, startCursor], - ) - )[0].exists; - return { - nodes: events, - edges: [], - pageInfo: { - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - } - - async eth_queryEvent(eventId: number): Promise { - const [event] = await this.databaseConnection.query( - ` - select - log.tx_hash, - log.signature, - log._id, - log.block_height, - log.decoded_args, - log.timestamp, - arg.value - from - indexer.contract_l1_logs log - left join indexer.contract_l1_args arg on ( - log._id = arg.contract_l1_log_id and - ( - (arg.key = 'sender' and log.signature IN ('Authorize(address,bytes)', 'Withdraw(address,address,uint256)')) OR - (arg.key = 'delegator' and log.signature IN ('Delegate(address,address,uint256)', 'Redelegate(address,address,address,uint256)', 'ClaimRewards(address,address)', 'Unbond(address,address,uint256)')) - ) - ) - where - log._id = $1 - and - log.signature IN ('Authorize(address,bytes)', 'Delegate(address,address,uint256)', 'Redelegate(address,address,address,uint256)', 'ClaimRewards(address,address)', 'Unbond(address,address,uint256)', 'Withdraw(address,address,uint256)') - `, - [eventId], - ); - return event; - } - - async getEvents(rawAddress: string, paginatedParams: PaginatedParams) { - // Reset counters at start of new event query - this.resetQueryCounters(); - - const address = getValidAddress(rawAddress); - const events = await this.eth_queryEvents(address, paginatedParams); - - // Extract all block heights from events for batched query - const blockHeights = events.nodes.map((event: any) => event.block_height); - - const sequencerAddress = convertEthAddressToSequencerUserAddress(address); - - // Build the queries array with all event types we need to fetch - const eventsQueries = [ - { - key: 'from', - type: 'fuelsequencer.bridge.EventWithdrawToEthereumReported', - value: `"${address.toLowerCase()}"`, - queryId: 'withdraw', - }, - { - key: 'delegator', - type: 'delegate', - value: address.toLowerCase(), - queryId: 'delegate', - }, - { - type: 'unbond', - key: 'delegator', - value: address.toLowerCase(), - queryId: 'undelegate', - }, - ]; - - // Add withdraw rewards query if sequencer address exists - if (sequencerAddress) { - eventsQueries.push({ - type: 'withdraw_rewards', - key: 'delegator', - value: sequencerAddress, - queryId: 'withdraw_rewards', - }); - } - - // Pre-fetch all event types in a single query - const [ - allEventsResult, - lastCommittedBlock, - contractTimeToFinalizeInMinutes, - ] = await Promise.all([ - this.cosmos_queryEventsMultipleBlocks(blockHeights, eventsQueries), - this.getLastCommittedBlock(), - getTimeToFinalize(), - ]); - - // Extract individual event types - const withdrawEvents = allEventsResult.withdraw || []; - const delegateEvents = allEventsResult.delegate || []; - const undelegateEvents = allEventsResult.undelegate || []; - const withdrawRewardsEvents = allEventsResult.withdraw_rewards || []; - - // Extract the mapping from Ethereum block to Cosmos blocks - const ethToCosmosBlocks = allEventsResult.__ethToCosmosBlocks || {}; - - // Store all events by their cosmos block height for easy lookup - const cosmosBlockToEvents = new Map(); - - // Process all events and organize them by Cosmos block height - const allEventsArray = [ - ...withdrawEvents, - ...delegateEvents, - ...undelegateEvents, - ...withdrawRewardsEvents, - ]; - - for (const event of allEventsArray) { - const cosmosHeight = - typeof event.height === 'string' - ? Number.parseInt(event.height, 10) - : event.height; - - if (!cosmosBlockToEvents.has(cosmosHeight)) { - cosmosBlockToEvents.set(cosmosHeight, []); - } - - cosmosBlockToEvents.get(cosmosHeight)?.push(event); - } - - // Store the prefetched data by ETHEREUM block height - const prefetchedEventsByBlock: Record< - number, - { - withdrawEvents: any[]; - delegateEvents: any[]; - undelegateEvents: any[]; - withdrawRewardsEvents: any[]; - redelegateEvents: any[]; - } - > = {}; - - // Initialize each Ethereum block with empty arrays - for (const ethBlock of blockHeights) { - prefetchedEventsByBlock[ethBlock] = { - withdrawEvents: [], - delegateEvents: [], - undelegateEvents: [], - withdrawRewardsEvents: [], - redelegateEvents: [], - }; - - // Get all Cosmos blocks associated with this Ethereum block - const cosmosBlocks = ethToCosmosBlocks[ethBlock] || []; - - // For each Cosmos block, collect all relevant events - for (const cosmosBlock of cosmosBlocks) { - const eventsForBlock = cosmosBlockToEvents.get(cosmosBlock) || []; - - // Process each event and add to appropriate category - for (const event of eventsForBlock) { - if ( - event.event?.type === - 'fuelsequencer.bridge.EventWithdrawToEthereumReported' - ) { - prefetchedEventsByBlock[ethBlock].withdrawEvents.push(event); - } else if (event.event?.type === 'delegate') { - prefetchedEventsByBlock[ethBlock].delegateEvents.push(event); - } else if (event.event?.type === 'unbond') { - prefetchedEventsByBlock[ethBlock].undelegateEvents.push(event); - } else if (event.event?.type === 'withdraw_rewards') { - prefetchedEventsByBlock[ethBlock].withdrawRewardsEvents.push(event); - } else if (event.event?.type === 'redelegate') { - prefetchedEventsByBlock[ethBlock].redelegateEvents.push(event); - } - } - } - } - - // With parallel processing using Promise.all - - const historyPromises = events.nodes.map((event: any) => { - const blockHeight = event.block_height; - const prefetchedData = prefetchedEventsByBlock[blockHeight]; - return this.processEvent(address, event, { - ...prefetchedData, - lastCommittedBlock, - contractTimeToFinalizeInMinutes, - }); - }); - - const historyResults = await Promise.all(historyPromises); - - // Directly assign flattened results to events.nodes - events.nodes = historyResults.flat(); - - return events; - } - - async getEvent(eventId: number) { - const event = await this.eth_queryEvent(eventId); - if (!event) { - throw new Error('Event not found'); - } - const address = getValidAddress(event.value); - const [tx] = await this.processEvent(address, event); - return tx; - } -} diff --git a/packages/graphql/src/infra/dao/StakingDAO.types.ts b/packages/graphql/src/infra/dao/StakingDAO.types.ts deleted file mode 100644 index 7d0c5cb8c..000000000 --- a/packages/graphql/src/infra/dao/StakingDAO.types.ts +++ /dev/null @@ -1,198 +0,0 @@ -export type SequencerEventItem = { - _id: number; - tx_hash: string; - signature: string; - block_height: number; - timestamp: Date; - decoded_args: { - data: string; - }; -}; - -export type QueryItem = { - id: number; - tx_hash: string; - block_height: string; - timestamp: Date; - event_index: number; - event_type: string; - event_key: string; - event_value: string; -}; - -export type WithdrawEvent = { - type: string; - amount: { - amount: string; - denom: string; - }; - from: string; - to: string; - nonce: string; -}; - -export type UndelegateEvent = { - type: string; - validator: string; - delegator: string; - completion_time: string; -}; - -export type ComosTx = { - height: string; - txHash: string; - timestamp: Date; - events: Array; - event: T; -}; - -export type CommitQueryItem = { - cosmos_block_number: string; - timestamp: Date; - tx_hash: string; - eth_block_height: string; -}; - -export type ProccessedWithdrawQueryItem = { - block_height: string; - timestamp: Date; - tx_hash: string; -}; - -export enum ResponseType { - Withdraw = 'Withdraw', - Stake = 'Stake', - ReDelegate = 'ReDelegate', - Undelegate = 'Undelegate', - ClaimRewards = 'ClaimRewards', -} - -export enum WithdrawStatusType { - WaitingCommittingToL1 = 'WaitingCommittingToL1', - WaitingFinalization = 'WaitingFinalization', - ReadyToProcessWithdraw = 'ReadyToProcessWithdraw', -} - -export enum UndelegateStatusType { - WaitingUnbonding = 'WaitingUnbonding', -} - -export enum BaseStatusType { - TransactionSent = 'TransactionSent', - WaitingSync = 'WaitingSync', - Finalized = 'Finalized', - Skipped = 'Skipped', -} - -type EthTxStatusInfo = { - height: string; - txHash: string; - timestamp: Date; -}; -type SequencerTxStatusInfo = { - height: string; - txHash: string; - timestamp: Date; -}; - -type BaseStatusInfo = { - [BaseStatusType.TransactionSent]?: { - ethTx?: EthTxStatusInfo; - }; - [BaseStatusType.WaitingSync]?: { - dateExpectedToComplete?: Date; - sequencerTx?: SequencerTxStatusInfo; - }; - [BaseStatusType.Skipped]?: { - message: string; - }; - [BaseStatusType.Finalized]?: {}; -}; - -export type WithdrawResponse = StakingHistoryRow & { - type: ResponseType.Withdraw; - from: string; - to: string; - amount: string; - status: BaseStatusType | WithdrawStatusType; - statusInfo: BaseStatusInfo & { - [WithdrawStatusType.WaitingCommittingToL1]?: { - dateExpectedToComplete?: Date; - ethTx?: EthTxStatusInfo; - }; - [WithdrawStatusType.WaitingFinalization]?: { - dateExpectedToComplete?: Date; - ethTx?: EthTxStatusInfo; - }; - [WithdrawStatusType.ReadyToProcessWithdraw]?: { - proof?: string; - ethTx?: EthTxStatusInfo; - }; - }; - nonce?: string; -}; - -export type UndelegateResponse = StakingHistoryRow & { - type: ResponseType.Undelegate; - from: string; - amount: string; - validator: string; - status: BaseStatusType | UndelegateStatusType; - statusInfo: BaseStatusInfo & { - [UndelegateStatusType.WaitingUnbonding]?: { - dateExpectedToComplete?: Date; - }; - }; -}; - -export type DelegateResponse = StakingHistoryRow & { - type: ResponseType.Stake; - from: string; - amount: string; - validator: string; - status: BaseStatusType; - statusInfo: BaseStatusInfo; -}; - -export type RedelegateResponse = StakingHistoryRow & { - type: ResponseType.ReDelegate; - from: string; - amount: string; - toValidator: string; - fromValidator: string; - status: BaseStatusType; - statusInfo: BaseStatusInfo; -}; - -export type ClaimRewardsResponse = StakingHistoryRow & { - type: ResponseType.ClaimRewards; - from: string; - validator: string; - status: BaseStatusType; - statusInfo: BaseStatusInfo; -}; - -type StakingHistoryRow = { - id: number; - timestampToFinish?: string; -}; - -export type StakingHistory = Array< - StakingHistoryRow & - ( - | WithdrawResponse - | DelegateResponse - | RedelegateResponse - | UndelegateResponse - | ClaimRewardsResponse - ) ->; - -export type PrefetchedData = { - withdrawEvents?: ComosTx[]; - delegateEvents?: ComosTx[]; - undelegateEvents?: ComosTx[]; - withdrawRewardsEvents?: ComosTx[]; - lastCommittedBlock?: CommitQueryItem & { commit_period: number }; - contractTimeToFinalizeInMinutes?: number; -}; diff --git a/packages/graphql/src/infra/dao/TEMP_StakingDAO.ts b/packages/graphql/src/infra/dao/TEMP_StakingDAO.ts deleted file mode 100644 index 6c92cd182..000000000 --- a/packages/graphql/src/infra/dao/TEMP_StakingDAO.ts +++ /dev/null @@ -1,589 +0,0 @@ -import { fuelsequencer } from '@fuel-infrastructure/fuelsequencerjs'; -import { MsgWithdrawToEthereum } from '@fuel-infrastructure/fuelsequencerjs/dist/codegen/fuelsequencer/bridge/v1/tx'; -import { getCurrentNetworkContracts } from 'app-commons/stakingAddresses'; -import { ethers } from 'ethers'; -import { arrayify, bn } from 'fuels'; -import AbiFactory from '~/application/uc/IndexL1/abi/AbiFactory'; -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import DataCache from '../cache/DataCache'; - -// 10 Hours to commit -export const TIME_TO_COMMIT = 10 * 60 * 60; -// 30 minutes to sequencer indexer sync the info -export const TIME_TO_SEQUENCER_INDEXER_SYNC = 1800; - -const network = env.get('FUEL_CHAIN')!; -const currentNetworkContracts = getCurrentNetworkContracts(network); -const envPrefix = network === 'mainnet' ? 'mainnet' : 'testnet'; - -const COSMOS_URL_RPC = `https://rest.seq.${envPrefix}.fuel.network`; -const COSMOS_URL_INDEXER = `https://index-api.sequencer.${envPrefix}.fuel.network`; -const base = network === 'mainnet' ? 'mainnet' : 'sepolia'; -const ETH_PROVIDER_URL = `https://eth-${base}.g.alchemy.com/v2/${env.get('ALCHEMY_API_KEY')}`; -const ETH_PROVIDER = new ethers.JsonRpcProvider(ETH_PROVIDER_URL); -const fuelStreamXAbi: any = AbiFactory.create(network, 'FuelStreamX'); -const sequencerProxyAbi: any = AbiFactory.create(network, 'SequencerProxy'); - -function getValidAddress(address: string) { - try { - return ethers.getAddress(address); - } catch (_error) { - throw new Error( - 'Invalid address format, expected a valid Ethereum address', - ); - } -} - -interface StakingTransactionFactoryBase { - event: Omit & { - timestamp: number; - blockNumber: number; - amount: string; - txHash: string; - }; -} - -interface StakingTransactionFactoryError extends StakingTransactionFactoryBase { - error: true; - timeToFinalizeFromStart?: never; -} - -interface StakingTransactionFactory extends StakingTransactionFactoryBase { - error?: never; - timeToFinalizeFromStart: number; -} - -function stakingTransactionFactory({ - event, - error, - timeToFinalizeFromStart = Number.NEGATIVE_INFINITY, -}: StakingTransactionFactoryError | StakingTransactionFactory) { - return { - amount: event.amount, - from: event.from, - totalTimeToFinalize: timeToFinalizeFromStart, // @TODO: + time to block finalization ETH - status: { - current: WithdrawStatus.SyncingWithSequencer, - dateExpectedToFinalize: new Date( - secondsToMs(event.timestamp + timeToFinalizeFromStart), - ), - error, - all: { - [WithdrawStatus.WithdrawSent]: { - ethTx: { - height: event.blockNumber.toString(), - txHash: event.txHash, - timestamp: event.timestamp, - }, - dateExpectedToComplete: new Date(), - }, - [WithdrawStatus.SyncingWithSequencer]: { - dateExpectedToComplete: new Date( - new Date( - secondsToMs(event.timestamp + TIME_TO_SEQUENCER_INDEXER_SYNC), - ), - ), - }, - }, - }, - }; -} - -interface BridgeCommitmentProof { - total: number; - index: number; - leaf_hash: string; - aunts: string[]; -} - -interface LastResultsProof { - total: number; - index: number; - leaf_hash: string; - aunts: string[]; -} - -interface BridgeCommitmentLeaf { - height: number; - last_results_hash: string; -} - -interface GetSequencerCommitmentInclusionProofResponse { - proof: { - bridge_commitment_proof: BridgeCommitmentProof; - last_results_proof: LastResultsProof; - bridge_commitment_leaf: BridgeCommitmentLeaf; - tx_result_marshalled: string; - }; - bridge_commitment_proof_nonce: string; -} - -type Withdraw = { - TxHash: string; - Nonce: string; - FromAddress: string; - Denom: string; - Amount: string; - IsProvable: boolean; -}; - -enum WithdrawStatus { - WithdrawSent = 'Withdraw sent', - SyncingWithSequencer = 'Synchronizing with Sequencer', - SyncingWithL1 = 'Sequencer committing to L1', - WaitingFinalization = 'Waiting for finalization', - ReadyToProcessWithdraw = 'Ready for withdrawal', - Finalized = 'Finalized', -} - -type StakingTransaction = { - from: string; - amount: string; - nonce?: string; - proof?: GetSequencerCommitmentInclusionProofResponse; - status: StatusWithETA; - totalTimeToFinalize: number; -}; - -type StatusWithETA = { - current: WithdrawStatus; - dateExpectedToFinalize: Date; - error?: boolean; - all: Partial>; -}; - -type StatusStep = { - ethTx?: { - height: string; - txHash: string; - timestamp: number; - }; - sequencerTx?: { - height: string; - txHash: string; - timestamp: number; - }; - dateExpectedToComplete?: Date; -}; - -// 60 minutes -const CACHE_EXPIRATION = 1000 * 60 * 60; - -function secondsToMs(seconds: number) { - return seconds * 1000; -} - -async function fetchSequencer(pathname: string) { - const url = new URL(pathname, COSMOS_URL_RPC); - const result = await fetch(url.toString()).then((response) => - response.json(), - ); - return result as T; -} - -async function fetchPendingWithdrawals(address: string) { - const url = new URL('/seq/withdrawals', COSMOS_URL_INDEXER); - url.searchParams.append('address', address); - const result: { Withdraws: null | Withdraw[] } = await fetch( - url.toString(), - ).then((response) => response.json()); - const withdraws = result?.Withdraws ?? []; - return withdraws.sort((a, b) => { - return Number(a.Nonce) > Number(b.Nonce) ? 1 : -1; - }); -} - -async function fetchWithdrawProof(nonce: string) { - const url = new URL('/seq/proof', COSMOS_URL_INDEXER); - url.searchParams.append('nonce', nonce); - const result: GetSequencerCommitmentInclusionProofResponse = await fetch( - url.toString(), - ).then((response) => response.json()); - return result; -} - -async function getTransactionOnSequencer(txHash: string) { - const data = await fetchSequencer<{ - tx_response: { - height: string; - timestamp: number; - }; - }>(`/cosmos/tx/v1beta1/txs/${txHash}`); - return data; -} - -async function queryContractEvents( - contractAddress: string, - contractABI: readonly any[], - eventName: string, - options: any = {}, -): Promise> { - try { - // Create contract interface - const contract = new ethers.Contract( - contractAddress, - contractABI, - ETH_PROVIDER, - ); - - // Get the event fragment from the contract interface - const eventFragment = contract.interface.getEvent(eventName)?.topicHash; - - // Query the events - const events = await ETH_PROVIDER.getLogs({ - address: options.address || contractAddress, - topics: [eventFragment ?? null].concat(options.topics || []), - fromBlock: options.fromBlock || 0, - toBlock: options.toBlock || 'finalized', - }); - - // Parse the events - return events.map((log) => { - const parsedLog = contract.interface.parseLog({ - topics: log.topics, - data: log.data, - }); - return { - ...parsedLog?.args, - blockNumber: log.blockNumber, - transactionHash: log.transactionHash, - logIndex: (log as any).logIndex, - }; - }); - } catch (error) { - console.error('Error querying events:', error); - throw error; - } -} - -export async function getTimeToFinalize() { - const result = await getTimeToFinalizeStrict(); - return result ?? 2880; // fallback to current mainnet value -} - -export async function getTimeToFinalizeStrict(): Promise { - const cachedTimeToFinalizeWithdraw = DataCache.getInstance().get( - 'time-to-finalize-withdraw-minutes', - ); - if (cachedTimeToFinalizeWithdraw) { - return Number(cachedTimeToFinalizeWithdraw); - } - - try { - const contract = new ethers.Contract( - currentNetworkContracts.FUEL_STREAM_X, - fuelStreamXAbi, - ETH_PROVIDER, - ); - const value = await contract.timeToFinalize(); - const valueInMinutes = Number(value) / 60; - DataCache.getInstance().save( - 'time-to-finalize-withdraw-minutes', - CACHE_EXPIRATION, - valueInMinutes.toString(), - ); - return Number(valueInMinutes); - } catch (error) { - logger.error('Staking: getTimeToFinalize', error); - return null; - } -} - -export async function getUnbondingTimeSeconds(): Promise { - const cached = DataCache.getInstance().get('unbonding-time-seconds'); - if (cached) { - return Number(cached); - } - - try { - const res = await fetch( - new URL('/cosmos/staking/v1beta1/params', COSMOS_URL_RPC), - ); - const data = await res.json(); - // Cosmos returns unbonding_time as a duration string like "1814400s" - const unbondingTimeStr: string = data?.params?.unbonding_time ?? ''; - const seconds = Number.parseInt(unbondingTimeStr.replace('s', ''), 10); - if (Number.isNaN(seconds)) { - logger.error( - 'Staking: getUnbondingTime', - 'Invalid unbonding_time format', - ); - return null; - } - DataCache.getInstance().save( - 'unbonding-time-seconds', - CACHE_EXPIRATION, - seconds.toString(), - ); - return seconds; - } catch (error) { - logger.error('Staking: getUnbondingTime', error); - return null; - } -} - -async function getEventsToSequencer(sender: string) { - // Contract details - const contractAddress = currentNetworkContracts.SEQUENCER_PROXY; - // Query events with options - const events = await queryContractEvents( - contractAddress, - sequencerProxyAbi, - 'Authorize', - { - fromBlock: 1, - toBlock: 'latest', - topics: [ethers.zeroPadValue(sender, 32)], - }, - ); - - for (const event of events) { - const block = await ETH_PROVIDER.getBlock(event.blockNumber); - (event as any).timestamp = block?.timestamp; - } - - return events.sort((a, b) => { - return (a as any)[0].timestamp > (b as any).timestamp ? -1 : 1; - }); -} - -async function getCommitsFromSequencer(contractTimeToFinalize: number) { - // add 8 day buffer to get more blocks and sure finalization is correct - const buffer = 8 * 24 * 60 * 60; - // consider 10 blocks per second - const amountOfBlocksToCheckCommits = (contractTimeToFinalize + buffer) / 10; - const latestBlockHeight = await ETH_PROVIDER.getBlockNumber(); - const contractAddress = currentNetworkContracts.FUEL_STREAM_X; - // Query events with options - const events = await queryContractEvents( - contractAddress, - fuelStreamXAbi, - 'HeadUpdate', - { - fromBlock: latestBlockHeight - amountOfBlocksToCheckCommits, - toBlock: 'finalized', - topics: [], - }, - ); - - for (const event of events) { - const block = await ETH_PROVIDER.getBlock(event.blockNumber); - (event as any).timestamp = block?.timestamp; - } - - // sort ASC by block number (oldest first) - return events.sort((a, b) => { - return (a as any)[0] > (b as any)[0] ? 1 : -1; - }); -} - -function getWithdrawToEthereumEvents( - event: Awaited>[0], -) { - const bytes = arrayify((event as any)[1]); - const txDecoded = fuelsequencer.bridge.AuthorizeTx.decode(bytes); - const messages: Array = []; - - for (const message of txDecoded.messages) { - switch (message.typeUrl) { - case '/fuelsequencer.bridge.v1.MsgWithdrawToEthereum': - messages.push(MsgWithdrawToEthereum.decode(message.value)); - break; - default: - null; - } - } - - return messages; -} - -export async function getStakingTransactions(_address: string) { - const address = getValidAddress(_address); - const now = new Date(); - const [authorizedEvents, withdrawalsOnSequencer, _contractTimeToFinalize] = - await Promise.all([ - getEventsToSequencer(address), - fetchPendingWithdrawals(address), - getTimeToFinalize(), - ]); - - // add 10 minutes to ensure finalization is correct - const contractTimeToFinalize = _contractTimeToFinalize + 10 * 60; - const commitsFromSequencer = await getCommitsFromSequencer( - contractTimeToFinalize, - ); - const lastCommit = commitsFromSequencer.slice(-1)[0]; - - const withdrawEventsEth: Array< - Omit & { - timestamp: number; - blockNumber: number; - amount: string; - txHash: string; - } - > = []; - for (const event of authorizedEvents) { - const messages = await getWithdrawToEthereumEvents(event); - messages.map((message) => { - withdrawEventsEth.push({ - ...message, - amount: message.amount.amount.toString(), - timestamp: (event as any).timestamp, - blockNumber: event.blockNumber, - txHash: event.transactionHash, - }); - }); - } - - const stakingTransactions: Array = []; - - // Retry Pattern, if the withdraw is not found on sequencer, we will retry with the next event - let withdrawSeqEventBuffer = 0; - - for (const [index, event] of withdrawEventsEth.entries()) { - try { - const timePassedFromLastCommit = - (new Date().getTime() - secondsToMs((lastCommit as any)?.timestamp)) / - 1000; - const estimatedTimeToNextCommit = - TIME_TO_COMMIT - timePassedFromLastCommit; - const timeToFinalizeFromStart = - contractTimeToFinalize + estimatedTimeToNextCommit; - - const stakingTransaction: any = stakingTransactionFactory({ - event, - timeToFinalizeFromStart, - }); - - const withdrawOnSequencer = - withdrawalsOnSequencer[withdrawSeqEventBuffer]; - if (withdrawOnSequencer) { - if (withdrawOnSequencer.Amount !== event.amount) { - stakingTransactions.push({ - ...stakingTransaction, - status: { - ...stakingTransaction.status, - error: true, - }, - }); - throw new Error(`--Amounts on EthIndex ${index} SeqIndex: ${withdrawSeqEventBuffer} do not match!-- - Sequencer: ${withdrawOnSequencer.TxHash} ${withdrawOnSequencer.Amount} - Ethereum: ${event.txHash} ${event.amount} - `); - } - stakingTransaction.status.current = WithdrawStatus.SyncingWithL1; - stakingTransaction.nonce = withdrawOnSequencer.Nonce; - - const [proof, txSequencer] = await Promise.all([ - stakingTransaction.nonce - ? fetchWithdrawProof(stakingTransaction.nonce) - : null, - getTransactionOnSequencer(withdrawOnSequencer.TxHash), - ]); - - if (proof) { - stakingTransaction.proof = proof; - } - const sequencerTx = { - height: txSequencer.tx_response.height, - txHash: withdrawOnSequencer.TxHash, - timestamp: - new Date(txSequencer.tx_response.timestamp).getTime() / 1000, - }; - - stakingTransaction.status.all[WithdrawStatus.SyncingWithSequencer] = { - ...stakingTransaction.status.all[WithdrawStatus.SyncingWithSequencer], - dateExpectedToComplete: new Date(), - sequencerTx, - }; - - const timeToSequencerCommitOnL1 = - new Date().getTime() + secondsToMs(estimatedTimeToNextCommit); - stakingTransaction.status.all[WithdrawStatus.SyncingWithL1] = { - dateExpectedToComplete: new Date( - secondsToMs(event.timestamp) + - secondsToMs(estimatedTimeToNextCommit), - ), - }; - - // Time to finalize from sequencer tx to end - const timeToFinishFromSequencerTx = - timeToSequencerCommitOnL1 + secondsToMs(contractTimeToFinalize); - - stakingTransaction.status.dateExpectedToFinalize = new Date( - timeToFinishFromSequencerTx, - ); - - const commit = commitsFromSequencer.find( - (commit) => - (commit as any)['0'] >= Number(txSequencer.tx_response.height), - ); - if (commit) { - stakingTransaction.status.dateExpectedToFinalize = new Date( - secondsToMs((commit as any)?.timestamp) + - secondsToMs(contractTimeToFinalize), - ); - - stakingTransaction.status.all[WithdrawStatus.SyncingWithL1] = { - ...stakingTransaction.status.all[WithdrawStatus.SyncingWithL1], - ethTx: { - height: commit.blockNumber.toString(), - txHash: commit.transactionHash, - timestamp: (commit as any).timestamp, - }, - dateExpectedToComplete: new Date(), - }; - stakingTransaction.status.current = - WithdrawStatus.WaitingFinalization; - stakingTransaction.status.all[WithdrawStatus.WaitingFinalization] = { - dateExpectedToComplete: - stakingTransaction.status.dateExpectedToFinalize, - }; - const diffUntilFinalize = Math.max( - stakingTransaction.status.dateExpectedToFinalize.getTime() - - now.getTime(), - 0, - ); - if (diffUntilFinalize === 0) { - stakingTransaction.status.current = - WithdrawStatus.ReadyToProcessWithdraw; - - const ethHexNonce = bn(stakingTransaction.nonce, 10).toHex(32); - const events = await queryContractEvents( - currentNetworkContracts.FUEL_STREAM_X, - fuelStreamXAbi, - 'WithdrawalProcessed', - { - fromBlock: 1, - toBlock: 'latest', - topics: [ethHexNonce], - }, - ); - - if (events.length > 0) { - stakingTransaction.status.current = WithdrawStatus.Finalized; - stakingTransaction.status.all[ - WithdrawStatus.ReadyToProcessWithdraw - ] = { - ethTx: { - height: events[0].blockNumber.toString(), - txHash: events[0].transactionHash, - timestamp: (events[0] as any).timestamp, - }, - }; - } - } - } - } - - stakingTransactions.push(stakingTransaction); - withdrawSeqEventBuffer++; - } catch (error) { - console.error(error); - } - } - return { - data: stakingTransactions, - }; -} diff --git a/packages/graphql/src/infra/dao/TransactionDAO.ts b/packages/graphql/src/infra/dao/TransactionDAO.ts deleted file mode 100644 index bfd164f12..000000000 --- a/packages/graphql/src/infra/dao/TransactionDAO.ts +++ /dev/null @@ -1,372 +0,0 @@ -import { isB256 } from 'fuels'; -import { TransactionEntity } from '~/domain/Transaction/TransactionEntity'; -import { DatabaseConnectionReplica } from '../database/DatabaseConnectionReplica'; -import type PaginatedParams from '../paginator/PaginatedParams'; - -const VALID_OWNER_TYPES = ['ACCOUNT', 'CONTRACT'] as const; -type OwnerType = (typeof VALID_OWNER_TYPES)[number]; - -/** - * Builds the SQL clause for filtering transactions by owner type. - * This is a static string mapping to prevent SQL injection. - * - * @param ownerType - The type of owner to filter by ('ACCOUNT' or 'CONTRACT') - * @returns SQL clause string or empty string if no filtering needed - */ -function buildOwnerTypeClause(ownerType?: string): string { - if (ownerType === 'ACCOUNT') { - return 'and not exists (select 1 from indexer.contracts c where c.contract_hash = ta.account_hash)'; - } - if (ownerType === 'CONTRACT') { - return 'and exists (select 1 from indexer.contracts c where c.contract_hash = ta.account_hash)'; - } - return ''; -} - -/** - * @param ownerType - The owner type value to validate - * @returns The validated ownerType (uppercase) or undefined - */ -function validateOwnerType(ownerType?: string): OwnerType | undefined { - if (ownerType === undefined || ownerType === null) { - return undefined; - } - const normalized = ownerType.toUpperCase() as OwnerType; - if (!VALID_OWNER_TYPES.includes(normalized)) { - throw new Error( - `Invalid ownerType value: ${ownerType}. Expected 'ACCOUNT', 'CONTRACT', or undefined.`, - ); - } - return normalized; -} - -export default class TransactionDAO { - databaseConnection: DatabaseConnectionReplica; - - constructor() { - this.databaseConnection = DatabaseConnectionReplica.getInstance(); - } - - async getByHash(txHash: string) { - const transactionData = ( - await this.databaseConnection.query( - ` - select - t.* - from - indexer.transactions t - where - t.tx_hash = $1 - `, - [txHash.toLowerCase()], - ) - )[0]; - if (!transactionData) return; - return TransactionEntity.createFromDAO(transactionData); - } - - async getPaginatedTransactionsByOwner( - accountHash: string, - paginatedParams: PaginatedParams, - ownerType?: string, - ) { - const validatedOwnerType = validateOwnerType(ownerType); - const ownerTypeClause = buildOwnerTypeClause(validatedOwnerType); - - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - - const transactionsData = await this.databaseConnection.query( - ` - select t.*, ta._id as ta_id - from indexer.transactions_accounts ta - inner join indexer.transactions t on t.tx_hash = ta.tx_hash - where ta.account_hash = $1 and ($2::text is null or ta._id ${direction} $2) - ${ownerTypeClause} - order by ta._id ${order} - limit 10 - `, - [accountHash.toLowerCase(), paginatedParams.cursor], - ); - - transactionsData.sort((a: any, b: any) => { - return a.ta_id.localeCompare(b.ta_id) * -1; - }); - - if (transactionsData.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - - const transactions = []; - for (const transactionData of transactionsData) { - transactions.push(TransactionEntity.createFromDAO(transactionData)); - } - - // Use ta_id (transactions_accounts._id) for cursors, not t._id - const startCursor = transactionsData[0].ta_id; - const endCursor = transactionsData[transactionsData.length - 1].ta_id; - - // Check pagination + position count (uses endCursor for accurate positioning) - const [paginationInfo] = await this.databaseConnection.query( - ` - select - exists(select 1 from indexer.transactions_accounts ta where ta.account_hash = $1 and ta._id < $2 ${ownerTypeClause} limit 1) as has_prev, - exists(select 1 from indexer.transactions_accounts ta where ta.account_hash = $1 and ta._id > $3 ${ownerTypeClause} limit 1) as has_next, - (select count(*) from (select 1 from indexer.transactions_accounts ta where ta.account_hash = $1 ${ownerTypeClause} limit 1001) sub) as total_count, - (select count(*) from (select 1 from indexer.transactions_accounts ta where ta.account_hash = $1 and ta._id > $2 ${ownerTypeClause} limit 1001) sub) as items_before_end - `, - [accountHash.toLowerCase(), endCursor, startCursor], - ); - - const hasPreviousPage = paginationInfo?.has_prev || false; - const hasNextPage = paginationInfo?.has_next || false; - // Capped at 1000 to avoid slow full counts; frontend shows "1000+" when totalCount === 1000 - const totalCount = Math.min(Number(paginationInfo?.total_count) || 0, 1000); - const endPosition = - Math.min(Number(paginationInfo?.items_before_end) || 0, 1000) + 1; - const pageSize = transactionsData.length; - const startPosition = endPosition - pageSize + 1; - - const newNodes = transactions.map((n) => n.toGQLListNode()); - - const edges = newNodes.map((node) => ({ - node, - cursor: paginatedParams.cursor, - })); - - return { - nodes: newNodes, - edges, - pageInfo: { - startCount: startPosition, - endCount: startPosition + pageSize - 1, - totalCount, - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - } - - async getPaginatedTransactions(paginatedParams: PaginatedParams) { - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - const transactionsData = await this.databaseConnection.query( - ` - select - * - from - indexer.transactions t - where - $1::text is null or t._id ${direction} $1 - order by - t._id ${order} - limit $2 - `, - [paginatedParams.cursor, paginatedParams.last], - ); - transactionsData.sort((a: any, b: any) => { - return a._id.localeCompare(b._id) * -1; - }); - const transactions = []; - for (const transactionData of transactionsData) { - transactions.push(TransactionEntity.createFromDAO(transactionData)); - } - if (transactions.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - const startCursor = transactionsData[0]._id; - const endCursor = transactionsData[transactionsData.length - 1]._id; - const hasPreviousPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.transactions where _id < $1)', - [endCursor], - ) - )[0].exists; - const hasNextPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.transactions where _id > $1)', - [startCursor], - ) - )[0].exists; - const newNodes = transactions.map((n) => n.toGQLListNode()); - - const edges = newNodes.map((node) => ({ - node, - cursor: paginatedParams.cursor, - })); - const paginatedResults = { - nodes: newNodes, - edges, - pageInfo: { - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - return paginatedResults; - } - - async accountExists(accountHash: string): Promise { - // Fast check: does this account have any transactions? - // Used for search validation only - const result = await this.databaseConnection.query( - 'SELECT EXISTS(SELECT 1 FROM indexer.transactions_accounts WHERE account_hash = $1) as exists', - [accountHash.toLowerCase()], - ); - - return result[0]?.exists || false; - } - - async getTransactionsByOwner(accountHash: string) { - const transactionsData = await this.databaseConnection.query( - ` - select - t.* - from - indexer.transactions t - where - t.tx_hash in ( - select distinct on (tx_hash) - tx_hash - from - indexer.transactions_accounts - where - account_hash = $1 - order by - tx_hash, _id desc - limit 5 - ) - order by - t._id desc - `, - [accountHash.toLowerCase()], - ); - const transactions = []; - for (const transactionData of transactionsData) { - transactions.push(TransactionEntity.createFromDAO(transactionData)); - } - return transactions; - } - - async getPaginatedTransactionsByBlockId( - blockId: string, - paginatedParams: PaginatedParams, - ) { - let height = blockId; - if (isB256(blockId)) { - const [block] = await this.databaseConnection.query( - ` - select - b._id - from - indexer.blocks b - where - b.id = $1 - `, - [blockId], - ); - height = block._id; - } - const direction = paginatedParams.direction === 'before' ? '<' : '>'; - const order = paginatedParams.direction === 'before' ? 'desc' : 'asc'; - const transactionsData = await this.databaseConnection.query( - ` - select - t.* - from - indexer.transactions t - where - t.block_id = $1 and - ($2::text is null or t._id ${direction} $2) - order by - t._id ${order} - limit - 10 - `, - [height, paginatedParams.cursor], - ); - transactionsData.sort((a: any, b: any) => { - return a._id.localeCompare(b._id) * -1; - }); - const transactions = []; - for (const transactionData of transactionsData) { - transactions.push(TransactionEntity.createFromDAO(transactionData)); - } - if (transactions.length === 0) { - return { - nodes: [], - edges: [], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - endCursor: '', - startCursor: '', - }, - }; - } - const startCursor = transactionsData[0]._id; - const endCursor = transactionsData[transactionsData.length - 1]._id; - const hasPreviousPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.transactions t where t._id < $1 and t.block_id = $2)', - [endCursor, height], - ) - )[0].exists; - const hasNextPage = ( - await this.databaseConnection.query( - 'select exists(select 1 from indexer.transactions t where t._id > $1 and t.block_id = $2)', - [startCursor, height], - ) - )[0].exists; - const [previousRows] = await this.databaseConnection.query( - 'select count(*)::integer as count from indexer.transactions where _id > $1 and block_id = $2', - [startCursor, height], - ); - const [totalCount] = await this.databaseConnection.query( - 'select count(*)::integer as count from indexer.transactions where block_id = $1', - [height], - ); - const newNodes = transactions.map((n) => n.toGQLListNode()); - - const edges = newNodes.map((node) => ({ - node, - cursor: paginatedParams.cursor, - })); - const paginatedResults = { - nodes: newNodes, - edges, - pageInfo: { - startCount: previousRows.count + 1, - endCount: previousRows.count + paginatedParams.last, - totalCount: totalCount.count, - hasNextPage, - hasPreviousPage, - endCursor, - startCursor, - }, - }; - - return paginatedResults; - } -} diff --git a/packages/graphql/src/infra/dao/utils.test.ts b/packages/graphql/src/infra/dao/utils.test.ts deleted file mode 100644 index ad4fd6356..000000000 --- a/packages/graphql/src/infra/dao/utils.test.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { - convertToUsd, - removeExtraDecimals, - removeScientificNotation, -} from './utils'; - -test('Should remove scientific notation', () => { - expect(removeScientificNotation(0.0000000000001)).toBe('0.0000000000001'); - expect(removeScientificNotation(0.0000000000002798798)).toBe( - '0.0000000000002798798', - ); -}); - -test('Should remove extra decimals', () => { - expect(removeExtraDecimals('0.0000000000017897987')).toBe('0.000000000001'); - expect(removeExtraDecimals('1.11111')).toBe('1.11111'); - expect(removeExtraDecimals('0.0000101010101')).toBe('0.00001'); - expect(removeExtraDecimals('0.000028')).toBe('0.00002'); - expect(removeExtraDecimals('0.00008')).toBe('0.00008'); - expect(removeExtraDecimals('0')).toBe('0'); - expect(removeExtraDecimals('10000')).toBe('10000'); -}); - -test('Should format to usd', () => { - expect(convertToUsd('1', 9, 1).formatted).toBe('$0.000000001'); - expect(convertToUsd('100', 9, 3088.54).formatted).toBe('$0.0003'); - expect(convertToUsd('4763069935', 9, 3088.54).formatted).toBe('$14,710.93'); - expect(convertToUsd('50914437160339649', 9, 0.058969).formatted).toBe( - '$3,002,373.44', - ); - expect(convertToUsd('50914437160339649', 9, 0.000000001).formatted).toBe( - '$0.05', - ); -}); - -test('Should handle zero and no rate cases', () => { - expect(convertToUsd('0', 9, 1)).toEqual({ value: 0, formatted: '$0' }); - - expect(convertToUsd(null as any, 9, 1)).toEqual({ - value: 0, - formatted: '$0', - }); - - expect(convertToUsd(undefined as any, 9, 1)).toEqual({ - value: 0, - formatted: '$0', - }); - - expect(convertToUsd('1000', 9, 0)).toEqual({ value: 0, formatted: '$0' }); - expect(convertToUsd('0', 9, 0)).toEqual({ value: 0, formatted: '$0' }); - expect(convertToUsd(null as any, 9, 0)).toEqual({ - value: 0, - formatted: '$0', - }); - expect(convertToUsd(undefined as any, 9, 0)).toEqual({ - value: 0, - formatted: '$0', - }); -}); - -test('Should handle very small numbers', () => { - expect(convertToUsd('1', 18, 0.000000001).formatted).toBe('$0.000000001'); - expect(convertToUsd('1', 18, 0.0000000001).formatted).toBe('$0.0000000001'); -}); diff --git a/packages/graphql/src/infra/dao/utils.ts b/packages/graphql/src/infra/dao/utils.ts index ab1ba8799..8ac5e07bf 100644 --- a/packages/graphql/src/infra/dao/utils.ts +++ b/packages/graphql/src/infra/dao/utils.ts @@ -1,69 +1,5 @@ import { type BN, bn } from 'fuels'; -export function roundToNearest(time: number, roundUp = false): number { - const msInHour = 60 * 60 * 1000; - return roundUp - ? Math.ceil(time / msInHour) * msInHour - : Math.floor(time / msInHour) * msInHour; -} - -// General interval creation function -export function createIntervals( - startTime: number, - endTime: number, - unit: 'minute' | 'hour' | 'day', - intervalSize: number, -): Array<{ start: Date; end: Date; txCount: number; totalGas: number }> { - const roundedStartTime = roundToNearest(startTime); - const roundedEndTime = roundToNearest(endTime, true); - - const intervals: Array<{ - start: Date; - end: Date; - txCount: number; - totalGas: number; - }> = []; - - let currentTime = roundedStartTime; - - // Handle minute, hour, and day intervals - const msInUnit = { - minute: 60 * 1000, - hour: 60 * 60 * 1000, - day: 24 * 60 * 60 * 1000, - }; - - const intervalDuration = intervalSize * msInUnit[unit]; - - while (currentTime < roundedEndTime) { - const startInterval = new Date(currentTime); - const endInterval = new Date(currentTime + intervalDuration); - intervals.push({ - start: startInterval, - end: endInterval, - txCount: 0, - totalGas: 0, - }); - currentTime += intervalDuration; - } - - return intervals; -} - -export function removeScientificNotation(value: number) { - const valueString = String(value); - if (valueString.includes('e') || valueString.includes('E')) { - return value.toFixed(20).replace(/\.?0+$/, ''); - } - return String(value); -} - -export function removeExtraDecimals(value: string) { - const numberOfZeros = String(value).match(/(0\.0*)/)?.[0].length || 0; - if (!numberOfZeros) return value; - return String(value).slice(0, numberOfZeros + 1); -} - const MONEY_PRECISION = 2; function countDecimals(value: number): number { diff --git a/packages/graphql/src/infra/database/DatabaseConnection.ts b/packages/graphql/src/infra/database/DatabaseConnection.ts deleted file mode 100644 index 21ea50602..000000000 --- a/packages/graphql/src/infra/database/DatabaseConnection.ts +++ /dev/null @@ -1,124 +0,0 @@ -import { Pool } from 'pg'; -import { env } from '~/config'; - -const DB_HOST = env.get('DB_HOST'); -const DB_PORT = env.get('DB_PORT'); -const DB_USER = env.get('DB_USER'); -const DB_PASS = env.get('DB_PASS'); -const DB_NAME = env.get('DB_NAME'); - -export class DatabaseConnection { - private static instance: DatabaseConnection; - private pool: Pool; - - constructor() { - const config = { - host: DB_HOST as string, - port: Number(DB_PORT) as number, - user: DB_USER as string, - password: DB_PASS as string, - database: DB_NAME as string, - ssl: - process.env.NODE_ENV === 'production' - ? { rejectUnauthorized: false } - : false, - max: 25, - min: 2, - idleTimeoutMillis: 30000, - connectionTimeoutMillis: 10000, - }; - this.pool = new Pool(config); - } - - static getInstance() { - if (!DatabaseConnection.instance) { - DatabaseConnection.instance = new DatabaseConnection(); - } - return DatabaseConnection.instance; - } - - async query(statement: string, params: any) { - const connection = await this.pool.connect(); - try { - const result = await connection.query(statement, params); - return result.rows; - } catch (error) { - try { - await connection.query('ROLLBACK'); - } catch {} - throw error; - } finally { - connection.release(); - } - } - - /** - * Execute a query with per-session statement_timeout and lock_timeout. - * - * REFRESH MATERIALIZED VIEW CONCURRENTLY cannot run inside a transaction block. - * For those queries, timeouts are applied as session-level SET commands and - * reset afterward. For all other queries, SET LOCAL inside BEGIN/COMMIT is used - * so timeouts don't leak to other connections. - */ - async queryWithTimeout( - statement: string, - params: any, - statementTimeoutMs: number, - lockTimeoutMs: number, - ) { - // VACUUM and REFRESH MATERIALIZED VIEW CONCURRENTLY cannot run inside a transaction block - const requiresNoTransaction = - /REFRESH\s+MATERIALIZED\s+VIEW\s+CONCURRENTLY/i.test(statement) || - /^\s*VACUUM\b/i.test(statement); - const connection = await this.pool.connect(); - try { - if (requiresNoTransaction) { - // Cannot use BEGIN/COMMIT — apply timeouts at session level and reset after - await connection.query(`SET statement_timeout = ${statementTimeoutMs}`); - await connection.query(`SET lock_timeout = ${lockTimeoutMs}`); - const result = await connection.query(statement, params); - await connection.query('RESET statement_timeout'); - await connection.query('RESET lock_timeout'); - return result.rows; - } - await connection.query('BEGIN'); - await connection.query( - `SET LOCAL statement_timeout = ${statementTimeoutMs}`, - ); - await connection.query(`SET LOCAL lock_timeout = ${lockTimeoutMs}`); - const result = await connection.query(statement, params); - await connection.query('COMMIT'); - return result.rows; - } catch (error) { - if (!requiresNoTransaction) { - try { - await connection.query('ROLLBACK'); - } catch {} - } else { - try { - await connection.query('RESET statement_timeout'); - await connection.query('RESET lock_timeout'); - } catch {} - } - throw error; - } finally { - connection.release(); - } - } - - async executeTransaction(queries: { statement: string; params: any }[]) { - const connection = await this.pool.connect(); - try { - await connection.query('begin'); - for (const query of queries) { - await connection.query(query.statement, query.params); - } - await connection.query('commit'); - } catch (e: any) { - await connection.query('rollback'); - throw e; - } finally { - connection.release(); - } - } -} diff --git a/packages/graphql/src/infra/database/DatabaseConnectionReplica.ts b/packages/graphql/src/infra/database/DatabaseConnectionReplica.ts deleted file mode 100644 index 434af614a..000000000 --- a/packages/graphql/src/infra/database/DatabaseConnectionReplica.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { Pool } from 'pg'; -import { env } from '~/config'; - -const DB_HOST = env.get('DB_HOST_REPLICA') || env.get('DB_HOST'); -const DB_PORT = env.get('DB_PORT_REPLICA') || env.get('DB_PORT'); -const DB_USER = env.get('DB_USER_REPLICA') || env.get('DB_USER'); -const DB_PASS = env.get('DB_PASS_REPLICA') || env.get('DB_PASS'); -const DB_NAME = env.get('DB_NAME_REPLICA') || env.get('DB_NAME'); - -export class DatabaseConnectionReplica { - private static instance: DatabaseConnectionReplica; - private pool: Pool; - - constructor() { - const config = { - host: DB_HOST as string, - port: Number(DB_PORT) as number, - user: DB_USER as string, - password: DB_PASS as string, - database: DB_NAME as string, - // Disable SSL for local development - ssl: - process.env.NODE_ENV === 'production' - ? { rejectUnauthorized: false } - : false, - max: 20, - min: 2, - idleTimeoutMillis: 30000, - connectionTimeoutMillis: 10000, - acquireTimeoutMillis: 10000, - allowExitOnIdle: false, - }; - this.pool = new Pool(config); - } - - static getInstance() { - if (!DatabaseConnectionReplica.instance) { - DatabaseConnectionReplica.instance = new DatabaseConnectionReplica(); - } - return DatabaseConnectionReplica.instance; - } - - async query(statement: string, params: any) { - let connection; - try { - connection = await this.pool.connect(); - const result = await connection.query(statement, params); - return result.rows; - } catch (error) { - console.error('Database query error:', { - statement: statement.substring(0, 100), - error, - }); - throw error; - } finally { - if (connection) { - connection.release(); - } - } - } - - async executeTransaction(queries: { statement: string; params: any }[]) { - const connection = await this.pool.connect(); - try { - await connection.query('begin'); - for (const query of queries) { - await connection.query(query.statement, query.params); - } - await connection.query('commit'); - } catch (e: any) { - await connection.query('rollback'); - throw e; - } finally { - connection.release(); - } - } - - /** - * Execute multiple queries in a single transaction with custom planner settings. - * Settings are applied with SET LOCAL and only affect this transaction. - * - * @param settings - PostgreSQL settings to apply - * @param queries - Queries to execute sequentially - * @returns Array of result sets - */ - async batchQueryWithSettings( - settings: { name: string; value: string }[], - queries: { statement: string; params: any }[], - ) { - const connection = await this.pool.connect(); - try { - await connection.query('BEGIN'); - - for (const setting of settings) { - await connection.query(`SET LOCAL ${setting.name} = ${setting.value}`); - } - - const results = []; - for (const query of queries) { - const result = await connection.query(query.statement, query.params); - results.push(result.rows); - } - - await connection.query('COMMIT'); - - return results; - } catch (error) { - await connection.query('ROLLBACK'); - console.error('Database batch query error:', { error }); - throw error; - } finally { - connection.release(); - } - } -} diff --git a/packages/graphql/src/infra/gateway/AssetGateway.ts b/packages/graphql/src/infra/gateway/AssetGateway.ts deleted file mode 100644 index bf1eeda74..000000000 --- a/packages/graphql/src/infra/gateway/AssetGateway.ts +++ /dev/null @@ -1,108 +0,0 @@ -import type { Provider } from 'fuels'; -import DataCache from '../cache/DataCache'; -import VerifiedAssets from '../cache/VerifiedAssets'; -import AssetDAO from '../dao/AssetDAO'; - -export default class AssetGateway { - async getAsset(assetId: string, chainId?: number, _provider?: Provider) { - const assetDAO = new AssetDAO(); - const nonVerifiedAsset = await assetDAO.getByAssetId(assetId); - const isNFT = - (nonVerifiedAsset?.decimals === 0 || - nonVerifiedAsset?.decimals === null) && - nonVerifiedAsset.totalSupply === '1' && - nonVerifiedAsset?.contractId; - const verifiedAssets = await VerifiedAssets.getInstance().fetch(); - for (const verifiedAsset of verifiedAssets) { - for (const network of verifiedAsset.networks) { - if (network.type === 'fuel') { - network.__typename = 'AssetNetworkFuel'; - } - if (network.type === 'ethereum') { - network.__typename = 'AssetNetworkEthereum'; - } - } - } - for (const verifiedAsset of verifiedAssets) { - for (const network of verifiedAsset.networks) { - if (network.chainId === chainId && network.assetId === assetId) { - let assetRate = DataCache.getInstance().get(`${assetId}-rate`); - if (!assetRate) { - assetRate = await assetDAO.getAssetsRateByAssetId(assetId); - DataCache.getInstance().save(`${assetId}-rate`, 300000, assetRate); - } - const asset = Object.assign(verifiedAsset, { - assetId: assetId, - contractId: network.contractId, - subId: nonVerifiedAsset?.subId, - decimals: network.decimals, - totalSupply: nonVerifiedAsset?.totalSupply, - suspicious: false, - verified: true, - metadata: nonVerifiedAsset?.metadata, - rate: assetRate?.rate || null, - }); - return asset; - } - } - if ( - nonVerifiedAsset && - (nonVerifiedAsset?.symbol === verifiedAsset.symbol || - nonVerifiedAsset?.name === verifiedAsset.name) - ) { - nonVerifiedAsset.suspicious = true; - } - } - if (!nonVerifiedAsset) return; - if (isNFT) { - const owner = await assetDAO.getAssetOwner(assetId); - const uri = this.parseUrl( - nonVerifiedAsset.metadata.uri || nonVerifiedAsset.metadata.URI, - ); - return Object.assign(nonVerifiedAsset, { - isNFT: true, - verified: false, - owner, - uri, - }); - } - return Object.assign(nonVerifiedAsset, { - verified: false, - isNFT, - }); - } - - parseUrl(url: string): string { - if (!url) return ''; - // Check if the input is a valid CID - const isCID = - /^(Qm[1-9A-HJ-NP-Za-km-z]{44}|b[A-Za-z2-7]{58}|B[A-Z2-7]{58}|z[1-9A-HJ-NP-Za-km-z]{48}|F[0-9A-F]{50})$/.test( - url, - ); - - if (isCID) { - // If it's a CID, convert it to an IPFS gateway URL - return `https://ipfs.io/ipfs/${url}`; - } - if (url.startsWith('ipfs://')) { - // Convert IPFS URI to a gateway URL - const cid = url.slice(7); - return `https://ipfs.io/ipfs/${cid}`; - } - if (url.startsWith('ar://')) { - // Convert Arweave URI to a gateway URL - const id = url.slice(5); - return `https://arweave.net/${id}`; - } - if (url.startsWith('data:')) { - // Data URIs are returned as-is - return url; - } - if (!url.startsWith('http://') && !url.startsWith('https://')) { - // Assume HTTPS for URLs without a protocol - return `https://${url}`; - } - // Return other URLs as-is - return url; - } -} diff --git a/packages/graphql/src/infra/paginator/PaginatedParams.ts b/packages/graphql/src/infra/paginator/PaginatedParams.ts deleted file mode 100644 index 9559c4427..000000000 --- a/packages/graphql/src/infra/paginator/PaginatedParams.ts +++ /dev/null @@ -1,24 +0,0 @@ -export default class PaginatedParams { - cursor: any; - direction: string; - last: number; - - constructor(params: any, maxPageSize = 50) { - this.cursor = null; - this.direction = 'before'; - if (params.after) { - this.cursor = params.after; - this.direction = 'after'; - } - if (params.before) { - this.cursor = params.before; - this.direction = 'before'; - } - - if (params.last > maxPageSize) { - throw new Error(`Maximum page size allowed is ${maxPageSize}`); - } - - this.last = params.last || 10; - } -} diff --git a/packages/graphql/src/infra/server/App.ts b/packages/graphql/src/infra/server/App.ts deleted file mode 100644 index b6a6d4a15..000000000 --- a/packages/graphql/src/infra/server/App.ts +++ /dev/null @@ -1,401 +0,0 @@ -import cors from 'cors'; -import express, { - type NextFunction, - type Request, - type Response, -} from 'express'; -import { Provider } from 'fuels'; -import GetAccountAssets from '~/application/uc/GetAccountAssets'; -import GetAssetsRate from '~/application/uc/GetAssetsRate'; -import GetMetrics from '~/application/uc/GetMetrics'; -import GetAssetDetails from '~/application/uc/IndexAsset/GetAssetDetails'; -import { env } from '~/config'; -import { logger } from '~/core/Logger'; -import { blockResolver } from '~/graphql/resolvers'; -import { APYResolver } from '~/graphql/resolvers/APYResolver'; -import BalanceDAO from '../dao/BalanceDAO'; -import BlockDAO from '../dao/BlockDAO'; -import BridgeDAO from '../dao/BridgeDAO'; -import CosmosDAO from '../dao/CosmosDAO'; -import L1DAO from '../dao/L1DAO'; -import StakingDAO from '../dao/StakingDAO'; -import { - TIME_TO_COMMIT, - TIME_TO_SEQUENCER_INDEXER_SYNC, - getStakingTransactions, - getTimeToFinalizeStrict, - getUnbondingTimeSeconds, -} from '../dao/TEMP_StakingDAO'; -import { convertToUsd } from '../dao/utils'; -import AssetGateway from '../gateway/AssetGateway'; -import PaginatedParams from '../paginator/PaginatedParams'; - -export class Server { - // Metrics cache with 3-second TTL - private cachedMetrics: string | null = null; - private lastMetricsTime = 0; - private readonly METRICS_CACHE_TTL = 3000; // 3 seconds - - async setup() { - const app = express(); - app.use(cors()); - app.use(express.json()); - - const providerUrl = env.get('FUEL_PROVIDER'); - if (!providerUrl) { - throw new Error('FUEL_PROVIDER is not set'); - } - const provider = new Provider(providerUrl); - const chainId = await provider.getChainId(); - const baseAssetId = await provider.getBaseAssetId(); - blockResolver.startPoolingAnalytics({ chainId, baseAssetId }); - - app.get('/staking/apy', async (_req: Request, res: Response) => { - logger.debug('API', 'Get staking APY'); - const getStakingAPY = new APYResolver(); - const result = await getStakingAPY.stakingAPY(); - res.json(result); - }); - - app.get('/staking/events', async (_req: Request, res: Response) => { - logger.debug('API', 'Get staking events'); - const address = _req.query.address; - const paginatedParams = new PaginatedParams(_req.query); - const stakingDAO = new StakingDAO(); - const output = await stakingDAO.getEvents( - String(address), - paginatedParams, - ); - res.json(output); - }); - - app.get('/bridge/events', async (req: Request, res: Response) => { - logger.debug('API', 'Get bridge events'); - const address = req.query.address; - const limit = Math.min(Number(req.query.limit), 20); - const offset = Number(req.query.offset); - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.getEvents(String(address), limit, offset); - res.json(output); - }); - - app.get('/bridge/deposit/logs', async (req: Request, res: Response) => { - logger.debug('API', 'Get deposit logs'); - const address = req.query.address; - const recipient = req.query.recipient; - const predicate = req.query.predicate; - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.queryLogsForRecipient( - String(address), - String(recipient), - String(predicate), - ); - res.json(output); - }); - - app.get('/bridge/block/hashes', async (req: Request, res: Response) => { - logger.debug('API', 'Get block hashes'); - const address = req.query.address; - const fromBlock = req.query.from_block; - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.queryBlockHashes( - String(address), - Number(fromBlock), - ); - res.json(output); - }); - - app.get( - '/bridge/message/relayed/hash', - async (req: Request, res: Response) => { - logger.debug('API', 'Get message relayed logs'); - const address = req.query.address; - const messageId = req.query.message_id; - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.queryMessageRelayedTxHash( - String(address), - String(messageId), - ); - res.json(output); - }, - ); - - app.get( - '/bridge/:eventType/:eventId', - async (req: Request, res: Response) => { - logger.debug('API', 'Get bridge event'); - const eventId = Number(req.params.eventId); - const eventType = String(req.params.eventType); - const bridgeDAO = new BridgeDAO(); - const output = await bridgeDAO.getEvent(eventType, eventId); - res.json(output); - }, - ); - - app.get( - '/staking/finalization-period/withdraw', - async (_req: Request, res: Response) => { - logger.debug('API', 'Get withdraw finalization period'); - try { - const timeToFinalizeMinutes = await getTimeToFinalizeStrict(); - if (timeToFinalizeMinutes == null) { - res.json({ seconds: null }); - return; - } - const totalSeconds = - timeToFinalizeMinutes * 60 + - TIME_TO_COMMIT + - TIME_TO_SEQUENCER_INDEXER_SYNC; - res.json({ seconds: totalSeconds }); - } catch (_error) { - logger.error('API', 'Error fetching withdraw finalization period'); - res.status(500).json({ seconds: null }); - } - }, - ); - - app.get( - '/staking/finalization-period/undelegate', - async (_req: Request, res: Response) => { - logger.debug('API', 'Get undelegate finalization period'); - try { - const unbondingSeconds = await getUnbondingTimeSeconds(); - if (unbondingSeconds == null) { - res.json({ seconds: null }); - return; - } - const totalSeconds = - unbondingSeconds + TIME_TO_SEQUENCER_INDEXER_SYNC; - res.json({ seconds: totalSeconds }); - } catch (_error) { - logger.error('API', 'Error fetching undelegate finalization period'); - res.status(500).json({ seconds: null }); - } - }, - ); - - app.get('/staking/events/:eventId', async (req: Request, res: Response) => { - logger.debug('API', 'Get staking event by id'); - const eventId = Number(req.params.eventId); - if (!Number.isInteger(eventId)) { - throw new Error('Invalid event id'); - } - const stakingDAO = new StakingDAO(); - const output = await stakingDAO.getEvent(eventId); - res.json(output); - }); - - app.get('/health', async (_req: Request, res: Response) => { - logger.debug('API', 'Health'); - res.json({ - status: 'ok', - }); - }); - - app.get('/metrics', async (_req: Request, res: Response) => { - logger.debug('API', 'Metrics'); - const now = Date.now(); - - // Return cached metrics if still valid (within TTL) - if ( - this.cachedMetrics && - now - this.lastMetricsTime < this.METRICS_CACHE_TTL - ) { - res.setHeader('content-type', 'text/plain'); - res.send(this.cachedMetrics); - return; - } - - // Fetch fresh metrics if cache expired - const getMetrics = new GetMetrics(); - const output = await getMetrics.execute(); - const lines: any = []; - for (const element in output) { - lines.push(`${element} ${output[element]}`); - } - - // Cache the result - const metricsText = lines.join('\n'); - this.cachedMetrics = metricsText; - this.lastMetricsTime = now; - - res.setHeader('content-type', 'text/plain'); - res.send(metricsText); - }); - - app.get('/blocks/:height', async (_req: Request, res: Response) => { - const height = _req.params.height; - logger.debug('API', 'Get Block', height); - const blockDAO = new BlockDAO(); - const output = await blockDAO.getByHeight(Number(height)); - if (!output) { - return res.status(404).end(); - } - res.json(output.data); - }); - - app.get( - '/accounts/:accountHash/balance', - async (_req: Request, res: Response) => { - const accountHash = _req.params.accountHash; - const assetId = String(_req.query.asset_id); - const blockHeight = _req.query.block_height - ? Number(_req.query.block_height) - : null; - logger.debug( - 'API', - 'Get Balance', - `Account: ${accountHash} Asset: ${assetId} Block: ${blockHeight}`, - ); - const balanceDAO = new BalanceDAO(); - const output = await balanceDAO.getBalance( - accountHash, - assetId, - blockHeight, - ); - if (!output) { - return res.status(404).end(); - } - const assetGateway = new AssetGateway(); - const asset = await assetGateway.getAsset(assetId, chainId); - res.json({ - accountHash: output.account_hash, - assetId: output.asset_id, - blockHeight: output.block_height, - balance: output.balance, - balanceInUsd: asset.rate - ? convertToUsd(output.balance, asset.decimals, asset.rate).formatted - : null, - }); - }, - ); - - app.get('/assets/:assetId', async (_req: Request, res: Response) => { - const assetId = _req.params.assetId; - logger.debug('API', 'Get Asset', assetId); - const assetGateway = new AssetGateway(); - const output = await assetGateway.getAsset(assetId, chainId); - res.json(output); - }); - - app.get('/assets/:assetId/details', async (req: Request, res: Response) => { - const assetId = req.params.assetId; - logger.debug('API', 'Get Asset Details', assetId); - - const getAssetDetails = new GetAssetDetails(); - const output = await getAssetDetails.executeCached(assetId); - - if (!output) { - return res.status(404).json({ message: 'Asset not found' }); - } - - res.json(output); - }); - - app.get( - '/accounts/:accountId/assets', - async (_req: Request, res: Response) => { - const accountId = _req.params.accountId; - const last = Number(_req.query.last) || 100; - logger.debug('API', 'Get Account Assets', accountId); - const getAccountAssets = new GetAccountAssets(); - const output = await getAccountAssets.execute({ accountId, last }); - res.json(output); - }, - ); - - app.get('/assets_rate', async (_req: Request, res: Response) => { - logger.debug('API', 'Get Assets Rate'); - const getAssetsRate = new GetAssetsRate(); - const output = await getAssetsRate.executeCached(); - res.json(output); - }); - - app.post('/convert_rate', async (_req: Request, res: Response) => { - logger.debug('API', 'Post Convert Rate'); - const assetId = _req.body.assetId; - const amount = _req.body.amount; - const assetGateway = new AssetGateway(); - const asset = await assetGateway.getAsset(assetId, chainId); - if (!asset) { - return res.status(422).json({ - message: 'Could not convert because asset was not found', - }); - } - if (!asset.verified || !asset.rate) { - return res.status(422).json({ - message: 'Could not convert because asset has no conversion rate', - }); - } - return res.json({ - amount: asset.rate - ? convertToUsd(amount, asset.decimals, asset.rate).formatted - : null, - }); - }); - - app.get( - '/contracts_l1/:contractHash', - async (_req: Request, res: Response) => { - const contractHash = _req.params.contractHash; - const event = _req.query.event; - const key = _req.query.key; - const value = _req.query.value; - if (!contractHash || !event || !key) { - logger.error('API', 'Contracts L1 missing params'); - return res.status(442).end(); - } - logger.debug('API', 'Contracts L1', contractHash); - const l1DAO = new L1DAO(); - const output = await l1DAO.getContractEvent( - contractHash, - String(event), - String(key), - String(value), - ); - res.json(output); - }, - ); - - app.get('/staking-transactions', async (req: Request, res: Response) => { - logger.debug('API', 'Get TEMP staking transactions by address'); - const address = req.query.address as string; - const output = await getStakingTransactions(address); - res.json(output); - }); - - app.get('/cosmos', async (_req: Request, res: Response) => { - const type = _req.query.type; - const key = _req.query.key; - const value = _req.query.value; - if (!type || !key) { - logger.error('API', 'Cosmos missing params'); - return res.status(422).end(); - } - logger.debug('API', 'Cosmos', type); - const cosmosDAO = new CosmosDAO(); - const output = await cosmosDAO.getCosmosEvents( - String(type), - String(key), - String(value), - ); - res.json(output); - }); - - // Return all errors as 400 with a message payload - app.use((err: Error, _req: Request, res: Response, _next: NextFunction) => { - logger.error('API', `Error occurred: ${err.message}`, err); - res.status(400).json({ message: err.message }); - }); - - return app; - } - - async listen(app: any, port: number) { - return new Promise((resolve) => { - app.listen(port, async () => { - resolve(null); - }); - }); - } -} diff --git a/packages/graphql/src/infra/timer/Timer.ts b/packages/graphql/src/infra/timer/Timer.ts deleted file mode 100644 index 9b6e43fc7..000000000 --- a/packages/graphql/src/infra/timer/Timer.ts +++ /dev/null @@ -1,8 +0,0 @@ -export default class Timer { - static async register(interval: number, callback: Function) { - await callback(); - setInterval(async () => { - await callback(); - }, interval); - } -} diff --git a/packages/graphql/src/infra/util/util.ts b/packages/graphql/src/infra/util/util.ts deleted file mode 100644 index c90d870a9..000000000 --- a/packages/graphql/src/infra/util/util.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { bech32 } from 'bech32'; -import { arrayify, hexlify } from 'fuels'; - -export function decodeMessage(messageData: string) { - if (!messageData) return {}; - if (messageData === '0x') return {}; - const DEPOSIT_WITH_DATA = - '0x0000000000000000000000000000000000000000000000000000000000000002'; - const data = Array.from(arrayify(messageData)); - const contractId = hexlify(Uint8Array.from(data.splice(0, 32))); - const messageType = hexlify(Uint8Array.from(data.splice(0, 32))); - if (messageType === DEPOSIT_WITH_DATA) { - const tokenAddress = hexlify(Uint8Array.from(data.splice(0, 32))); - const tokenId = hexlify(Uint8Array.from(data.splice(0, 32))); - const msgSender = hexlify(Uint8Array.from(data.splice(0, 32))); - const toContract = hexlify(Uint8Array.from(data.splice(0, 32))); - return { - contractId, - messageType, - tokenAddress, - tokenId, - msgSender, - toContract, - }; - } - return { - contractId, - messageType, - }; -} - -const hrp = 'fuelsequencer'; - -export function convertEthAddressToSequencerUserAddress( - ethAddress: string, -): `fuelsequencer${string}` | undefined { - if (!ethAddress) { - return undefined; - } - - // Remove the '0x' prefix and convert the address to a Buffer - const addressBuffer = Buffer.from(ethAddress.slice(2), 'hex'); - - // Convert the address Buffer to a Bech32 encoded address - const bech32Address = bech32.encode(hrp, bech32.toWords(addressBuffer)); - - return bech32Address as `fuelsequencer${string}`; -} diff --git a/packages/graphql/src/jobs.ts b/packages/graphql/src/jobs.ts deleted file mode 100644 index bd8bb6ae0..000000000 --- a/packages/graphql/src/jobs.ts +++ /dev/null @@ -1,14 +0,0 @@ -import RunDatabaseJobs from './application/uc/RunDatabaseJobs'; -import { logger } from './core/Logger'; - -async function main() { - logger.debug('DE', 'Starting database executor service'); - const runDatabaseJobs = new RunDatabaseJobs(); - await runDatabaseJobs.execute(); -} - -main().catch(async (error: any) => { - logger.error('DE', 'Uncaught error', error); - logger.error('DE', 'Process exit'); - process.exit(1); -}); diff --git a/packages/graphql/src/l1.ts b/packages/graphql/src/l1.ts deleted file mode 100644 index f5298af2a..000000000 --- a/packages/graphql/src/l1.ts +++ /dev/null @@ -1,16 +0,0 @@ -import IndexL1 from './application/uc/IndexL1/IndexL1'; -import L1ReorgSentinel from './application/uc/IndexL1/L1ReorgSentinel'; -import { logger } from './core/Logger'; - -async function main() { - logger.debug('L1', 'Starting l1 indexing service'); - const indexL1 = new IndexL1(); - const sentinel = new L1ReorgSentinel(); - await Promise.all([indexL1.execute(), sentinel.execute()]); -} - -main().catch(async (error: any) => { - logger.error('L1', 'Uncaught error', error); - logger.error('L1', 'Process exit'); - process.exit(1); -}); diff --git a/packages/graphql/src/migrate-receipts.ts b/packages/graphql/src/migrate-receipts.ts deleted file mode 100644 index 39340aa24..000000000 --- a/packages/graphql/src/migrate-receipts.ts +++ /dev/null @@ -1,37 +0,0 @@ -import IndexReceipts from './application/uc/IndexReceipt'; -import { DatabaseConnection } from './infra/database/DatabaseConnection'; - -(async () => { - const startHeight = Number.parseInt(process.argv[2]); - const endHeight = Number.parseInt(process.argv[3]); - await migrate(startHeight, endHeight); -})(); - -async function migrate(startHeight: number, endHeight: number) { - console.log('migrate'); - const indexReceipts = new IndexReceipts(); - const connection = DatabaseConnection.getInstance(); - let height = startHeight || 1; - while (true) { - if (height > endHeight) { - console.log('last height reached'); - break; - } - const transactions = await connection.query( - 'select * from indexer.transactions where block_id = $1', - [height], - ); - console.log(height, transactions.length); - if (!transactions.length) { - console.log('No transactions found'); - break; - } - for (const transaction of transactions) { - transaction.blockId = transaction.block_id; - transaction.transactionHash = transaction.tx_hash; - transaction.id = transaction._id; - await indexReceipts.execute(transaction); - } - height++; - } -} diff --git a/packages/graphql/src/migrate-timestamp.ts b/packages/graphql/src/migrate-timestamp.ts deleted file mode 100644 index db47c9e14..000000000 --- a/packages/graphql/src/migrate-timestamp.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { DatabaseConnection } from './infra/database/DatabaseConnection'; - -(async () => { - const startHeight = Number.parseInt(process.argv[2]); - const endHeight = Number.parseInt(process.argv[3]); - await migrate(startHeight, endHeight); -})(); - -async function migrate(startHeight: number, endHeight: number) { - console.log('migrate'); - const connection = DatabaseConnection.getInstance(); - let height = startHeight || 1; - while (true) { - if (height > endHeight) { - console.log('last height reached'); - break; - } - await connection.query( - 'update indexer.transactions set timestamp2 = timestamp where block_id = $1', - [height], - ); - height++; - } -} diff --git a/packages/graphql/src/recover.ts b/packages/graphql/src/recover.ts deleted file mode 100644 index 2a1679acb..000000000 --- a/packages/graphql/src/recover.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import NewAddBlockRange from './application/uc/NewAddBlockRange'; -import { logger } from './core/Logger'; -import { DatabaseConnection } from './infra/database/DatabaseConnection'; - -async function main() { - const addBlockRange = new NewAddBlockRange(); - const databaseConnection = DatabaseConnection.getInstance(); - const from = 1; - const to = 12875752; - const rows = (await databaseConnection.query( - `select seq from generate_series(${from}, ${to}) as seq left join indexer.blocks b on (b._id = seq) where b._id is null`, - [], - )) as any; - if (rows.length === 0) { - logger.debug('Recover', `No blocks to recover between #${from} and #${to}`); - } else { - logger.debug( - 'Recover', - `Recovering ${rows.length} blocks between #${from} and #${to}`, - ); - } - let i = 0; - for (const row of rows) { - try { - await addBlockRange.execute({ from: row.seq, to: row.seq }); - console.log(`Recovering block #${row.seq} ${i++}`); - } catch (err: any) { - console.error(`Failed to recover block #${row.seq}: ${err.message}`); - } - await setTimeout(100); - } -} - -main(); diff --git a/packages/graphql/src/schemas/fuelcore.graphql b/packages/graphql/src/schemas/fuelcore.graphql deleted file mode 100644 index e69de29bb..000000000 diff --git a/packages/graphql/src/services/extends.graphql b/packages/graphql/src/services/extends.graphql deleted file mode 100644 index a45648eb7..000000000 --- a/packages/graphql/src/services/extends.graphql +++ /dev/null @@ -1,170 +0,0 @@ -scalar U64 -scalar HexString -scalar Address -scalar AssetId -scalar ContractId -scalar UtxoId - -# -------------------------------- -# Transaction -# -------------------------------- - -extend type TransactionConnection { - # custom - tokens: [Token] - # custom - accounts: [Account] -} - -enum TransactionStatusType { - Success - Failure - Submitted -} - -type ParsedTime { - fromNow: String - full: String - rawTai64: String - rawUnix: String -} - -enum GroupedInputType { - InputCoin - InputContract - InputMessage -} - -type GroupedInput { - type: GroupedInputType - totalAmount: U64 - inputs: [Input] - contractId: ContractId - assetId: AssetId - sender: Address - recipient: Address - data: HexString - owner: Address -} - -enum GroupedOutputType { - CoinOutput - ContractOutput - MessageOutput - ChangeOutput - VariableOutput - ContractCreated -} - -type GroupedOutput { - type: GroupedOutputType - totalAmount: U64 - outputs: [Output] - to: Address - assetId: AssetId - inputIndex: Int - recipient: Address - contractId: ContractId -} - -enum TransactionAccountType { - Contract - Predicate - Wallet -} - -type TransactionAccount { - type: TransactionAccountType - id: String -} - -enum OperationType { - FROM_CONTRACT - FROM_ACCOUNT - FINAL_RESULT -} - -type OperationReceipt { - item: Receipt - receipts: [OperationReceipt] -} - -type Operation { - type: OperationType - receipts: [OperationReceipt] -} - -extend type Transaction { - title: String - time: ParsedTime - blockHeight: String - statusType: TransactionStatusType - totalAccounts: Int - totalAssets: Int - totalOperations: Int - gasUsed: U64 - operations: [Operation] - accountsInvolved: [TransactionAccount] - groupedInputs: [GroupedInput] - groupedOutputs: [GroupedOutput] - isPredicate: Boolean - fee: U64 -} - -# -------------------------------- -# Balance -# -------------------------------- - -type UtxoItem { - utxoId: UtxoId! - amount: U64! - blockCreated: U32 - txCreatedIdx: U64 -} - -extend type Balance { - utxos: [UtxoItem] -} - -# -------------------------------- -# Block -# -------------------------------- - -extend type Block { - time: ParsedTime - totalGasUsed: U64 - totalFee: U64 - producer: Address -} - -# -------------------------------- -# Query -# -------------------------------- -type SearchAccount { - address: Address - transactions: [SearchTransaction] -} - -type SearchContract { - id: ContractId -} - -type SearchBlock { - id: BlockId - height: String -} - -type SearchTransaction { - id: TransactionId -} - -type SearchResult { - account: SearchAccount - contract: SearchContract - block: SearchBlock - transaction: SearchTransaction -} - -extend type Query { - search(query: String!): SearchResult -} diff --git a/packages/graphql/src/sync-block-range.ts b/packages/graphql/src/sync-block-range.ts deleted file mode 100644 index 2111da5fd..000000000 --- a/packages/graphql/src/sync-block-range.ts +++ /dev/null @@ -1,14 +0,0 @@ -import NewAddBlockRange from './application/uc/NewAddBlockRange'; - -async function main() { - const from = Number.parseInt(process.argv[2]); - const to = Number.parseInt(process.argv[3]) || from; - const addBlockRange = new NewAddBlockRange(); - const input = { - from, - to, - }; - await addBlockRange.execute(input); -} - -main(); diff --git a/packages/graphql/src/syncer.ts b/packages/graphql/src/syncer.ts deleted file mode 100644 index 43e187e22..000000000 --- a/packages/graphql/src/syncer.ts +++ /dev/null @@ -1,221 +0,0 @@ -import { setTimeout } from 'node:timers/promises'; -import NewAddBlockRange from './application/uc/NewAddBlockRange'; -import { logger } from './core/Logger'; -import { client } from './graphql/GraphQLSDK'; -import type { GQLBlock } from './graphql/generated/sdk'; -import { LATEST_HEIGHT_QUERY } from './graphql/queries/syncer'; -import BlockDAO from './infra/dao/BlockDAO'; - -const FUEL_CORE_TIMEOUT_MS = 5000; -const BACKOFF_INITIAL_MS = 1000; -const BACKOFF_MAX_MS = 5000; -const BATCH_SIZE = 2; -const MAX_RANGE = 1000; -const CONCURRENCY = 10; - -function createBatchEvents(idsRange: { from: number; to: number }) { - const diff = idsRange.to - idsRange.from; - const numberOfBatches = Math.ceil(diff / BATCH_SIZE); - return Array.from({ length: numberOfBatches }).map((_, page) => { - const from = idsRange.from + page * BATCH_SIZE; - const to = Math.min(from + BATCH_SIZE, idsRange.to); - return { from, to }; - }); -} - -function fetchLatestHeight(): Promise { - const p = Promise.race([ - client.client.request<{ - blocks: { nodes: { header: { height: string } }[] }; - }>(LATEST_HEIGHT_QUERY), - setTimeout(FUEL_CORE_TIMEOUT_MS).then(() => null), - ]).then((response) => { - if (!response) return null; - const lastBlock = response.blocks?.nodes[0]; - return Number(lastBlock?.header.height ?? '0'); - }); - p.catch(() => {}); - return p; -} - -async function main() { - const addBlockRange = new NewAddBlockRange(); - const blockDAO = new BlockDAO(); - let backoffMs = BACKOFF_INITIAL_MS; - let cursor = (await blockDAO.findLatestBlockHeight()) ?? 0; - - let prefetchedBlocks: Promise<{ - blocks: GQLBlock[]; - from: number; - to: number; - }> | null = null; - let heightPromise: Promise = fetchLatestHeight(); - - let statsBlockCount = 0; - let statsStartTime = Date.now(); - let lastKnownHeight = 0; - const STATS_INTERVAL_MS = 30_000; - - function emitStats() { - const now = Date.now(); - if (now - statsStartTime < STATS_INTERVAL_MS) return; - const elapsed = (now - statsStartTime) / 1000; - const bps = (statsBlockCount / elapsed).toFixed(1); - const behind = lastKnownHeight > cursor ? lastKnownHeight - cursor : 0; - logger.info( - 'Syncer', - `[stats] blocks=${statsBlockCount} elapsed=${elapsed.toFixed(0)}s throughput=${bps} blocks/sec cursor=${cursor} behind=${behind}`, - ); - statsBlockCount = 0; - statsStartTime = now; - } - - function startPrefetch(from: number, to: number) { - const p = addBlockRange.getBlocks(from, to).then((blocks) => { - return { blocks, from, to }; - }); - p.catch(() => {}); - return p; - } - - while (true) { - emitStats(); - const startTime = Date.now(); - let height: number; - try { - const result = await heightPromise; - const latencyMs = Date.now() - startTime; - if (result === null) { - logger.warn( - 'Syncer', - `Fuel core timeout after ${latencyMs}ms, backing off ${backoffMs}ms`, - ); - await setTimeout(backoffMs); - backoffMs = Math.min(backoffMs * 2, BACKOFF_MAX_MS); - prefetchedBlocks = null; - heightPromise = fetchLatestHeight(); - continue; - } - logger.debug('Syncer', `Fuel core response time: ${latencyMs}ms`); - backoffMs = BACKOFF_INITIAL_MS; - height = result; - lastKnownHeight = height; - } catch (e: any) { - const latencyMs = Date.now() - startTime; - logger.error( - 'Syncer', - `Could not fetch blocks from fuel core after ${latencyMs}ms, backing off ${backoffMs}ms`, - e, - ); - await setTimeout(backoffMs); - backoffMs = Math.min(backoffMs * 2, BACKOFF_MAX_MS); - prefetchedBlocks = null; - heightPromise = fetchLatestHeight(); - continue; - } - - logger.debug('Syncer', `Fuel core height: ${height}`); - logger.debug('Syncer', `Indexer height: ${cursor}`); - - if (cursor >= height) { - if (height < cursor) { - logger.warn( - 'Syncer', - `Fuel core is behind indexer (${height} < ${cursor}), waiting for node to catch up`, - ); - await setTimeout(5000); - } else { - await setTimeout(100); - } - prefetchedBlocks = null; - heightPromise = fetchLatestHeight(); - continue; - } - - const to = cursor + MAX_RANGE; - const range = { from: cursor, to: Math.min(to, height) }; - const events = createBatchEvents(range); - - let failed = false; - for (let i = 0; i < events.length && !failed; i += CONCURRENCY) { - const chunk = events.slice(i, i + CONCURRENCY); - - // Fetch all batches in this chunk concurrently - // Reuse prefetched data only if its range covers the event's range - const fetchPromises = chunk.map(async (event, idx) => { - if (idx === 0 && prefetchedBlocks) { - const p = prefetchedBlocks; - prefetchedBlocks = null; - try { - const prefetched = await p; - if (prefetched.from === event.from && prefetched.to >= event.to) { - return prefetched; - } - } catch {} - } - return startPrefetch(event.from, event.to); - }); - - const fetched = await Promise.allSettled(fetchPromises); - - // Start prefetching the NEXT chunk's first batch while we process this one - // Also prefetch the height check concurrently - heightPromise = fetchLatestHeight(); - const nextChunkStart = i + CONCURRENCY; - if (nextChunkStart < events.length) { - prefetchedBlocks = startPrefetch( - events[nextChunkStart].from, - events[nextChunkStart].to, - ); - } else { - // Speculatively prefetch next 2 blocks (small window — large ranges - // past the tip make Fuel Core very slow) - const nextFrom = chunk[chunk.length - 1].to; - const nextTo = nextFrom + 2; - prefetchedBlocks = startPrefetch(nextFrom, nextTo); - } - - // Process all fetched batches concurrently - const results = await Promise.allSettled( - fetched.map(async (fetchResult) => { - if (fetchResult.status === 'rejected') throw fetchResult.reason; - const { blocks, from: bFrom, to: bTo } = fetchResult.value; - logger.debug('Syncer', `Processing blocks #${bFrom} - #${bTo}`); - return addBlockRange.processBlocks(blocks, bFrom, bTo); - }), - ); - - let hasFailure = false; - for (let j = 0; j < results.length; j++) { - if (results[j].status === 'fulfilled') { - const highest = (results[j] as PromiseFulfilledResult) - .value; - const prevCursor = cursor; - if (!hasFailure) cursor = highest ?? chunk[j].to; - statsBlockCount += cursor - prevCursor; - } else { - hasFailure = true; - const err = (results[j] as PromiseRejectedResult).reason; - const is429 = err?.status === 429 || /\b429\b/.test(err?.message); - logger.error( - 'Syncer', - `Failed batch #${chunk[j].from}-#${chunk[j].to}${is429 ? ' (rate limited)' : ''}: ${err?.message}`, - ); - } - } - - if (hasFailure) { - await setTimeout(2000); - failed = true; - prefetchedBlocks = null; - heightPromise = fetchLatestHeight(); - } - } - } -} - -main().catch(async (error: any) => { - logger.error('Syncer', 'Uncaught error', error); - logger.error('Syncer', 'Process exit'); - process.exit(1); -}); diff --git a/packages/graphql/tsconfig.json b/packages/graphql/tsconfig.json index 2dd54eff4..6c1fe1ba7 100644 --- a/packages/graphql/tsconfig.json +++ b/packages/graphql/tsconfig.json @@ -8,7 +8,7 @@ "module": "ESNext", "moduleResolution": "Bundler", "strict": true, - "types": ["node", "jest"], + "types": ["node"], "jsx": "react-jsx", "esModuleInterop": true, "isolatedModules": true, @@ -24,5 +24,5 @@ } }, "exclude": ["node_modules", "generated"], - "include": ["src", "scripts", "*.config.*", "codegen.*"] + "include": ["src", "*.config.*", "codegen.*"] } diff --git a/packages/graphql/tsup.config.mjs b/packages/graphql/tsup.config.mjs index 915b8c948..2bf37d26a 100644 --- a/packages/graphql/tsup.config.mjs +++ b/packages/graphql/tsup.config.mjs @@ -15,13 +15,6 @@ export default defineConfig(() => [ index: 'src/index.ts', sdk: 'src/graphql/generated/sdk.ts', 'sdk-provider': 'src/graphql/generated/sdk-provider.ts', - app: 'src/app.ts', - syncer: 'src/syncer.ts', - assets: 'src/assets.ts', - balance: 'src/balance.ts', - l1: 'src/l1.ts', - cosmos: 'src/cosmos.ts', - jobs: 'src/jobs.ts', }, async onSuccess() { const cwd = process.cwd(); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1382e6951..08e60396b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,22 +26,22 @@ importers: dependencies: '@fuel-ts/account': specifier: 0.100.0 - version: 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + version: 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': specifier: 0.100.0 version: 0.100.0 '@fuels/connectors': specifier: 0.45.0 - version: 0.45.0(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.9)(fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + version: 0.45.0(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.9)(fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) '@fuels/react': specifier: 0.44.1 - version: 0.44.1(@tanstack/react-query@5.56.2(react@18.2.0))(@types/react-dom@18.2.22)(@types/react@18.2.54)(fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.44.1(@tanstack/react-query@5.56.2(react@18.2.0))(@types/react-dom@18.2.22)(@types/react@18.2.54)(fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@fuels/react-xstore': specifier: 0.23.0 - version: 0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + version: 0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(@xstate/react@3.2.2(@types/react@18.2.54)(react@18.2.0)(xstate@5.0.0-beta.54))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.0.0-beta.54) fuels: specifier: 0.103.0 - version: 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + version: 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -63,13 +63,13 @@ importers: version: 1.9.4 '@fuels/jest': specifier: 0.20.0 - version: 0.20.0(@jest/globals@29.7.0)(@types/jest@29.5.12)(bufferutil@4.0.9)(jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))(utf-8-validate@5.0.10)(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + version: 0.20.0(@jest/globals@29.7.0)(@types/jest@29.5.12)(bufferutil@4.0.9)(jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))(utf-8-validate@5.0.10)(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuels/ts-config': specifier: 0.26.0 version: 0.26.0(typescript@5.4.5) '@fuels/tsup-config': specifier: 0.26.0 - version: 0.26.0(tsup@8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5)) + version: 0.26.0(tsup@8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5)) '@jest/types': specifier: 29.6.3 version: 29.6.3 @@ -78,7 +78,7 @@ importers: version: 3.1.8 '@openzeppelin/hardhat-upgrades': specifier: ^3.0.3 - version: 3.9.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + version: 3.9.1(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@playwright/test': specifier: 1.48.2 version: 1.48.2 @@ -117,7 +117,7 @@ importers: version: 9.1.5 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + version: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) @@ -132,13 +132,13 @@ importers: version: 4.1.5 ts-jest: specifier: ^29.1.2 - version: 29.4.1(@babel/core@7.28.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.4.1(@babel/core@7.28.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))(typescript@5.4.5) ts-node: specifier: 10.9.2 - version: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) + version: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5) tsup: specifier: 8.0.2 - version: 8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5) + version: 8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5) tsx: specifier: 4.7.1 version: 4.7.1 @@ -156,7 +156,7 @@ importers: version: 2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) vitest: specifier: '>=3.2.6' - version: 4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) + version: 4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) wagmi: specifier: 2.12.7 version: 2.12.7(@tanstack/query-core@5.56.2)(@tanstack/react-query@5.56.2(react@18.2.0))(@types/react@18.2.54)(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) @@ -175,13 +175,13 @@ importers: version: 16.4.1 fuels: specifier: 0.103.0 - version: 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + version: 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) tsx: specifier: 4.7.1 version: 4.7.1 vitest: specifier: '>=3.2.6' - version: 4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) + version: 4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) docker/erc20-deployer/deployer: dependencies: @@ -197,7 +197,7 @@ importers: devDependencies: ts-node: specifier: ^10.9.2 - version: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) + version: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5) typescript: specifier: 5.4.5 version: 5.4.5 @@ -343,7 +343,7 @@ importers: version: 0.1.20(tailwindcss@4.1.11) tsup: specifier: ^8.0.2 - version: 8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5) + version: 8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5) typescript: specifier: 5.4.5 version: 5.4.5 @@ -466,7 +466,7 @@ importers: version: 1.0.0 tailwind-variants: specifier: 0.1.20 - version: 0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))) + version: 0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))) viem: specifier: 2.23.2 version: 2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -482,7 +482,7 @@ importers: devDependencies: '@tailwindcss/vite': specifier: 4.1.11 - version: 4.1.11(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + version: 4.1.11(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) '@tanstack/react-query-devtools': specifier: 5.56.2 version: 5.56.2(@tanstack/react-query@5.56.2(react@18.2.0))(react@18.2.0) @@ -497,7 +497,7 @@ importers: version: 1.8.8 '@vitejs/plugin-react-swc': specifier: ^3.7.0 - version: 3.11.0(@swc/helpers@0.5.17)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + version: 3.11.0(@swc/helpers@0.5.17)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) autoprefixer: specifier: 10.4.17 version: 10.4.17(postcss@8.4.35) @@ -512,10 +512,10 @@ importers: version: 16.0.1(postcss@8.4.35) tailwindcss: specifier: 3.4.4 - version: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + version: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) tailwindcss-animate: specifier: 1.0.7 - version: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))) + version: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))) tailwindcss-radix: specifier: 3.0.3 version: 3.0.3 @@ -527,13 +527,13 @@ importers: version: 5.4.5 vite: specifier: ^6.0.0 - version: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + version: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) vite-plugin-node-polyfills: specifier: 0.24.0 - version: 0.24.0(rollup@4.46.2)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + version: 0.24.0(rollup@4.46.2)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) vite-plugin-svgr: specifier: 4.2.0 - version: 4.2.0(rollup@4.46.2)(typescript@5.4.5)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + version: 4.2.0(rollup@4.46.2)(typescript@5.4.5)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) packages/app-portal: dependencies: @@ -548,7 +548,7 @@ importers: version: 1.0.0 '@fuels/react-xstore': specifier: 0.23.0 - version: 0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + version: 0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(@xstate/react@3.2.2(@types/react@18.2.54)(react@18.2.0)(xstate@4.38.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@4.38.3) '@hookform/resolvers': specifier: ^3.1.1 version: 3.3.4(react-hook-form@7.54.0(react@18.2.0)) @@ -784,61 +784,22 @@ importers: devDependencies: '@fuels/playwright-utils': specifier: 0.57.1 - version: 0.57.1(@playwright/test@1.48.2)(fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))) + version: 0.57.1(@playwright/test@1.48.2)(fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))) '@synthetixio/synpress': specifier: 4.1.0 - version: 4.1.0(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8) + version: 4.1.0(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8) app-commons: specifier: workspace:* version: link:../app-commons fuels: specifier: 0.103.0 - version: 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + version: 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) viem: specifier: 2.23.2 version: 2.23.2(bufferutil@4.0.9)(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8) packages/graphql: dependencies: - '@fuel-infrastructure/fuelsequencerjs': - specifier: 0.0.14 - version: 0.0.14(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@graphql-tools/load': - specifier: 8.0.2 - version: 8.0.2(graphql@16.10.0) - '@graphql-tools/load-files': - specifier: 7.0.0 - version: 7.0.0(graphql@16.10.0) - '@graphql-tools/merge': - specifier: 9.0.4 - version: 9.0.4(graphql@16.10.0) - '@graphql-tools/schema': - specifier: 10.0.4 - version: 10.0.4(graphql@16.10.0) - '@graphql-tools/stitch': - specifier: ^9.2.10 - version: 9.4.28(graphql@16.10.0) - '@graphql-tools/utils': - specifier: ^10.2.3 - version: 10.9.1(graphql@16.10.0) - '@types/cors': - specifier: ^2.8.17 - version: 2.8.19 - app-commons: - specifier: workspace:* - version: link:../app-commons - bech32: - specifier: 2.0.0 - version: 2.0.0 - bignumber.js: - specifier: 9.1.2 - version: 9.1.2 - commander: - specifier: 12.1.0 - version: 12.1.0 - cors: - specifier: ^2.8.5 - version: 2.8.5 dayjs: specifier: 1.11.11 version: 1.11.11 @@ -847,64 +808,22 @@ importers: version: 16.4.5 drizzle-orm: specifier: ^0.31.2 - version: 0.31.4(@types/better-sqlite3@7.6.11)(@types/pg@8.15.5)(@types/react@18.2.54)(better-sqlite3@11.3.0)(pg@8.16.3)(react@18.2.0) - ethers: - specifier: ^6.13.1 - version: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - express: - specifier: 5.0.0 - version: 5.0.0 + version: 0.31.4(@types/better-sqlite3@7.6.11)(@types/react@18.2.54)(better-sqlite3@11.3.0)(react@18.2.0) graphql: specifier: 16.10.0 version: 16.10.0 - graphql-yoga: - specifier: 5.6.0 - version: 5.6.0(graphql@16.10.0) - kafkajs: - specifier: 2.2.4 - version: 2.2.4 lodash: specifier: ^4.17.21 version: 4.17.21 - node-fetch: - specifier: 3.3.2 - version: 3.3.2 npm-run-all: specifier: ^4.1.5 version: 4.1.5 - pg: - specifier: ^8.12.0 - version: 8.16.3 - pg-boss: - specifier: 9.0.3 - version: 9.0.3 - pg-promise: - specifier: 11.9.1 - version: 11.9.1 - pino: - specifier: 9.2.0 - version: 9.2.0 - pino-pretty: - specifier: 11.2.1 - version: 11.2.1 - pm2: - specifier: ^5.4.1 - version: 5.4.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) shallow-equal-object: specifier: 1.1.1 version: 1.1.1 tai64: specifier: ^1.0.0 version: 1.0.0 - winston: - specifier: 3.13.0 - version: 3.13.0 - xstate: - specifier: ^5.14.0 - version: 5.20.2 - yargs: - specifier: 17.7.2 - version: 17.7.2 zod: specifier: 3.23.8 version: 3.23.8 @@ -914,7 +833,7 @@ importers: version: 0.26.0(typescript@5.9.2) '@graphql-codegen/cli': specifier: ^5.0.2 - version: 5.0.7(@types/node@20.19.10)(bufferutil@4.0.9)(crossws@0.3.5)(enquirer@2.3.6)(graphql@16.10.0)(typescript@5.9.2)(utf-8-validate@5.0.10) + version: 5.0.7(@types/node@20.19.10)(bufferutil@4.0.9)(crossws@0.3.5)(graphql@16.10.0)(typescript@5.9.2)(utf-8-validate@5.0.10) '@graphql-codegen/introspection': specifier: ^4.0.3 version: 4.0.3(graphql@16.10.0) @@ -933,39 +852,15 @@ importers: '@graphql-tools/graphql-file-loader': specifier: 8.0.1 version: 8.0.1(graphql@16.10.0) - '@swc/core': - specifier: 1.4.1 - version: 1.4.1(@swc/helpers@0.5.17) - '@swc/jest': - specifier: 0.2.36 - version: 0.2.36(@swc/core@1.4.1(@swc/helpers@0.5.17)) - '@testcontainers/postgresql': - specifier: 10.10.0 - version: 10.10.0 '@types/fs-extra': specifier: 11.0.4 version: 11.0.4 - '@types/jest': - specifier: 29.5.12 - version: 29.5.12 '@types/lodash': specifier: 4.17.6 version: 4.17.6 '@types/node': specifier: ^20.14.9 version: 20.19.10 - '@types/pg': - specifier: ^8.11.6 - version: 8.15.5 - '@types/yargs': - specifier: 17.0.32 - version: 17.0.32 - chalk: - specifier: 5.3.0 - version: 5.3.0 - drizzle-kit: - specifier: ^0.22.8 - version: 0.22.8 fs-extra: specifier: 11.2.0 version: 11.2.0 @@ -984,15 +879,9 @@ importers: graphql-tag: specifier: ^2.12.6 version: 2.12.6(graphql@16.10.0) - jest: - specifier: 29.7.0 - version: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - testcontainers: - specifier: 10.10.0 - version: 10.10.0 tsup: specifier: 8.1.0 - version: 8.1.0(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2))(typescript@5.9.2) + version: 8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2))(typescript@5.9.2) tsx: specifier: 4.16.0 version: 4.16.0 @@ -1034,7 +923,7 @@ importers: version: 2.46.0(react@18.2.0) '@tailwindcss/typography': specifier: 0.5.10 - version: 0.5.10(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))) + version: 0.5.10(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))) clsx: specifier: 2.1.0 version: 2.1.0 @@ -1079,23 +968,23 @@ importers: version: 17.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) tailwind-variants: specifier: 0.1.20 - version: 0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))) + version: 0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))) tailwindcss: specifier: 3.4.4 - version: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + version: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) tailwindcss-animate: specifier: 1.0.7 - version: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))) + version: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))) tailwindcss-radix: specifier: 3.0.3 version: 3.0.3 tailwindcss-themer: specifier: 4.0.0 - version: 4.0.0(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))) + version: 4.0.0(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))) devDependencies: '@chialab/esbuild-plugin-postcss': specifier: ^0.18.0 - version: 0.18.0(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + version: 0.18.0(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) '@types/lodash': specifier: 4.14.202 version: 4.14.202 @@ -1128,10 +1017,10 @@ importers: version: 5.4.5 vite: specifier: ^6.0.0 - version: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + version: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) vite-tsconfig-paths: specifier: ^4.3.1 - version: 4.3.2(typescript@5.4.5)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + version: 4.3.2(typescript@5.4.5)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) packages: @@ -1777,9 +1666,6 @@ packages: resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} engines: {node: '>=6.9.0'} - '@balena/dockerignore@1.0.2': - resolution: {integrity: sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==} - '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -1878,10 +1764,6 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} - '@colors/colors@1.6.0': - resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} - engines: {node: '>=0.1.90'} - '@confio/ics23@0.6.8': resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} deprecated: Unmaintained. The codebase for this package was moved to https://github.com/cosmos/ics23 but then the JS implementation was removed in https://github.com/cosmos/ics23/pull/353. Please consult the maintainers of https://github.com/cosmos for further assistance. @@ -2167,9 +2049,6 @@ packages: peerDependencies: postcss: ^8.4 - '@dabh/diagnostics@2.0.3': - resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} - '@depay/solana-web3.js@1.98.3': resolution: {integrity: sha512-wxr+2gpjKRZ1eVBLhQYJxImDsRukk0DvCsEElkTMyybP+7SamWRs48o3DYE6VLEgQJFZgOoUec3t5FM5s1J1ww==} @@ -2223,14 +2102,6 @@ packages: resolution: {integrity: sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg==} engines: {node: '>=18.0.0'} - '@esbuild-kit/core-utils@3.3.2': - resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==} - deprecated: 'Merged into tsx: https://tsx.hirok.io' - - '@esbuild-kit/esm-loader@2.6.5': - resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==} - deprecated: 'Merged into tsx: https://tsx.hirok.io' - '@esbuild/aix-ppc64@0.25.3': resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==} engines: {node: '>=18'} @@ -2925,6 +2796,11 @@ packages: '@fuels/react-xstore@0.23.0': resolution: {integrity: sha512-MJdHDiGL1/X9mjSUhRWpO1IvHK+0K1DATEBtmKyY0zW75zZx5v2t46uYlbG4DwqCJsFHuwMkswe2M/2NaMwrcg==} + peerDependencies: + '@xstate/react': ^3.2.2 + react: ^18.2.0 + react-dom: ^18.2.0 + xstate: ^4.38.2 '@fuels/react@0.44.1': resolution: {integrity: sha512-cc2cYzIAB66yYGl5ENoZCWyvcrEfVAyjSqTBtX95411BNXzd2uvfAEh3Yrh/DS3G7/1hiORZeRMXSdEWDQUAaA==} @@ -3066,12 +2942,6 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/batch-delegate@9.0.41': - resolution: {integrity: sha512-ypPT32Ba4imLoXuDYbmCzU7E7i6y9TzJW/JYgt1CQZZy5BJUNnIQ2SE4AnttnyzSfGbYd3aMiVVSK9Ta3E3dKA==} - engines: {node: '>=18.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/batch-execute@9.0.19': resolution: {integrity: sha512-VGamgY4PLzSx48IHPoblRw0oTaBa7S26RpZXt0Y4NN90ytoE0LutlpB2484RbkfcTjv9wa64QD474+YP1kEgGA==} engines: {node: '>=18.0.0'} @@ -3239,12 +3109,6 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/stitch@9.4.28': - resolution: {integrity: sha512-an9j0x5C1bV6OgHcrLtKCFsNDKeiaX9BNUzJpOaVlUzmEEpiLaSTLOen+MBEMaNZ49ZA688UQtOMa2JJHusNsA==} - engines: {node: '>=18.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/url-loader@8.0.33': resolution: {integrity: sha512-Fu626qcNHcqAj8uYd7QRarcJn5XZ863kmxsg1sm0fyjyfBJnsvC7ddFt6Hayz5kxVKfsnjxiDfPMXanvsQVBKw==} engines: {node: '>=16.0.0'} @@ -3665,20 +3529,6 @@ packages: engines: {node: '>=18'} hasBin: true - '@pm2/agent@2.0.4': - resolution: {integrity: sha512-n7WYvvTJhHLS2oBb1PjOtgLpMhgImOq8sXkPBw6smeg9LJBWZjiEgPKOpR8mn9UJZsB5P3W4V/MyvNnp31LKeA==} - - '@pm2/io@6.0.1': - resolution: {integrity: sha512-KiA+shC6sULQAr9mGZ1pg+6KVW9MF8NpG99x26Lf/082/Qy8qsTCtnJy+HQReW1A9Rdf0C/404cz0RZGZro+IA==} - engines: {node: '>=6.0'} - - '@pm2/js-api@0.8.0': - resolution: {integrity: sha512-nmWzrA/BQZik3VBz+npRcNIu01kdBhWL0mxKmP1ciF/gTcujPTQqt027N9fc1pK9ERM8RipFhymw7RcmCyOEYA==} - engines: {node: '>=4.0'} - - '@pm2/pm2-version-check@1.0.4': - resolution: {integrity: sha512-SXsM27SGH3yTWKc2fKR4SYNxsmnvuBQ9dd6QHtEWmiZ/VqaOYPAIlS8+vMcn27YLtAEBGvNRSh3TPNvtjZgfqA==} - '@protobufjs/aspromise@1.1.2': resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -6035,9 +5885,6 @@ packages: peerDependencies: react: ^18 || ^19 - '@testcontainers/postgresql@10.10.0': - resolution: {integrity: sha512-cgzYnhzsYPVwN370bjJCuyAkkjLhGD6EBoQi4j+xKomMU4e6FWu0SYDolP+tiFGKWaS95SsIY3CPp6bnuxBh/A==} - '@testing-library/dom@9.3.4': resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} engines: {node: '>=14'} @@ -6080,9 +5927,6 @@ packages: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} - '@tootallnate/quickjs-emscripten@0.23.0': - resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - '@tsconfig/node10@1.0.11': resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} @@ -6125,9 +5969,6 @@ packages: '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - '@types/cors@2.8.19': - resolution: {integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==} - '@types/d3-array@3.2.1': resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} @@ -6161,12 +6002,6 @@ packages: '@types/deep-eql@4.0.2': resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} - '@types/docker-modem@3.0.6': - resolution: {integrity: sha512-yKpAGEuKRSS8wwx0joknWxsmLha78wNMe9R2S3UNsVOkZded8UqOrV8KoeDXoXsjndxwyF3eIhyClGbO1SEhEg==} - - '@types/dockerode@3.3.42': - resolution: {integrity: sha512-U1jqHMShibMEWHdxYhj3rCMNCiLx5f35i4e3CEUuW+JSSszc/tVqc6WCAPdhwBymG5R/vgbcceagK0St7Cq6Eg==} - '@types/dom-screen-wake-lock@1.0.3': resolution: {integrity: sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==} @@ -6239,15 +6074,9 @@ packages: '@types/node@20.19.10': resolution: {integrity: sha512-iAFpG6DokED3roLSP0K+ybeDdIX6Bc0Vd3mLW5uDqThPWtNos3E+EqOM11mPQHKzfWHqEBuLjIlsBQQ8CsISmQ==} - '@types/node@22.7.5': - resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} - '@types/pbkdf2@3.1.2': resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} - '@types/pg@8.15.5': - resolution: {integrity: sha512-LF7lF6zWEKxuT3/OR8wAZGzkg4ENGXFNyiV/JeOt9z5B+0ZVwbql9McqX5c/WStFq1GaGso7H1AzP/qSzmlCKQ==} - '@types/prop-types@15.7.15': resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} @@ -6266,15 +6095,6 @@ packages: '@types/secp256k1@4.0.6': resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==} - '@types/ssh2-streams@0.1.12': - resolution: {integrity: sha512-Sy8tpEmCce4Tq0oSOYdfqaBpA3hDM8SoxoFh5vzFsu2oL+znzGz8oVWW7xb4K920yYMUY+PIG31qZnFMfPWNCg==} - - '@types/ssh2@0.5.52': - resolution: {integrity: sha512-lbLLlXxdCZOSJMCInKH2+9V/77ET2J6NPQHpFI0kda61Dd1KglJs+fPQBchizmzYSOJBgdTajhPqBO1xxLywvg==} - - '@types/ssh2@1.15.5': - resolution: {integrity: sha512-N1ASjp/nXH3ovBHddRJpli4ozpk6UdDYIX4RJWFa9L1YKnzdhTlVmiGHm4DZnj/jLbqZpes4aeR30EFGQtvhQQ==} - '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -6284,9 +6104,6 @@ packages: '@types/tough-cookie@4.0.5': resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - '@types/triple-beam@1.3.5': - resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} - '@types/trusted-types@2.0.7': resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} @@ -6780,10 +6597,6 @@ packages: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} - accepts@2.0.0: - resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} - engines: {node: '>= 0.6'} - acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} @@ -6828,16 +6641,6 @@ packages: amazon-cognito-identity-js@6.3.15: resolution: {integrity: sha512-G2mzTlGYHKYh9oZDO0Gk94xVQ4iY9GYWBaYScbDYvz05ps6dqi0IvdNx1Lxi7oA3tjS5X+mUN7/svFJJdOB9YA==} - amp-message@0.1.2: - resolution: {integrity: sha512-JqutcFwoU1+jhv7ArgW38bqrE+LQdcRv4NxNw0mp0JHQyB6tXesWRjtYKlDgHRY2o3JE5UTaBGUK8kSWUdxWUg==} - - amp@0.3.1: - resolution: {integrity: sha512-OwIuC4yZaRogHKiuU5WlMR5Xk/jAcpPtawWL05Gj8Lvm2F6mwoJt4O/bHI+DHwG79vWd+8OFYM4/BzYqyRd3qw==} - - ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -6881,18 +6684,6 @@ packages: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} - archiver-utils@2.1.0: - resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} - engines: {node: '>= 6'} - - archiver-utils@3.0.4: - resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==} - engines: {node: '>= 10'} - - archiver@5.3.2: - resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==} - engines: {node: '>= 10'} - arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} @@ -6934,13 +6725,6 @@ packages: asn1.js@4.10.1: resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} - asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - - assert-options@0.8.1: - resolution: {integrity: sha512-5lNGRB5g5i2bGIzb+J1QQE1iKU/WEMVBReFIc5pPDWjcPj23otPL0eI6PB2v7QPi0qU6Mhym5D3y0ZiSIOf3GA==} - engines: {node: '>=10.0.0'} - assert@2.1.0: resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} @@ -6948,10 +6732,6 @@ packages: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} - ast-types@0.13.4: - resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} - engines: {node: '>=4'} - ast-types@0.16.1: resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} engines: {node: '>=4'} @@ -6964,9 +6744,6 @@ packages: resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} engines: {node: '>= 0.4'} - async-lock@1.4.1: - resolution: {integrity: sha512-Az2ZTpuytrtqENulXwO3GGv1Bztugx6TT37NIo7imr/Qo0gsYiGtSdBa2B6fsXhTpVZDNfu1Qn3pk531e3q+nQ==} - async-mutex@0.2.6: resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==} @@ -6976,9 +6753,6 @@ packages: async@2.6.4: resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} - asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -7019,9 +6793,6 @@ packages: axios@1.15.0: resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==} - b4a@1.6.7: - resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} - babel-jest@29.7.0: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -7063,36 +6834,6 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - bare-events@2.6.1: - resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==} - - bare-fs@4.2.0: - resolution: {integrity: sha512-oRfrw7gwwBVAWx9S5zPMo2iiOjxyiZE12DmblmMQREgcogbNO0AFaZ+QBxxkEXiPspcpvO/Qtqn8LabUx4uYXg==} - engines: {bare: '>=1.16.0'} - peerDependencies: - bare-buffer: '*' - peerDependenciesMeta: - bare-buffer: - optional: true - - bare-os@3.6.1: - resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==} - engines: {bare: '>=1.14.0'} - - bare-path@3.0.0: - resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} - - bare-stream@2.7.0: - resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==} - peerDependencies: - bare-buffer: '*' - bare-events: '*' - peerDependenciesMeta: - bare-buffer: - optional: true - bare-events: - optional: true - base-x@3.0.11: resolution: {integrity: sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==} @@ -7105,14 +6846,6 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - basic-ftp@5.2.0: - resolution: {integrity: sha512-VoMINM2rqJwJgfdHq6RiUudKt2BV+FY5ZFezP/ypmwayk68+NzzAQy4XXLlqsGD4MCzq3DrmNFD/uUmBJuGoXw==} - engines: {node: '>=10.0.0'} - deprecated: Security vulnerability fixed in 5.2.1, please upgrade - - bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - bech32@1.1.4: resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} @@ -7149,11 +6882,6 @@ packages: blakejs@1.2.1: resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} - blessed@0.1.81: - resolution: {integrity: sha512-LoF5gae+hlmfORcG1M5+5XZi4LBmvlXTzwJWzUlPryN/SJdSflZvROM2TwkT0GMpq7oqT48NRd4GS7BiVBc5OQ==} - engines: {node: '>= 0.8.0'} - hasBin: true - bluebird@3.4.7: resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==} @@ -7166,13 +6894,6 @@ packages: bn.js@5.2.2: resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} - bodec@0.1.0: - resolution: {integrity: sha512-Ylo+MAo5BDUq1KA3f3R/MFhh+g8cnHmo8bz3YPGhI1znrMaf77ol1sfvYJzsw3nTE+Y2GryfDxBaR+AqpAkEHQ==} - - body-parser@2.2.0: - resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==} - engines: {node: '>=18'} - borsh@0.7.0: resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} @@ -7245,9 +6966,6 @@ packages: buffer-alloc@1.2.0: resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - buffer-fill@1.0.0: resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==} @@ -7278,10 +6996,6 @@ packages: resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==} engines: {node: '>=6.14.2'} - buildcheck@0.0.6: - resolution: {integrity: sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==} - engines: {node: '>=10.0.0'} - builtin-status-codes@3.0.0: resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} @@ -7301,14 +7015,6 @@ packages: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} engines: {node: '>=10.16.0'} - byline@5.0.0: - resolution: {integrity: sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q==} - engines: {node: '>=0.10.0'} - - bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -7410,9 +7116,6 @@ packages: chardet@2.1.0: resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} - charm@0.1.2: - resolution: {integrity: sha512-syedaZ9cPe7r3hoQA9twWYKu5AIyCswN5+szkmPBe9ccdLrj4bYaCnLVPTLd2kgVRc7+zoX4tyPgRnFKCj5YjQ==} - chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} @@ -7466,10 +7169,6 @@ packages: resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==} engines: {node: '>= 0.2.0'} - cli-tableau@2.0.1: - resolution: {integrity: sha512-he+WTicka9cl0Fg/y+YyxcN6/bfQ/1O3QmgxRXDhABKqLzvoOSM4fMzp39uMyLBulAFuywD2N7UaoQE7WaADxQ==} - engines: {node: '>=8.10.0'} - cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} @@ -7531,9 +7230,6 @@ packages: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true - color@3.2.1: - resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} - color@4.2.3: resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} engines: {node: '>=12.5.0'} @@ -7545,9 +7241,6 @@ packages: resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} - colorspace@1.1.4: - resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} - combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} @@ -7572,9 +7265,6 @@ packages: resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==} engines: {node: '>=20'} - commander@2.15.1: - resolution: {integrity: sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==} - commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -7593,10 +7283,6 @@ packages: compare-versions@6.1.1: resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==} - compress-commons@4.1.2: - resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==} - engines: {node: '>= 10'} - concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -7619,38 +7305,18 @@ packages: constants-browserify@1.0.0: resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - content-disposition@1.0.0: - resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==} - engines: {node: '>= 0.6'} - - content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} - convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} cookie-es@1.2.2: resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} - cookie-signature@1.2.2: - resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} - engines: {node: '>=6.6.0'} - - cookie@0.7.1: - resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} - engines: {node: '>= 0.6'} - copy-to-clipboard@3.3.3: resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: '>= 0.10'} - cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} @@ -7663,19 +7329,11 @@ packages: cosmjs-types@0.9.0: resolution: {integrity: sha512-MN/yUe6mkJwHnCFfsNPeCfXVhyxHYW6c/xDUzrSbBycYzw++XvWDMJArXp2pLdgD6FQ8DW79vkPjeNKVrXaHeQ==} - cpu-features@0.0.10: - resolution: {integrity: sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==} - engines: {node: '>=10.0.0'} - crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} engines: {node: '>=0.8'} hasBin: true - crc32-stream@4.0.3: - resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==} - engines: {node: '>= 10'} - create-ecdh@4.0.4: resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} @@ -7696,14 +7354,6 @@ packages: create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - cron-parser@4.9.0: - resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==} - engines: {node: '>=12.0.0'} - deprecated: v4 is no longer maintained, upgrade to v5 - - croner@4.1.97: - resolution: {integrity: sha512-/f6gpQuxDaqXu+1kwQYSckUglPaOrHdbIlBAu0YuW8/Cdb45XwXYNUBXg3r/9Mo6n540Kn/smKcZWko5x99KrQ==} - cross-argv@2.0.0: resolution: {integrity: sha512-YIaY9TR5Nxeb8SMdtrU8asWVM4jqJDNDYlKV21LxtYcfNJhp1kEsgSa6qXwXgzN0WQWGODps0+TlGp2xQSHwOg==} @@ -7788,9 +7438,6 @@ packages: csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - culvert@0.1.2: - resolution: {integrity: sha512-yi1x3EAWKjQTreYWeSd98431AV+IEE0qoDyOoaHJ7KJ21gv6HtBXHVLX74opVSGqcR8/AbjJBHAHpcOy2bj5Gg==} - d3-array@3.2.4: resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} engines: {node: '>=12'} @@ -7839,10 +7486,6 @@ packages: resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} engines: {node: '>= 12'} - data-uri-to-buffer@6.0.2: - resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} - engines: {node: '>= 14'} - data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} @@ -7866,18 +7509,12 @@ packages: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} - dateformat@4.6.3: - resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} - dayjs@1.11.10: resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} dayjs@1.11.11: resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - dayjs@1.8.36: - resolution: {integrity: sha512-3VmRXEtw7RZKAf+4Tv1Ym9AGeo8r8+CjDi26x+7SYQil1UqtqdaokhzoEJohqlzt0m5kacJSDhJQkG/LWhpRBw==} - debounce@1.2.1: resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} @@ -7898,15 +7535,6 @@ packages: supports-color: optional: true - debug@4.3.6: - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.3.7: resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} @@ -7990,10 +7618,6 @@ packages: defu@6.1.4: resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - degenerator@5.0.1: - resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} - engines: {node: '>= 14'} - delay@5.0.0: resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} engines: {node: '>=10'} @@ -8002,10 +7626,6 @@ packages: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - dependency-graph@0.11.0: resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} engines: {node: '>= 0.6.0'} @@ -8070,18 +7690,6 @@ packages: dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - docker-compose@0.24.8: - resolution: {integrity: sha512-plizRs/Vf15H+GCVxq2EUvyPK7ei9b/cVesHvjnX4xaXjM9spHe2Ytq0BitndFgvTJ3E3NljPNUEl7BAN43iZw==} - engines: {node: '>= 6.0.0'} - - docker-modem@3.0.8: - resolution: {integrity: sha512-f0ReSURdM3pcKPNS30mxOHSbaFLcknGmQjwSfmbcdOw1XWKXVhukM3NJHhr7NpY9BIyyWQb0EBo3KQvvuU5egQ==} - engines: {node: '>= 8.0'} - - dockerode@3.3.5: - resolution: {integrity: sha512-/0YNa3ZDNeLr/tSckmD69+Gq+qVNhvKfAHNeZJBnp7EOP6RGKV8ORrJHkUn20So5wU+xxT7+1n5u8PjHbfjbSA==} - engines: {node: '>= 8.0'} - dom-accessibility-api@0.5.16: resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} @@ -8111,10 +7719,6 @@ packages: resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} engines: {node: '>=12'} - drizzle-kit@0.22.8: - resolution: {integrity: sha512-VjI4wsJjk3hSqHSa3TwBf+uvH6M6pRHyxyoVbt935GUzP9tUR/BRZ+MhEJNgryqbzN2Za1KP0eJMTgKEPsalYQ==} - hasBin: true - drizzle-orm@0.31.4: resolution: {integrity: sha512-VGD9SH9aStF2z4QOTnVlVX/WghV/EnuEzTmsH3fSVp2E4fFgc8jl3viQrS/XUJx1ekW4rVVLJMH42SfGQdjX3Q==} peerDependencies: @@ -8224,9 +7828,6 @@ packages: eciesjs@0.3.21: resolution: {integrity: sha512-6FiThm7KlTihph8ROhq/BHEglGCJSwq6c8KVgcCcJiNJFNlbrFtfnTqZobVmWIB764mzhZTOBFyinADSXXvTLg==} - ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.200: resolution: {integrity: sha512-rFCxROw7aOe4uPTfIAx+rXv9cEcGx+buAF4npnhtTqCJk5KDFRnh3+KYj7rdVh6lsFt5/aPs+Irj9rZ33WMA7w==} @@ -8262,16 +7863,9 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - enabled@2.0.0: - resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} - encode-utf8@1.0.3: resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} - encodeurl@2.0.0: - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} - engines: {node: '>= 0.8'} - end-of-stream@1.4.5: resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} @@ -8289,10 +7883,6 @@ packages: resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} engines: {node: '>=10.13.0'} - enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} - entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -8350,11 +7940,6 @@ packages: es6-promisify@5.0.0: resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==} - esbuild-register@3.6.0: - resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} - peerDependencies: - esbuild: '>=0.25.0' - esbuild@0.25.3: resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==} engines: {node: '>=18'} @@ -8369,9 +7954,6 @@ packages: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} - escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} @@ -8380,10 +7962,6 @@ packages: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} engines: {node: '>=8'} - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - escodegen@2.1.0: resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} engines: {node: '>=6.0'} @@ -8408,10 +7986,6 @@ packages: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} - etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - eth-block-tracker@7.1.0: resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==} engines: {node: '>=14.0.0'} @@ -8443,20 +8017,10 @@ packages: resolution: {integrity: sha512-kPHNTnhVWiWU6AVo6CAeTjXEK24SpCXyZvwG9ROFjT0Vlux0EOhWKBAeC+45iDj80QNJTYaT1SDEmeunT0vDNw==} engines: {node: '>=14.0.0'} - ethers@6.15.0: - resolution: {integrity: sha512-Kf/3ZW54L4UT0pZtsY/rf+EkBU7Qi5nnhonjUb8yTXcxH3cdcWrV2cRyk0Xk/4jK6OoHhxxZHriyhje20If2hQ==} - engines: {node: '>=14.0.0'} - event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} - eventemitter2@0.4.14: - resolution: {integrity: sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ==} - - eventemitter2@5.0.1: - resolution: {integrity: sha512-5EM1GHXycJBS6mauYAbVKT1cVs7POKWb2NXD4Vyt8dDqeZa7LaDK1/sjtL+Zb0lzTpSNil4596Dyu97hz37QLg==} - eventemitter2@6.4.9: resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} @@ -8507,10 +8071,6 @@ packages: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - express@5.0.0: - resolution: {integrity: sha512-V4UkHQc+B7ldh1YC84HCXHwf60M4BOMvp9rkvTUWCK5apqDC1Esnbid4wm6nFyVuDy8XMfETsJw5lsIGBWyo0A==} - engines: {node: '>= 18'} - extension-port-stream@3.0.0: resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} engines: {node: '>=12.0.0'} @@ -8519,9 +8079,6 @@ packages: resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==} engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0} - extrareqp2@1.0.0: - resolution: {integrity: sha512-Gum0g1QYb6wpPJCVypWP3bbIuaibcFiJcpuPM10YSXp/tzqi84x9PJageob+eN4xVRIOto4wjSGNLyMD54D2xA==} - eyes@0.1.8: resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} engines: {node: '> 0.1.90'} @@ -8529,9 +8086,6 @@ packages: fast-base64-decode@1.0.0: resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==} - fast-copy@3.0.2: - resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} - fast-decode-uri-component@1.0.1: resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} @@ -8542,16 +8096,10 @@ packages: resolution: {integrity: sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==} engines: {node: '>=6.0.0'} - fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - fast-glob@3.3.3: resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} - fast-json-patch@3.1.1: - resolution: {integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==} - fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} @@ -8593,9 +8141,6 @@ packages: fbjs@3.0.5: resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} - fclone@1.0.11: - resolution: {integrity: sha512-GDqVQezKzRABdeqflsgMr7ktzgF9CyS+p2oe0jJqUY6izSSbhPIQJDpoU4PtGcD7VPM9xh/dVrTu6z1nwgmEGw==} - fdir@6.5.0: resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} engines: {node: '>=12.0.0'} @@ -8605,9 +8150,6 @@ packages: picomatch: optional: true - fecha@4.2.3: - resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} - fetch-blob@3.2.0: resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} engines: {node: ^12.20 || >= 14.13} @@ -8630,10 +8172,6 @@ packages: resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} engines: {node: '>=0.10.0'} - finalhandler@2.1.0: - resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==} - engines: {node: '>= 0.8'} - find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} @@ -8646,9 +8184,6 @@ packages: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} - fn.name@1.1.0: - resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} - follow-redirects@1.15.11: resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} engines: {node: '>=4.0'} @@ -8674,10 +8209,6 @@ packages: resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} engines: {node: '>=12.20.0'} - forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} - fraction.js@4.3.7: resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} @@ -8712,10 +8243,6 @@ packages: framesync@6.0.1: resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==} - fresh@2.0.0: - resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} - engines: {node: '>= 0.8'} - fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} @@ -8803,10 +8330,6 @@ packages: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} - get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - get-port@6.1.2: resolution: {integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -8833,21 +8356,6 @@ packages: get-tsconfig@4.7.2: resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} - get-uri@6.0.5: - resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} - engines: {node: '>= 14'} - - git-node-fs@1.0.0: - resolution: {integrity: sha512-bLQypt14llVXBg0S0u8q8HmU7g9p3ysH+NvVlae5vILuUvs759665HvmR5+wb04KjHyjFcDRxdYb4kyNnluMUQ==} - peerDependencies: - js-git: ^0.7.8 - peerDependenciesMeta: - js-git: - optional: true - - git-sha1@0.1.2: - resolution: {integrity: sha512-2e/nZezdVlyCopOCYHeW0onkbZg7xP1Ad6pndPy1rCygeRykefUS6r7oA5cJRGEFvseiaz5a/qUHFVX1dd6Isg==} - github-from-package@0.0.0: resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} @@ -9066,9 +8574,6 @@ packages: header-case@2.0.4: resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} - help-me@5.0.0: - resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} - hey-listen@1.0.8: resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} @@ -9088,10 +8593,6 @@ packages: html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} - http-parser-js@0.5.10: resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==} @@ -9150,10 +8651,6 @@ packages: i18next@23.11.5: resolution: {integrity: sha512-41pvpVbW9rhZPk5xjCX2TPJi2861LEig/YRhUkY+1FQ2IQPS0bKUDYnEqY8XPPbB48h1uIwLnP9iiEfuSl20CA==} - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} @@ -9235,14 +8732,6 @@ packages: invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - ip-address@10.0.1: - resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==} - engines: {node: '>= 12'} - - ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - iron-webcrypto@1.2.1: resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} @@ -9367,9 +8856,6 @@ packages: is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - is-promise@4.0.0: - resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} - is-regex@1.2.1: resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} engines: {node: '>= 0.4'} @@ -9698,9 +9184,6 @@ packages: js-cookies@1.0.4: resolution: {integrity: sha512-cO1SHDH7zJsi8FihHmDtcWx90mWmrfGOrcLKPeaEX6tLyuTK2wnzgdmNa34Q6rNAd6VhQUgjDt5Eyl90VI/Fpg==} - js-git@0.7.8: - resolution: {integrity: sha512-+E5ZH/HeRnoc/LW0AmAyhU+mNcWBzAKE+30+IDMLSLbbK+Tdt02AdkOKq9u15rlJsDEGFqtgckc8ZM59LhhiUA==} - js-sha3@0.8.0: resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} @@ -9772,10 +9255,6 @@ packages: just-unique@4.2.0: resolution: {integrity: sha512-cxQGGUiit6CGUpuuiezY8N4m1wgF4o7127rXEXDFcxeDUFfdV7gSkwA26Fe2wWBiNQq2SZOgN4gSmMxB/StA8Q==} - kafkajs@2.2.4: - resolution: {integrity: sha512-j/YeapB1vfPT2iOIUn/vxdyKEuhuY2PxMBvf5JWux6iSaukAccrMtXEY/Lb7OvavDhOWME589bpLrEdnVHjfjA==} - engines: {node: '>=14.0.0'} - keccak@3.0.4: resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} engines: {node: '>=10.0.0'} @@ -9787,17 +9266,6 @@ packages: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} - kuler@2.0.0: - resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} - - lazy@1.0.11: - resolution: {integrity: sha512-Y+CjUfLmIpoUCCRl0ub4smrYtGGr5AOa2AKOaWelGHOGz33X/Y/KizefGqbkwfz44+cnq/+9habclf8vOmu2LA==} - engines: {node: '>=0.2.0'} - - lazystream@1.0.1: - resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} - engines: {node: '>= 0.6.3'} - leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} @@ -9961,15 +9429,6 @@ packages: lodash.clonedeep@4.5.0: resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - lodash.defaults@4.2.0: - resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} - - lodash.difference@4.5.0: - resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} - lodash.flatten@4.4.0: resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} @@ -9995,9 +9454,6 @@ packages: lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - lodash.union@4.6.0: - resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} - lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} @@ -10013,10 +9469,6 @@ packages: resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} engines: {node: '>=18'} - logform@2.7.0: - resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==} - engines: {node: '>= 12.0.0'} - long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} @@ -10039,18 +9491,6 @@ packages: lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - - lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - - luxon@3.7.1: - resolution: {integrity: sha512-RkRWjA926cTvz5rAb1BqyWkKbbjzCGchDUIKMCUvNi17j6f6j8uHGDV82Aqcqtzd+icoYpELmG3ksgGiFNNcNg==} - engines: {node: '>=12'} - lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true @@ -10088,10 +9528,6 @@ packages: mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - media-typer@1.1.0: - resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} - engines: {node: '>= 0.8'} - memoize-one@5.2.1: resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} @@ -10099,10 +9535,6 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - merge-descriptors@2.0.0: - resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} - engines: {node: '>=18'} - merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -10122,10 +9554,6 @@ packages: mersenne-twister@1.1.0: resolution: {integrity: sha512-mUYWsMKNrm4lfygPkL3OfGzOPTR2DBlTkBNHM//F6hGp8cLThY897crAlk3/Jo17LEOOjQUrNAx6DvgO77QJkA==} - methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} - micro-ftch@0.3.1: resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} @@ -10145,18 +9573,10 @@ packages: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} - mime-db@1.54.0: - resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} - engines: {node: '>= 0.6'} - mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} - mime-types@3.0.1: - resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==} - engines: {node: '>= 0.6'} - mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} @@ -10190,10 +9610,6 @@ packages: resolution: {integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==} engines: {node: '>=10'} - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} @@ -10224,11 +9640,6 @@ packages: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true - mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - mkdirp@3.0.1: resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} engines: {node: '>=10'} @@ -10238,9 +9649,6 @@ packages: resolution: {integrity: sha512-CxBoEVKh5U4DH3XuNbc5ONLF6dQBc8dSc7pdZ1957FGbIO5JBqGqqchhET9dTexri8/pk9xBL6+5ceOtCIp1QA==} engines: {node: '>=6'} - module-details-from-path@1.0.4: - resolution: {integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==} - moment@2.30.1: resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} @@ -10262,9 +9670,6 @@ packages: mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} - nan@2.23.0: - resolution: {integrity: sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==} - nano-css@5.6.2: resolution: {integrity: sha512-+6bHaC8dSDGALM1HJjOHVXpuastdu2xFoZlC77Jh4cg+33Zcgm+Gxd+1xsnpZK14eyHObSp82+ll5y3SX75liw==} peerDependencies: @@ -10282,22 +9687,9 @@ packages: natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - needle@2.4.0: - resolution: {integrity: sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==} - engines: {node: '>= 4.4.x'} - hasBin: true - - negotiator@1.0.0: - resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} - engines: {node: '>= 0.6'} - neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - netmask@2.0.2: - resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} - engines: {node: '>= 0.4.0'} - nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} @@ -10384,10 +9776,6 @@ packages: resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - nssocket@0.6.0: - resolution: {integrity: sha512-a9GSOIql5IqgWJR3F/JXG4KpJTA3Z53Cj0MeMvGpglytB1nxE4PdFNC0jINe27CS7cGivoynwc054EzCcT3M3w==} - engines: {node: '>= 0.10.x'} - nullthrows@1.1.1: resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} @@ -10431,14 +9819,6 @@ packages: on-exit-leak-free@0.2.0: resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} - on-exit-leak-free@2.1.2: - resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} - engines: {node: '>=14.0.0'} - - on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} - on-net-listen@1.1.2: resolution: {integrity: sha512-y1HRYy8s/RlcBvDUwKXSmkODMdx4KSuIvloCnQYJ2LdBBC1asY4HtfhXwe3UWknLakATZDnbzht2Ijw3M1EqFg==} engines: {node: '>=9.4.0 || ^8.9.4'} @@ -10446,9 +9826,6 @@ packages: once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - one-time@1.0.0: - resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} - onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -10512,20 +9889,9 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - pac-proxy-agent@7.2.0: - resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} - engines: {node: '>= 14'} - - pac-resolver@7.0.1: - resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} - engines: {node: '>= 14'} - package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} - pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} @@ -10555,10 +9921,6 @@ packages: parse5@7.3.0: resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} - parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} @@ -10607,10 +9969,6 @@ packages: resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} engines: {node: '>=16 || 14 >=14.18'} - path-to-regexp@8.2.0: - resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==} - engines: {node: '>=16'} - path-type@3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} engines: {node: '>=4'} @@ -10630,61 +9988,6 @@ packages: resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==} engines: {node: '>=0.12'} - pg-boss@9.0.3: - resolution: {integrity: sha512-cUWUiv3sr563yNy0nCZ25Tv5U0m59Y9MhX/flm0vTR012yeVCrqpfboaZP4xFOQPdWipMJpuu4g94HR0SncTgw==} - engines: {node: '>=16'} - - pg-cloudflare@1.2.7: - resolution: {integrity: sha512-YgCtzMH0ptvZJslLM1ffsY4EuGaU0cx4XSdXLRFae8bPP4dS5xL1tNB3k2o/N64cHJpwU7dxKli/nZ2lUa5fLg==} - - pg-connection-string@2.9.1: - resolution: {integrity: sha512-nkc6NpDcvPVpZXxrreI/FOtX3XemeLl8E0qFr6F2Lrm/I8WOnaWNhIPK2Z7OHpw7gh5XJThi6j6ppgNoaT1w4w==} - - pg-int8@1.0.1: - resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} - engines: {node: '>=4.0.0'} - - pg-minify@1.6.5: - resolution: {integrity: sha512-u0UE8veaCnMfJmoklqneeBBopOAPG3/6DHqGVHYAhz8DkJXh9dnjPlz25fRxn4e+6XVzdOp7kau63Rp52fZ3WQ==} - engines: {node: '>=14.0.0'} - - pg-pool@3.10.1: - resolution: {integrity: sha512-Tu8jMlcX+9d8+QVzKIvM/uJtp07PKr82IUOYEphaWcoBhIYkoHpLXN3qO59nAI11ripznDsEzEv8nUxBVWajGg==} - peerDependencies: - pg: '>=8.0' - - pg-promise@11.9.1: - resolution: {integrity: sha512-qvMmyDvWd64X0a25hCuWV40GLMbgeYf4z7ZmzxQqGHtUIlzMtxcMtaBHAMr7XVOL62wFv2ZVKW5pFruD/4ZAOg==} - engines: {node: '>=14.0'} - - pg-protocol@1.10.3: - resolution: {integrity: sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==} - - pg-types@2.2.0: - resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} - engines: {node: '>=4'} - - pg@8.12.0: - resolution: {integrity: sha512-A+LHUSnwnxrnL/tZ+OLfqR1SxLN3c/pgDztZ47Rpbsd4jUytsTtwQo/TLPRzPJMp/1pbhYVhH9cuSZLAajNfjQ==} - engines: {node: '>= 8.0.0'} - peerDependencies: - pg-native: '>=3.0.1' - peerDependenciesMeta: - pg-native: - optional: true - - pg@8.16.3: - resolution: {integrity: sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==} - engines: {node: '>= 16.0.0'} - peerDependencies: - pg-native: '>=3.0.1' - peerDependenciesMeta: - pg-native: - optional: true - - pgpass@1.0.5: - resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==} - picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -10710,14 +10013,6 @@ packages: engines: {node: '>=0.10'} hasBin: true - pidusage@2.0.21: - resolution: {integrity: sha512-cv3xAQos+pugVX+BfXpHsbyz/dLzX+lr44zNMsYiGxUw+kV5sgQCIcLd1z+0vq+KyC7dJ+/ts2PsfgWfSC3WXA==} - engines: {node: '>=8'} - - pidusage@3.0.2: - resolution: {integrity: sha512-g0VU+y08pKw5M8EZ2rIGiEBaB8wrQMjYGFfW2QVIfyT8V+fq8YFLkvlz4bz5ljvFDJYNFCWT3PWqcRr2FKO81w==} - engines: {node: '>=10'} - pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -10733,27 +10028,13 @@ packages: pino-abstract-transport@0.5.0: resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} - pino-abstract-transport@1.2.0: - resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} - - pino-pretty@11.2.1: - resolution: {integrity: sha512-O05NuD9tkRasFRWVaF/uHLOvoRDFD7tb5VMertr78rbsYFjYp48Vg3477EshVAF5eZaEw+OpDl/tu+B0R5o+7g==} - hasBin: true - pino-std-serializers@4.0.0: resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} - pino-std-serializers@7.0.0: - resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} - pino@7.11.0: resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==} hasBin: true - pino@9.2.0: - resolution: {integrity: sha512-g3/hpwfujK5a4oVbaefoJxezLzsDgLcNJeITvC6yrfwYeT9la+edCK42j5QpEQSQCZgTKapXvnQIdgZwvRaZug==} - hasBin: true - pirates@4.0.7: resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} engines: {node: '>= 6'} @@ -10776,29 +10057,6 @@ packages: engines: {node: '>=18'} hasBin: true - pm2-axon-rpc@0.7.1: - resolution: {integrity: sha512-FbLvW60w+vEyvMjP/xom2UPhUN/2bVpdtLfKJeYM3gwzYhoTEEChCOICfFzxkxuoEleOlnpjie+n1nue91bDQw==} - engines: {node: '>=5'} - - pm2-axon@4.0.1: - resolution: {integrity: sha512-kES/PeSLS8orT8dR5jMlNl+Yu4Ty3nbvZRmaAtROuVm9nYYGiaoXqqKQqQYzWQzMYWUKHMQTvBlirjE5GIIxqg==} - engines: {node: '>=5'} - - pm2-deploy@1.0.2: - resolution: {integrity: sha512-YJx6RXKrVrWaphEYf++EdOOx9EH18vM8RSZN/P1Y+NokTKqYAca/ejXwVLyiEpNju4HPZEk3Y2uZouwMqUlcgg==} - engines: {node: '>=4.0.0'} - - pm2-multimeter@0.1.2: - resolution: {integrity: sha512-S+wT6XfyKfd7SJIBqRgOctGxaBzUOmVQzTAS+cg04TsEUObJVreha7lvCfX8zzGVr871XwCSnHUU7DQQ5xEsfA==} - - pm2-sysmonit@1.2.8: - resolution: {integrity: sha512-ACOhlONEXdCTVwKieBIQLSi2tQZ8eKinhcr9JpZSUAL8Qy0ajIgRtsLxG/lwPOW3JEKqPyw/UaHmTWhUzpP4kA==} - - pm2@5.4.3: - resolution: {integrity: sha512-4/I1htIHzZk1Y67UgOCo4F1cJtas1kSds31N8zN0PybO230id1nigyjGuGFzUnGmUFPmrJ0On22fO1ChFlp7VQ==} - engines: {node: '>=12.0.0'} - hasBin: true - pngjs@3.4.0: resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} engines: {node: '>=4.0.0'} @@ -11044,22 +10302,6 @@ packages: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} - postgres-array@2.0.0: - resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} - engines: {node: '>=4'} - - postgres-bytea@1.0.0: - resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==} - engines: {node: '>=0.10.0'} - - postgres-date@1.0.7: - resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} - engines: {node: '>=0.10.0'} - - postgres-interval@1.2.0: - resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} - engines: {node: '>=0.10.0'} - preact@10.27.0: resolution: {integrity: sha512-/DTYoB6mwwgPytiqQTh/7SFRL98ZdiD8Sk8zIUVOxtwq4oWcwrcd1uno9fE/zZmUaUrFNYzbH14CPebOz9tZQw==} @@ -11098,9 +10340,6 @@ packages: process-warning@1.0.0: resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} - process-warning@3.0.0: - resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} - process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} @@ -11112,9 +10351,6 @@ packages: promise@7.3.1: resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} - promptly@2.2.0: - resolution: {integrity: sha512-aC9j+BZsRSSzEsXBNBwDnAxujdx19HycZoKgRgzWnS8eOHg1asuf9heuLprfbe739zY3IdUQx+Egv6Jn135WHA==} - prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} @@ -11125,10 +10361,6 @@ packages: proper-lockfile@4.1.2: resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} - properties-reader@2.3.0: - resolution: {integrity: sha512-z597WicA7nDZxK12kZqHr2TcvwNU1GCfA5UwfDY/HDp3hXPoPlb5rlEx9bwGTiJnc0OqbBTkU975jDToth8Gxw==} - engines: {node: '>=14'} - property-expr@2.0.6: resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==} @@ -11136,20 +10368,9 @@ packages: resolution: {integrity: sha512-NWWCCscLjs+cOKF/s/XVNFRW7Yih0fdH+9brffR5NZCy8k42yRdl5KlWKMVXuI1vfCoy4o1z80XR/W/QUb3V3w==} engines: {node: '>=12.0.0'} - proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} - - proxy-agent@6.3.1: - resolution: {integrity: sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==} - engines: {node: '>= 14'} - proxy-compare@2.5.1: resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==} - proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - proxy-from-env@2.1.0: resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==} engines: {node: '>=10'} @@ -11199,10 +10420,6 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - qs@6.13.0: - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} - engines: {node: '>=0.6'} - qs@6.14.0: resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} engines: {node: '>=0.6'} @@ -11236,14 +10453,6 @@ packages: randomfill@1.0.4: resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} - range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - - raw-body@3.0.0: - resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==} - engines: {node: '>= 0.8'} - rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true @@ -11441,10 +10650,6 @@ packages: resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} engines: {node: '>=4'} - read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: '>=0.8'} - readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -11456,9 +10661,6 @@ packages: resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - readdir-glob@1.1.3: - resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} - readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} @@ -11474,10 +10676,6 @@ packages: resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} engines: {node: '>= 12.13.0'} - real-require@0.2.0: - resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} - engines: {node: '>= 12.13.0'} - recast@0.23.11: resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==} engines: {node: '>= 4'} @@ -11528,10 +10726,6 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - require-in-the-middle@5.2.0: - resolution: {integrity: sha512-efCx3b+0Z69/LGJmm9Yvi4cqEdxnoGnxYxGxBghkkTTFeXRtTCmmhO0AnAfHz59k957uTSuy8WaHqOs8wbYUWg==} - engines: {node: '>=6'} - require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} @@ -11628,10 +10822,6 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - router@2.2.0: - resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} - engines: {node: '>= 18'} - rpc-websockets@7.11.0: resolution: {integrity: sha512-IkLYjayPv6Io8C/TdCL5gwgzd1hFz2vmBZrjMw/SPEXo51ETOhnzgS4Qy5GWi2JQN7HKHa66J3+2mv0fgNh/7w==} deprecated: deprecate 7.11.0 @@ -11649,9 +10839,6 @@ packages: run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - run-series@1.1.9: - resolution: {integrity: sha512-Arc4hUN896vjkqCYrUXquBFtRZdv1PfLbTYP71efP6butxyQ0kWpiNJyAgsxscmQg1cqvHY32/UCBzXedTpU2g==} - rxjs@7.8.2: resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} @@ -11680,9 +10867,6 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} - saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} @@ -11708,9 +10892,6 @@ packages: resolution: {integrity: sha512-lDFs9AAIaWP9UCdtWrotXWWF9t8PWgQDcxqgAnpM9rMqxb3Oaq2J0thzPVSxBwdJgyQtkU/sYtFtbM1RSt/iYA==} engines: {node: '>=18.0.0'} - secure-json-parse@2.7.0: - resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} - semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true @@ -11719,11 +10900,6 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - semver@7.7.2: resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} engines: {node: '>=10'} @@ -11734,21 +10910,9 @@ packages: engines: {node: '>=10'} hasBin: true - send@1.2.0: - resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==} - engines: {node: '>= 18'} - sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} - serialize-error@8.1.0: - resolution: {integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==} - engines: {node: '>=10'} - - serve-static@2.2.0: - resolution: {integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==} - engines: {node: '>= 18'} - set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} @@ -11771,9 +10935,6 @@ packages: setimmediate@1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - sha.js@2.4.12: resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} engines: {node: '>= 0.10'} @@ -11805,9 +10966,6 @@ packages: resolution: {integrity: sha512-Iov+JwFv/2HcTpcwNMKd8+IWNb8tboQJNQTkAY/LLVK7gGH9jy+LGkVqPxfekHl+yMmiqXszdGWXgkfml7hjqA==} engines: {node: '>= 0.4'} - shimmer@1.2.1: - resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} - side-channel-list@1.0.0: resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} engines: {node: '>= 0.4'} @@ -11873,10 +11031,6 @@ packages: resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} engines: {node: '>=18'} - smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} @@ -11892,23 +11046,12 @@ packages: resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} engines: {node: '>=10.0.0'} - socks-proxy-agent@8.0.5: - resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} - engines: {node: '>= 14'} - - socks@2.8.7: - resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} - solidity-ast@0.4.60: resolution: {integrity: sha512-UwhasmQ37ji1ul8cIp0XlrQ/+SVQhy09gGqJH4jnwdo2TgI6YIByzi0PI5QvIGcIdFOs1pbSmJW1pnWB7AVh2w==} sonic-boom@2.8.0: resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} - sonic-boom@4.2.0: - resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -11916,9 +11059,6 @@ packages: source-map-support@0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - source-map@0.5.6: resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} engines: {node: '>=0.10.0'} @@ -11948,13 +11088,6 @@ packages: spdx-license-ids@3.0.22: resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} - spex@3.3.0: - resolution: {integrity: sha512-VNiXjFp6R4ldPbVRYbpxlD35yRHceecVXlct1J4/X80KuuPnW2AXMq3sGwhnJOhKkUsOxAT6nRGfGE5pocVw5w==} - engines: {node: '>=10.0.0'} - - split-ca@1.0.1: - resolution: {integrity: sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==} - split-on-first@1.1.0: resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} engines: {node: '>=6'} @@ -11969,22 +11102,9 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - sprintf-js@1.1.2: - resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==} - - ssh-remote-port-forward@1.0.4: - resolution: {integrity: sha512-x0LV1eVDwjf1gmG7TTnfqIzf+3VPRz7vrNIjX6oYLbeCrf/PeVY6hkT68Mg+q02qXxQhrLjB0jfgvhevoCRmLQ==} - - ssh2@1.16.0: - resolution: {integrity: sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==} - engines: {node: '>=10.16.0'} - stack-generator@2.0.10: resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} - stack-trace@0.0.10: - resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} - stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -12001,10 +11121,6 @@ packages: stacktrace-js@2.0.2: resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==} - statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - std-env@4.1.0: resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==} @@ -12031,9 +11147,6 @@ packages: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} - streamx@2.22.1: - resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==} - strict-uri-encode@2.0.0: resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} engines: {node: '>=4'} @@ -12196,12 +11309,6 @@ packages: resolution: {integrity: sha512-c7AfkZ9udatCuAy9RSfiGPpeOKKUAUK5e1cXadLOGUjasdxqYqAK0jTNkM/FSEyJ3a5Ra27j/tw/PS0qLmaF/A==} engines: {node: '>=18'} - systeminformation@5.27.7: - resolution: {integrity: sha512-saaqOoVEEFaux4v0K8Q7caiauRwjXC4XbD2eH60dxHXbpKxQ8kH9Rf7Jh+nryKpOUSEFxtCdBlSUx0/lO6rwRg==} - engines: {node: '>=8.0.0'} - os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android] - hasBin: true - table@6.9.0: resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} engines: {node: '>=10.0.0'} @@ -12246,16 +11353,10 @@ packages: tar-fs@2.0.1: resolution: {integrity: sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==} - tar-fs@3.1.0: - resolution: {integrity: sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==} - tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} - tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - tar@7.4.3: resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} engines: {node: '>=18'} @@ -12265,18 +11366,9 @@ packages: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} - testcontainers@10.10.0: - resolution: {integrity: sha512-XlAdr6XzxM9ywTc5D6xA97Ug8dCotDnrOgOqmy3vYnAwUYrzhzAwrp791g97QAMvDOYp2pxkJl/P4WxuUbGShw==} - - text-decoder@1.2.3: - resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} - text-encoding-utf-8@1.0.2: resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==} - text-hex@1.0.0: - resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} - thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} engines: {node: '>=0.8'} @@ -12287,9 +11379,6 @@ packages: thread-stream@0.15.2: resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==} - thread-stream@3.1.0: - resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==} - throttle-debounce@3.0.1: resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} engines: {node: '>=10'} @@ -12343,10 +11432,6 @@ packages: title-case@3.0.3: resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} - tmp@0.2.5: - resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} - engines: {node: '>=14.14'} - tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} @@ -12361,10 +11446,6 @@ packages: toggle-selection@1.0.6: resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} - toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - toml@3.0.0: resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} @@ -12392,10 +11473,6 @@ packages: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true - triple-beam@1.4.1: - resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} - engines: {node: '>= 14.0.0'} - ts-easing@0.2.0: resolution: {integrity: sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==} @@ -12468,9 +11545,6 @@ packages: tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - tslib@1.9.3: - resolution: {integrity: sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==} - tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} @@ -12480,9 +11554,6 @@ packages: tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tslib@2.7.0: - resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} - tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} @@ -12574,24 +11645,10 @@ packages: resolution: {integrity: sha512-DUHWQAcC8BTiUZDRzAYGvpSpGLiaOQPfYXlCieQbwUvmml/LRGIe3raKdrOPOoiX0DYlzxs2nH6BoWJoZrj8hA==} hasBin: true - tv4@1.3.0: - resolution: {integrity: sha512-afizzfpJgvPr+eDkREK4MxJ/+r8nEEHcmitwgnPUqpaP+FpwQyadnxNoSACbgc/b1LsZYtODGoPiFxQrgJgjvw==} - engines: {node: '>= 0.8.0'} - - tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - - tx2@1.0.5: - resolution: {integrity: sha512-sJ24w0y03Md/bxzK4FU8J8JveYYUbSs2FViLJ2D/8bytSiyPRbuE3DyL/9UKYXTZlV3yXq0L8GLlhobTnekCVg==} - type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} @@ -12608,10 +11665,6 @@ packages: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} - type-is@2.0.1: - resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==} - engines: {node: '>= 0.6'} - typed-array-buffer@1.0.3: resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} engines: {node: '>= 0.4'} @@ -12670,9 +11723,6 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici-types@6.19.8: - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici-types@6.21.0: resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} @@ -12707,10 +11757,6 @@ packages: resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} engines: {node: '>=0.10.0'} - unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - unstorage@1.16.1: resolution: {integrity: sha512-gdpZ3guLDhz+zWIlYP1UwQ259tG5T5vYRzDaHMkQ1bBY1SQPutvZnrRjTFaWUUpseErJIgAZS51h6NOcZVZiqQ==} peerDependencies: @@ -12852,10 +11898,6 @@ packages: util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - uuid-parse@1.1.0: resolution: {integrity: sha512-OdmXxA8rDsQ7YpNVbKSJkNzTw2I+S5WsbMDnCtIWSQaosNAcWtFuI/YK1TjzUI6nbkgiqEyh8gWngfcv8Asd9A==} @@ -12895,10 +11937,6 @@ packages: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} - vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - victory-vendor@36.9.2: resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} @@ -13008,10 +12046,6 @@ packages: jsdom: optional: true - vizion@2.2.1: - resolution: {integrity: sha512-sfAcO2yeSU0CSPFI/DmZp3FsFE9T+8913nv1xWBOyzODv13fwkn6Vl7HqxGpkr9F608M+8SuFId3s+BlZqfXww==} - engines: {node: '>=4.0'} - vm-browserify@1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} @@ -13115,14 +12149,6 @@ packages: engines: {node: '>=8'} hasBin: true - winston-transport@4.9.0: - resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==} - engines: {node: '>= 12.0.0'} - - winston@3.13.0: - resolution: {integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==} - engines: {node: '>= 12.0.0'} - wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} @@ -13210,9 +12236,6 @@ packages: xstate@5.0.0-beta.54: resolution: {integrity: sha512-BTnCPBQ2iTKe4uCnHEe1hNx6VTbXU+5mQGybSQHOjTLiBi4Ryi+tL9T6N1tmqagvM8rfl4XRfvndogfWCWcdpw==} - xstate@5.20.2: - resolution: {integrity: sha512-GZmLmc+WPKfFRxuTDAxCg0cUhS/ZnWaRD86DO8MKizeK4a050jd5k7UNnIQ2jJDWRig2/r0tmVXeezUNIhoz5Q==} - xstream@11.14.0: resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} @@ -13233,9 +12256,6 @@ packages: yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yallist@5.0.0: resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} engines: {node: '>=18'} @@ -13288,10 +12308,6 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zip-stream@4.1.1: - resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} - engines: {node: '>= 10'} - zod-validation-error@3.0.0: resolution: {integrity: sha512-x+agsJJG9rvC7axF0xqTEdZhJkLHyIZkdOAWDJSmwGPzxNHMHwtU6w2yDOAAP6yuSfTAUhAMJRBfhVGY64ySEQ==} engines: {node: '>=18.0.0'} @@ -14451,8 +13467,6 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 - '@balena/dockerignore@1.0.2': {} - '@bcoe/v8-coverage@0.2.3': {} '@biomejs/biome@1.9.4': @@ -14498,11 +13512,11 @@ snapshots: lodash.mergewith: 4.6.2 react: 18.2.0 - '@chialab/esbuild-plugin-postcss@0.18.0(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))': + '@chialab/esbuild-plugin-postcss@0.18.0(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))': dependencies: '@chialab/esbuild-rna': 0.18.2 postcss: 8.4.35 - postcss-load-config: 4.0.2(postcss@8.4.35)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.4.35)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) postcss-preset-env: 9.6.0(postcss@8.4.35) transitivePeerDependencies: - ts-node @@ -14544,8 +13558,6 @@ snapshots: '@colors/colors@1.5.0': optional: true - '@colors/colors@1.6.0': {} - '@confio/ics23@0.6.8': dependencies: '@noble/hashes': 1.8.0 @@ -14632,7 +13644,7 @@ snapshots: '@cosmjs/socket': 0.32.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@cosmjs/stream': 0.32.4 '@cosmjs/utils': 0.32.4 - axios: 1.15.0 + axios: 1.15.0(debug@4.4.1) readonly-date: 1.0.0 xstream: 11.14.0 transitivePeerDependencies: @@ -14644,7 +13656,7 @@ snapshots: '@cosmology/lcd@0.13.4': dependencies: - axios: 1.15.0 + axios: 1.15.0(debug@4.4.1) transitivePeerDependencies: - debug @@ -14890,23 +13902,17 @@ snapshots: dependencies: postcss: 8.4.35 - '@dabh/diagnostics@2.0.3': - dependencies: - colorspace: 1.1.4 - enabled: 2.0.0 - kuler: 2.0.0 - '@depay/solana-web3.js@1.98.3': dependencies: bs58: 5.0.0 '@depay/web3-blockchains@9.8.6': {} - '@depay/web3-client@10.18.6(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + '@depay/web3-client@10.18.6(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: '@depay/solana-web3.js': 1.98.3 '@depay/web3-blockchains': 9.8.6 - ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ethers: 6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@depay/web3-mock-evm@14.19.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: @@ -14960,16 +13966,6 @@ snapshots: '@whatwg-node/promise-helpers': 1.3.2 tslib: 2.8.1 - '@esbuild-kit/core-utils@3.3.2': - dependencies: - esbuild: 0.25.3 - source-map-support: 0.5.21 - - '@esbuild-kit/esm-loader@2.6.5': - dependencies: - '@esbuild-kit/core-utils': 3.3.2 - get-tsconfig: 4.7.2 - '@esbuild/aix-ppc64@0.25.3': optional: true @@ -15489,13 +14485,13 @@ snapshots: - debug - utf-8-validate - '@fuel-ts/abi-coder@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/abi-coder@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.100.0 - '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.100.0 - '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) type-fest: 4.34.1 transitivePeerDependencies: - vitest @@ -15511,24 +14507,13 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/abi-coder@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/math': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - type-fest: 4.34.1 - transitivePeerDependencies: - - vitest - - '@fuel-ts/abi-coder@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/abi-coder@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) type-fest: 4.34.1 transitivePeerDependencies: - vitest @@ -15557,24 +14542,10 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/abi-typegen@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/versions': 0.103.0 - commander: 13.1.0 - glob: 10.4.5 - handlebars: 4.7.9 - mkdirp: 3.0.1 - ramda: 0.30.1 - rimraf: 5.0.10 - transitivePeerDependencies: - - vitest - - '@fuel-ts/abi-typegen@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/abi-typegen@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@fuel-ts/errors': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/versions': 0.103.0 commander: 13.1.0 glob: 10.4.5 @@ -15598,17 +14569,17 @@ snapshots: ramda: 0.30.1 rimraf: 5.0.10 - '@fuel-ts/account@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/account@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.100.0 - '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.100.0 - '@fuel-ts/merkle': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/merkle': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/versions': 0.100.0 '@fuels/vm-asm': 0.59.1 '@noble/curves': 1.8.1 @@ -15644,40 +14615,17 @@ snapshots: - encoding - vitest - '@fuel-ts/account@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/math': 0.103.0 - '@fuel-ts/merkle': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/versions': 0.103.0 - '@fuels/vm-asm': 0.62.0 - '@noble/curves': 1.8.1 - events: 3.3.0 - graphql: 16.10.0 - graphql-request: 6.1.0(graphql@16.10.0) - graphql-tag: 2.12.6(graphql@16.10.0) - ramda: 0.30.1 - transitivePeerDependencies: - - encoding - - vitest - - '@fuel-ts/account@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/account@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.103.0 - '@fuel-ts/merkle': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/merkle': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/versions': 0.103.0 '@fuels/vm-asm': 0.62.0 '@noble/curves': 1.8.1 @@ -15713,11 +14661,11 @@ snapshots: transitivePeerDependencies: - encoding - '@fuel-ts/address@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/address@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.100.0 - '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@noble/hashes': 1.7.1 transitivePeerDependencies: - vitest @@ -15731,20 +14679,11 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/address@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@noble/hashes': 1.7.1 - transitivePeerDependencies: - - vitest - - '@fuel-ts/address@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/address@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@noble/hashes': 1.7.1 transitivePeerDependencies: - vitest @@ -15776,36 +14715,18 @@ snapshots: - encoding - vitest - '@fuel-ts/contract@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/math': 0.103.0 - '@fuel-ts/merkle': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuels/vm-asm': 0.62.0 - ramda: 0.30.1 - transitivePeerDependencies: - - encoding - - vitest - - '@fuel-ts/contract@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/contract@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.103.0 - '@fuel-ts/merkle': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/merkle': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuels/vm-asm': 0.62.0 ramda: 0.30.1 transitivePeerDependencies: @@ -15831,10 +14752,10 @@ snapshots: transitivePeerDependencies: - encoding - '@fuel-ts/crypto@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/crypto@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@fuel-ts/errors': 0.100.0 - '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@noble/hashes': 1.7.1 transitivePeerDependencies: - vitest @@ -15847,18 +14768,10 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/crypto@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@noble/hashes': 1.7.1 - transitivePeerDependencies: - - vitest - - '@fuel-ts/crypto@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/crypto@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@fuel-ts/errors': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@noble/hashes': 1.7.1 transitivePeerDependencies: - vitest @@ -15883,10 +14796,10 @@ snapshots: dependencies: '@fuel-ts/versions': 0.96.1 - '@fuel-ts/hasher@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/hasher@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@noble/hashes': 1.7.1 transitivePeerDependencies: - vitest @@ -15899,18 +14812,10 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/hasher@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@noble/hashes': 1.7.1 - transitivePeerDependencies: - - vitest - - '@fuel-ts/hasher@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/hasher@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@noble/hashes': 1.7.1 transitivePeerDependencies: - vitest @@ -15942,9 +14847,9 @@ snapshots: '@types/bn.js': 5.2.0 bn.js: 5.2.2 - '@fuel-ts/merkle@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/merkle@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.100.0 transitivePeerDependencies: - vitest @@ -15956,16 +14861,9 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/merkle@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/math': 0.103.0 - transitivePeerDependencies: - - vitest - - '@fuel-ts/merkle@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/merkle@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.103.0 transitivePeerDependencies: - vitest @@ -15990,30 +14888,15 @@ snapshots: - encoding - vitest - '@fuel-ts/program@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/math': 0.103.0 - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuels/vm-asm': 0.62.0 - ramda: 0.30.1 - transitivePeerDependencies: - - encoding - - vitest - - '@fuel-ts/program@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/program@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 '@fuel-ts/math': 0.103.0 - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuels/vm-asm': 0.62.0 ramda: 0.30.1 transitivePeerDependencies: @@ -16049,35 +14932,21 @@ snapshots: - encoding - vitest - '@fuel-ts/recipes@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': + '@fuel-ts/recipes@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/abi-typegen': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/contract': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-typegen': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/contract': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) transitivePeerDependencies: - encoding - vitest - '@fuel-ts/recipes@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/abi-typegen': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/contract': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - transitivePeerDependencies: - - encoding - - vitest - - '@fuel-ts/script@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': + '@fuel-ts/script@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': dependencies: '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) @@ -16090,28 +14959,15 @@ snapshots: - encoding - vitest - '@fuel-ts/script@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/math': 0.103.0 - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - transitivePeerDependencies: - - encoding - - vitest - - '@fuel-ts/script@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/script@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 '@fuel-ts/math': 0.103.0 - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) transitivePeerDependencies: - encoding - vitest @@ -16130,14 +14986,14 @@ snapshots: transitivePeerDependencies: - encoding - '@fuel-ts/transactions@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/transactions@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.100.0 - '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.100.0 - '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) transitivePeerDependencies: - vitest @@ -16152,25 +15008,14 @@ snapshots: transitivePeerDependencies: - vitest - '@fuel-ts/transactions@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/math': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - transitivePeerDependencies: - - vitest - - '@fuel-ts/transactions@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/transactions@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.103.0 - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) transitivePeerDependencies: - vitest @@ -16184,13 +15029,13 @@ snapshots: '@fuel-ts/math': 0.96.1 '@fuel-ts/utils': 0.96.1 - '@fuel-ts/utils@0.100.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/utils@0.100.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@fuel-ts/errors': 0.100.0 '@fuel-ts/math': 0.100.0 '@fuel-ts/versions': 0.100.0 fflate: 0.8.2 - vitest: 4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) + vitest: 4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) '@fuel-ts/utils@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': dependencies: @@ -16200,21 +15045,13 @@ snapshots: fflate: 0.8.2 vitest: 4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) - '@fuel-ts/utils@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/math': 0.103.0 - '@fuel-ts/versions': 0.103.0 - fflate: 0.8.2 - vitest: 4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) - - '@fuel-ts/utils@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuel-ts/utils@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@fuel-ts/errors': 0.103.0 '@fuel-ts/math': 0.103.0 '@fuel-ts/versions': 0.103.0 fflate: 0.8.2 - vitest: 4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) + vitest: 4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) '@fuel-ts/utils@0.96.1': dependencies: @@ -16239,7 +15076,7 @@ snapshots: chalk: 4.1.2 cli-table: 0.3.11 - '@fuels/connectors@0.45.0(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.9)(fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@fuels/connectors@0.45.0(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.9)(fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@ethereumjs/util': 9.0.3 '@ethersproject/bytes': 5.7.0 @@ -16249,7 +15086,7 @@ snapshots: '@web3modal/scaffold': 5.0.0(@types/react@18.2.54)(react@18.2.0) '@web3modal/solana': 5.0.0(@types/react@18.2.54)(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) '@web3modal/wagmi': 5.0.0(@types/react@18.2.54)(@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(@wagmi/core@2.13.4(@tanstack/query-core@5.56.2)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)) - fuels: 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + fuels: 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) rpc-websockets: 7.11.0 socket.io-client: 4.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) @@ -16286,19 +15123,19 @@ snapshots: - vue - zod - '@fuels/jest@0.20.0(@jest/globals@29.7.0)(@types/jest@29.5.12)(bufferutil@4.0.9)(jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))(utf-8-validate@5.0.10)(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@fuels/jest@0.20.0(@jest/globals@29.7.0)(@types/jest@29.5.12)(bufferutil@4.0.9)(jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))(utf-8-validate@5.0.10)(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@ariakit/test': 0.2.5(@testing-library/dom@9.3.4)(@testing-library/react@14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 2.2.2(react@18.2.0) '@testing-library/dom': 9.3.4 - '@testing-library/jest-dom': 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@testing-library/jest-dom': 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@testing-library/react': 14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@testing-library/user-event': 14.6.1(@testing-library/dom@9.3.4) '@types/react': 18.2.54 '@types/react-dom': 18.2.22 dotenv: 16.4.5 identity-obj-proxy: 3.0.0 - jest: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + jest: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) jest-axe: 8.0.0 jest-environment-jsdom: 29.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) jest-fail-on-console: 3.3.1 @@ -16319,13 +15156,13 @@ snapshots: '@fuels/local-storage@0.23.0': {} - '@fuels/playwright-utils@0.57.1(@playwright/test@1.48.2)(fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)))': + '@fuels/playwright-utils@0.57.1(@playwright/test@1.48.2)(fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)))': dependencies: '@playwright/test': 1.48.2 adm-zip: 0.5.16 - fuels: 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + fuels: 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuels/react-xstore@0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + '@fuels/react-xstore@0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(@xstate/react@3.2.2(@types/react@18.2.54)(react@18.2.0)(xstate@4.38.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@4.38.3)': dependencies: '@fuels/local-storage': 0.23.0 '@xstate/inspect': 0.8.0(@types/ws@8.18.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@4.38.3) @@ -16341,15 +15178,32 @@ snapshots: - '@babel/template' - '@types/react' - '@types/ws' - - '@xstate/fsm' - ws - '@fuels/react@0.44.1(@tanstack/react-query@5.56.2(react@18.2.0))(@types/react-dom@18.2.22)(@types/react@18.2.54)(fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@fuels/react-xstore@0.23.0(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(@types/ws@8.18.1)(@xstate/react@3.2.2(@types/react@18.2.54)(react@18.2.0)(xstate@5.0.0-beta.54))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.0.0-beta.54)': + dependencies: + '@fuels/local-storage': 0.23.0 + '@xstate/inspect': 0.8.0(@types/ws@8.18.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.0.0-beta.54) + '@xstate/react': 3.2.2(@types/react@18.2.54)(react@18.2.0)(xstate@5.0.0-beta.54) + fast-equals: 5.2.2 + jotai: 2.13.1(@babel/core@7.28.0)(@babel/template@7.27.2)(@types/react@18.2.54)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + uuid: 9.0.1 + xstate: 5.0.0-beta.54 + transitivePeerDependencies: + - '@babel/core' + - '@babel/template' + - '@types/react' + - '@types/ws' + - ws + + '@fuels/react@0.44.1(@tanstack/react-query@5.56.2(react@18.2.0))(@types/react-dom@18.2.22)(@types/react@18.2.54)(fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.2.22)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@tanstack/react-query': 5.56.2(react@18.2.0) events: 3.3.0 - fuels: 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + fuels: 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) react: 18.2.0 transitivePeerDependencies: - '@types/react' @@ -16364,12 +15218,12 @@ snapshots: dependencies: typescript: 5.9.2 - '@fuels/tsup-config@0.26.0(tsup@8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5))': + '@fuels/tsup-config@0.26.0(tsup@8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5))': dependencies: dotenv: 16.4.5 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - tsup: 8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5) + tsup: 8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5) '@fuels/vm-asm@0.58.0': {} @@ -16383,7 +15237,7 @@ snapshots: graphql: 16.10.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@20.19.10)(bufferutil@4.0.9)(crossws@0.3.5)(enquirer@2.3.6)(graphql@16.10.0)(typescript@5.9.2)(utf-8-validate@5.0.10)': + '@graphql-codegen/cli@5.0.7(@types/node@20.19.10)(bufferutil@4.0.9)(crossws@0.3.5)(graphql@16.10.0)(typescript@5.9.2)(utf-8-validate@5.0.10)': dependencies: '@babel/generator': 7.28.0 '@babel/template': 7.27.2 @@ -16412,7 +15266,7 @@ snapshots: is-glob: 4.0.3 jiti: 1.21.7 json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.3.6) + listr2: 4.0.5 log-symbols: 4.1.0 micromatch: 4.0.8 shell-quote: 1.9.0 @@ -16608,15 +15462,6 @@ snapshots: sync-fetch: 0.6.0-2 tslib: 2.8.1 - '@graphql-tools/batch-delegate@9.0.41(graphql@16.10.0)': - dependencies: - '@graphql-tools/delegate': 10.2.23(graphql@16.10.0) - '@graphql-tools/utils': 10.9.1(graphql@16.10.0) - '@whatwg-node/promise-helpers': 1.3.2 - dataloader: 2.2.3 - graphql: 16.10.0 - tslib: 2.8.1 - '@graphql-tools/batch-execute@9.0.19(graphql@16.10.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.10.0) @@ -16916,19 +15761,6 @@ snapshots: tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/stitch@9.4.28(graphql@16.10.0)': - dependencies: - '@graphql-tools/batch-delegate': 9.0.41(graphql@16.10.0) - '@graphql-tools/delegate': 10.2.23(graphql@16.10.0) - '@graphql-tools/executor': 1.4.9(graphql@16.10.0) - '@graphql-tools/merge': 9.1.1(graphql@16.10.0) - '@graphql-tools/schema': 10.0.25(graphql@16.10.0) - '@graphql-tools/utils': 10.9.1(graphql@16.10.0) - '@graphql-tools/wrap': 10.1.4(graphql@16.10.0) - '@whatwg-node/promise-helpers': 1.3.2 - graphql: 16.10.0 - tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.33(@types/node@20.19.10)(bufferutil@4.0.9)(crossws@0.3.5)(graphql@16.10.0)(utf-8-validate@5.0.10)': dependencies: '@graphql-tools/executor-graphql-ws': 2.0.7(bufferutil@4.0.9)(crossws@0.3.5)(graphql@16.10.0)(utf-8-validate@5.0.10) @@ -17109,42 +15941,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.19.10 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.8 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - - '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))': + '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -17158,7 +15955,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -17684,7 +16481,7 @@ snapshots: - debug - encoding - '@openzeppelin/hardhat-upgrades@3.9.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + '@openzeppelin/hardhat-upgrades@3.9.1(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: '@openzeppelin/defender-sdk-base-client': 2.7.0 '@openzeppelin/defender-sdk-deploy-client': 2.7.0(debug@4.4.1) @@ -17693,7 +16490,7 @@ snapshots: chalk: 4.1.2 debug: 4.4.1 ethereumjs-util: 7.1.5 - ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + ethers: 6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) proper-lockfile: 4.1.2 undici: 6.21.3 transitivePeerDependencies: @@ -17728,57 +16525,6 @@ snapshots: dependencies: playwright: 1.48.2 - '@pm2/agent@2.0.4(bufferutil@4.0.9)(utf-8-validate@5.0.10)': - dependencies: - async: 3.2.6 - chalk: 3.0.0 - dayjs: 1.8.36 - debug: 4.3.7 - eventemitter2: 5.0.1 - fast-json-patch: 3.1.1 - fclone: 1.0.11 - nssocket: 0.6.0 - pm2-axon: 4.0.1 - pm2-axon-rpc: 0.7.1 - proxy-agent: 6.3.1 - semver: 7.5.4 - ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@pm2/io@6.0.1': - dependencies: - async: 2.6.4 - debug: 4.3.7 - eventemitter2: 6.4.9 - require-in-the-middle: 5.2.0 - semver: 7.5.4 - shimmer: 1.2.1 - signal-exit: 3.0.7 - tslib: 1.9.3 - transitivePeerDependencies: - - supports-color - - '@pm2/js-api@0.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)': - dependencies: - async: 2.6.4 - debug: 4.3.7 - eventemitter2: 6.4.9 - extrareqp2: 1.0.0(debug@4.3.7) - ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - '@pm2/pm2-version-check@1.0.4': - dependencies: - debug: 4.4.3(supports-color@5.5.0) - transitivePeerDependencies: - - supports-color - '@protobufjs/aspromise@1.1.2': {} '@protobufjs/base64@1.1.2': {} @@ -20610,9 +19356,9 @@ snapshots: dependencies: '@swc/counter': 0.1.3 - '@synthetixio/ethereum-wallet-mock@0.0.12(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(bufferutil@4.0.9)(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@synthetixio/ethereum-wallet-mock@0.0.12(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(bufferutil@4.0.9)(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@depay/web3-client': 10.18.6(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@depay/web3-client': 10.18.6(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@depay/web3-mock': 14.19.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@depay/web3-mock-evm': 14.19.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@playwright/test': 1.48.2 @@ -20627,9 +19373,9 @@ snapshots: - utf-8-validate - zod - '@synthetixio/synpress-cache@0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)': + '@synthetixio/synpress-cache@0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)': dependencies: - axios: 1.15.0 + axios: 1.15.0(debug@4.4.1) chalk: 5.3.0 commander: 12.0.0 esbuild: 0.27.2 @@ -20638,7 +19384,7 @@ snapshots: gradient-string: 2.0.2 playwright-core: 1.48.2 progress: 2.0.3 - tsup: 8.0.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2) + tsup: 8.0.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2) unzip-crx-3: 0.2.0 unzipper: 0.10.14 zod: 3.22.4 @@ -20655,10 +19401,10 @@ snapshots: dependencies: '@playwright/test': 1.48.2 - '@synthetixio/synpress-metamask@0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)': + '@synthetixio/synpress-metamask@0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)': dependencies: '@playwright/test': 1.48.2 - '@synthetixio/synpress-cache': 0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2) + '@synthetixio/synpress-cache': 0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2) '@synthetixio/synpress-core': 0.0.12(@playwright/test@1.48.2) '@viem/anvil': 0.0.7(bufferutil@4.0.9)(utf-8-validate@5.0.10) fs-extra: 11.2.0 @@ -20675,10 +19421,10 @@ snapshots: - typescript - utf-8-validate - '@synthetixio/synpress-phantom@0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)': + '@synthetixio/synpress-phantom@0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)': dependencies: '@playwright/test': 1.48.2 - '@synthetixio/synpress-cache': 0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2) + '@synthetixio/synpress-cache': 0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2) '@synthetixio/synpress-core': 0.0.12(@playwright/test@1.48.2) '@viem/anvil': 0.0.7(bufferutil@4.0.9)(utf-8-validate@5.0.10) fs-extra: 11.2.0 @@ -20695,14 +19441,14 @@ snapshots: - typescript - utf-8-validate - '@synthetixio/synpress@4.1.0(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@synthetixio/synpress@4.1.0(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@playwright/test': 1.48.2 - '@synthetixio/ethereum-wallet-mock': 0.0.12(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(bufferutil@4.0.9)(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8) - '@synthetixio/synpress-cache': 0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2) + '@synthetixio/ethereum-wallet-mock': 0.0.12(@depay/solana-web3.js@1.98.3)(@depay/web3-blockchains@9.8.6)(@playwright/test@1.48.2)(bufferutil@4.0.9)(ethers@6.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typescript@5.9.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@synthetixio/synpress-cache': 0.0.12(@swc/core@1.13.3(@swc/helpers@0.5.17))(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2) '@synthetixio/synpress-core': 0.0.12(@playwright/test@1.48.2) - '@synthetixio/synpress-metamask': 0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10) - '@synthetixio/synpress-phantom': 0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10) + '@synthetixio/synpress-metamask': 0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10) + '@synthetixio/synpress-phantom': 0.0.12(@playwright/test@1.48.2)(@swc/core@1.13.3(@swc/helpers@0.5.17))(bufferutil@4.0.9)(playwright-core@1.48.2)(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@depay/solana-web3.js' - '@depay/web3-blockchains' @@ -20791,20 +19537,20 @@ snapshots: '@tailwindcss/oxide-win32-arm64-msvc': 4.1.11 '@tailwindcss/oxide-win32-x64-msvc': 4.1.11 - '@tailwindcss/typography@0.5.10(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))': + '@tailwindcss/typography@0.5.10(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) - '@tailwindcss/vite@4.1.11(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': + '@tailwindcss/vite@4.1.11(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': dependencies: '@tailwindcss/node': 4.1.11 '@tailwindcss/oxide': 4.1.11 tailwindcss: 4.1.11 - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) '@tanstack/query-core@5.56.2': {} @@ -20836,14 +19582,6 @@ snapshots: '@tanstack/query-core': 5.56.2 react: 18.2.0 - '@testcontainers/postgresql@10.10.0': - dependencies: - testcontainers: 10.10.0 - transitivePeerDependencies: - - bare-buffer - - encoding - - supports-color - '@testing-library/dom@9.3.4': dependencies: '@babel/code-frame': 7.27.1 @@ -20855,7 +19593,7 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@adobe/css-tools': 4.4.4 '@babel/runtime': 7.28.2 @@ -20868,8 +19606,8 @@ snapshots: optionalDependencies: '@jest/globals': 29.7.0 '@types/jest': 29.5.12 - jest: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) - vitest: 4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) + jest: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) + vitest: 4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) '@testing-library/react@14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -20885,8 +19623,6 @@ snapshots: '@tootallnate/once@2.0.0': {} - '@tootallnate/quickjs-emscripten@0.23.0': {} - '@tsconfig/node10@1.0.11': {} '@tsconfig/node12@1.0.11': {} @@ -20939,10 +19675,6 @@ snapshots: dependencies: '@types/node': 20.19.10 - '@types/cors@2.8.19': - dependencies: - '@types/node': 20.19.10 - '@types/d3-array@3.2.1': {} '@types/d3-color@3.1.3': {} @@ -20973,17 +19705,6 @@ snapshots: '@types/deep-eql@4.0.2': {} - '@types/docker-modem@3.0.6': - dependencies: - '@types/node': 20.19.10 - '@types/ssh2': 1.15.5 - - '@types/dockerode@3.3.42': - dependencies: - '@types/docker-modem': 3.0.6 - '@types/node': 20.19.10 - '@types/ssh2': 1.15.5 - '@types/dom-screen-wake-lock@1.0.3': {} '@types/estree@1.0.8': {} @@ -21058,20 +19779,10 @@ snapshots: dependencies: undici-types: 6.21.0 - '@types/node@22.7.5': - dependencies: - undici-types: 6.19.8 - '@types/pbkdf2@3.1.2': dependencies: '@types/node': 20.19.10 - '@types/pg@8.15.5': - dependencies: - '@types/node': 20.19.10 - pg-protocol: 1.10.3 - pg-types: 2.2.0 - '@types/prop-types@15.7.15': {} '@types/react-dom@18.2.22': @@ -21094,27 +19805,12 @@ snapshots: dependencies: '@types/node': 20.19.10 - '@types/ssh2-streams@0.1.12': - dependencies: - '@types/node': 20.19.10 - - '@types/ssh2@0.5.52': - dependencies: - '@types/node': 20.19.10 - '@types/ssh2-streams': 0.1.12 - - '@types/ssh2@1.15.5': - dependencies: - '@types/node': 18.19.122 - '@types/stack-utils@2.0.3': {} '@types/tinycolor2@1.4.6': {} '@types/tough-cookie@4.0.5': {} - '@types/triple-beam@1.3.5': {} - '@types/trusted-types@2.0.7': {} '@types/uuid@8.3.4': {} @@ -21152,11 +19848,11 @@ snapshots: - debug - utf-8-validate - '@vitejs/plugin-react-swc@3.11.0(@swc/helpers@0.5.17)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': + '@vitejs/plugin-react-swc@3.11.0(@swc/helpers@0.5.17)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': dependencies: '@rolldown/pluginutils': 1.0.0-beta.27 '@swc/core': 1.13.3(@swc/helpers@0.5.17) - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) transitivePeerDependencies: - '@swc/helpers' @@ -21188,21 +19884,13 @@ snapshots: optionalDependencies: vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) - '@vitest/mocker@4.1.9(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1))': - dependencies: - '@vitest/spy': 4.1.9 - estree-walker: 3.0.3 - magic-string: 0.30.21 - optionalDependencies: - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) - - '@vitest/mocker@4.1.9(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': + '@vitest/mocker@4.1.9(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1))': dependencies: '@vitest/spy': 4.1.9 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) '@vitest/pretty-format@4.1.9': dependencies: @@ -22671,6 +21359,14 @@ snapshots: optionalDependencies: '@types/ws': 8.18.1 + '@xstate/inspect@0.8.0(@types/ws@8.18.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.0.0-beta.54)': + dependencies: + fast-safe-stringify: 2.1.1 + ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + xstate: 5.0.0-beta.54 + optionalDependencies: + '@types/ws': 8.18.1 + '@xstate/machine-extractor@0.16.0(xstate@4.38.3)': dependencies: '@babel/parser': 7.28.0 @@ -22691,6 +21387,16 @@ snapshots: transitivePeerDependencies: - '@types/react' + '@xstate/react@3.2.2(@types/react@18.2.54)(react@18.2.0)(xstate@5.0.0-beta.54)': + dependencies: + react: 18.2.0 + use-isomorphic-layout-effect: 1.2.1(@types/react@18.2.54)(react@18.2.0) + use-sync-external-store: 1.5.0(react@18.2.0) + optionalDependencies: + xstate: 5.0.0-beta.54 + transitivePeerDependencies: + - '@types/react' + '@xstate/store@3.0.1(react@18.2.0)': optionalDependencies: react: 18.2.0 @@ -22724,11 +21430,6 @@ snapshots: dependencies: event-target-shim: 5.0.1 - accepts@2.0.0: - dependencies: - mime-types: 3.0.1 - negotiator: 1.0.0 - acorn-globals@7.0.1: dependencies: acorn: 8.15.0 @@ -22780,14 +21481,6 @@ snapshots: transitivePeerDependencies: - encoding - amp-message@0.1.2: - dependencies: - amp: 0.3.1 - - amp@0.3.1: {} - - ansi-colors@4.1.3: {} - ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 @@ -22821,42 +21514,6 @@ snapshots: normalize-path: 3.0.0 picomatch: 2.3.1 - archiver-utils@2.1.0: - dependencies: - glob: 7.2.3 - graceful-fs: 4.2.11 - lazystream: 1.0.1 - lodash.defaults: 4.2.0 - lodash.difference: 4.5.0 - lodash.flatten: 4.4.0 - lodash.isplainobject: 4.0.6 - lodash.union: 4.6.0 - normalize-path: 3.0.0 - readable-stream: 2.3.8 - - archiver-utils@3.0.4: - dependencies: - glob: 7.2.3 - graceful-fs: 4.2.11 - lazystream: 1.0.1 - lodash.defaults: 4.2.0 - lodash.difference: 4.5.0 - lodash.flatten: 4.4.0 - lodash.isplainobject: 4.0.6 - lodash.union: 4.6.0 - normalize-path: 3.0.0 - readable-stream: 3.6.2 - - archiver@5.3.2: - dependencies: - archiver-utils: 2.1.0 - async: 3.2.6 - buffer-crc32: 0.2.13 - readable-stream: 3.6.2 - readdir-glob: 1.1.3 - tar-stream: 2.2.0 - zip-stream: 4.1.1 - arg@4.1.3: {} arg@5.0.2: {} @@ -22902,12 +21559,6 @@ snapshots: inherits: 2.0.4 minimalistic-assert: 1.0.1 - asn1@0.2.6: - dependencies: - safer-buffer: 2.1.2 - - assert-options@0.8.1: {} - assert@2.1.0: dependencies: call-bind: 1.0.8 @@ -22918,10 +21569,6 @@ snapshots: assertion-error@2.0.1: {} - ast-types@0.13.4: - dependencies: - tslib: 2.8.1 - ast-types@0.16.1: dependencies: tslib: 2.8.1 @@ -22930,8 +21577,6 @@ snapshots: async-function@1.0.0: {} - async-lock@1.4.1: {} - async-mutex@0.2.6: dependencies: tslib: 2.8.1 @@ -22944,8 +21589,6 @@ snapshots: dependencies: lodash: 4.17.21 - async@3.2.6: {} - asynckit@0.4.0: {} atomic-sleep@1.0.0: {} @@ -23024,14 +21667,6 @@ snapshots: axe-core@4.7.2: {} - axios@1.15.0: - dependencies: - follow-redirects: 1.15.11(debug@4.3.7) - form-data: 4.0.5 - proxy-from-env: 2.1.0 - transitivePeerDependencies: - - debug - axios@1.15.0(debug@4.4.1): dependencies: follow-redirects: 1.15.11(debug@4.4.1) @@ -23040,8 +21675,6 @@ snapshots: transitivePeerDependencies: - debug - b4a@1.6.7: {} - babel-jest@29.7.0(@babel/core@7.28.0): dependencies: '@babel/core': 7.28.0 @@ -23146,31 +21779,6 @@ snapshots: balanced-match@1.0.2: {} - bare-events@2.6.1: - optional: true - - bare-fs@4.2.0: - dependencies: - bare-events: 2.6.1 - bare-path: 3.0.0 - bare-stream: 2.7.0(bare-events@2.6.1) - optional: true - - bare-os@3.6.1: - optional: true - - bare-path@3.0.0: - dependencies: - bare-os: 3.6.1 - optional: true - - bare-stream@2.7.0(bare-events@2.6.1): - dependencies: - streamx: 2.22.1 - optionalDependencies: - bare-events: 2.6.1 - optional: true - base-x@3.0.11: dependencies: safe-buffer: 5.2.1 @@ -23181,12 +21789,6 @@ snapshots: base64-js@1.5.1: {} - basic-ftp@5.2.0: {} - - bcrypt-pbkdf@1.0.2: - dependencies: - tweetnacl: 0.14.5 - bech32@1.1.4: {} bech32@2.0.0: {} @@ -23223,8 +21825,6 @@ snapshots: blakejs@1.2.1: {} - blessed@0.1.81: {} - bluebird@3.4.7: {} bn.js@4.12.2: {} @@ -23233,22 +21833,6 @@ snapshots: bn.js@5.2.2: {} - bodec@0.1.0: {} - - body-parser@2.2.0: - dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 4.4.3(supports-color@5.5.0) - http-errors: 2.0.0 - iconv-lite: 0.6.3 - on-finished: 2.4.1 - qs: 6.14.0 - raw-body: 3.0.0 - type-is: 2.0.1 - transitivePeerDependencies: - - supports-color - borsh@0.7.0: dependencies: bn.js: 5.2.2 @@ -23361,8 +21945,6 @@ snapshots: buffer-alloc-unsafe: 1.1.0 buffer-fill: 1.0.0 - buffer-crc32@0.2.13: {} - buffer-fill@1.0.0: {} buffer-from@1.1.2: {} @@ -23393,9 +21975,6 @@ snapshots: dependencies: node-gyp-build: 4.8.4 - buildcheck@0.0.6: - optional: true - builtin-status-codes@3.0.0: {} bundle-require@4.2.1(esbuild@0.25.3): @@ -23422,10 +22001,6 @@ snapshots: dependencies: streamsearch: 1.1.0 - byline@5.0.0: {} - - bytes@3.1.2: {} - cac@6.7.14: {} call-bind-apply-helpers@1.0.2: @@ -23554,8 +22129,6 @@ snapshots: chardet@2.1.0: {} - charm@0.1.2: {} - chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -23609,10 +22182,6 @@ snapshots: dependencies: colors: 1.0.3 - cli-tableau@2.0.1: - dependencies: - chalk: 3.0.0 - cli-truncate@2.1.0: dependencies: slice-ansi: 3.0.0 @@ -23672,12 +22241,7 @@ snapshots: color-support@1.1.3: {} - color@3.2.1: - dependencies: - color-convert: 1.9.3 - color-string: 1.9.1 - - color@4.2.3: + color@4.2.3: dependencies: color-convert: 2.0.1 color-string: 1.9.1 @@ -23686,11 +22250,6 @@ snapshots: colors@1.0.3: {} - colorspace@1.1.4: - dependencies: - color: 3.2.1 - text-hex: 1.0.0 - combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 @@ -23705,8 +22264,6 @@ snapshots: commander@14.0.2: {} - commander@2.15.1: {} - commander@2.20.3: {} commander@4.1.1: {} @@ -23717,13 +22274,6 @@ snapshots: compare-versions@6.1.1: {} - compress-commons@4.1.2: - dependencies: - buffer-crc32: 0.2.13 - crc32-stream: 4.0.3 - normalize-path: 3.0.0 - readable-stream: 3.6.2 - concat-map@0.0.1: {} connectkit@1.8.2(@babel/core@7.28.0)(@tanstack/react-query@5.56.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-is@18.3.1)(react@18.2.0)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.7(@tanstack/query-core@5.56.2)(@tanstack/react-query@5.56.2(react@18.2.0))(@types/react@18.2.54)(bufferutil@4.0.9)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.46.2)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)): @@ -23774,31 +22324,16 @@ snapshots: constants-browserify@1.0.0: {} - content-disposition@1.0.0: - dependencies: - safe-buffer: 5.2.1 - - content-type@1.0.5: {} - convert-source-map@2.0.0: {} cookie-es@1.2.2: {} - cookie-signature@1.2.2: {} - - cookie@0.7.1: {} - copy-to-clipboard@3.3.3: dependencies: toggle-selection: 1.0.6 core-util-is@1.0.3: {} - cors@2.8.5: - dependencies: - object-assign: 4.1.1 - vary: 1.1.2 - cosmiconfig@8.3.6(typescript@5.4.5): dependencies: import-fresh: 3.3.1 @@ -23819,19 +22354,8 @@ snapshots: cosmjs-types@0.9.0: {} - cpu-features@0.0.10: - dependencies: - buildcheck: 0.0.6 - nan: 2.23.0 - optional: true - crc-32@1.2.2: {} - crc32-stream@4.0.3: - dependencies: - crc-32: 1.2.2 - readable-stream: 3.6.2 - create-ecdh@4.0.4: dependencies: bn.js: 4.12.2 @@ -23876,28 +22400,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - create-jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + create-jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -23908,12 +22417,6 @@ snapshots: create-require@1.1.1: {} - cron-parser@4.9.0: - dependencies: - luxon: 3.7.1 - - croner@4.1.97: {} - cross-argv@2.0.0: {} cross-fetch@3.2.0: @@ -24014,8 +22517,6 @@ snapshots: csstype@3.1.3: {} - culvert@0.1.2: {} - d3-array@3.2.4: dependencies: internmap: 2.0.3 @@ -24056,8 +22557,6 @@ snapshots: data-uri-to-buffer@4.0.1: {} - data-uri-to-buffer@6.0.2: {} - data-urls@3.0.2: dependencies: abab: 2.0.6 @@ -24088,14 +22587,10 @@ snapshots: dependencies: '@babel/runtime': 7.28.2 - dateformat@4.6.3: {} - dayjs@1.11.10: {} dayjs@1.11.11: {} - dayjs@1.8.36: {} - debounce@1.2.1: {} debug@3.2.7: @@ -24106,10 +22601,6 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.3.6: - dependencies: - ms: 2.1.2 - debug@4.3.7: dependencies: ms: 2.1.3 @@ -24183,18 +22674,10 @@ snapshots: defu@6.1.4: {} - degenerator@5.0.1: - dependencies: - ast-types: 0.13.4 - escodegen: 2.1.0 - esprima: 4.0.1 - delay@5.0.0: {} delayed-stream@1.0.0: {} - depd@2.0.0: {} - dependency-graph@0.11.0: {} des.js@1.1.0: @@ -24240,27 +22723,6 @@ snapshots: dlv@1.1.3: {} - docker-compose@0.24.8: - dependencies: - yaml: 2.8.1 - - docker-modem@3.0.8: - dependencies: - debug: 4.4.3(supports-color@5.5.0) - readable-stream: 3.6.2 - split-ca: 1.0.1 - ssh2: 1.16.0 - transitivePeerDependencies: - - supports-color - - dockerode@3.3.5: - dependencies: - '@balena/dockerignore': 1.0.2 - docker-modem: 3.0.8 - tar-fs: 2.0.1 - transitivePeerDependencies: - - supports-color - dom-accessibility-api@0.5.16: {} dom-accessibility-api@0.6.3: {} @@ -24285,21 +22747,11 @@ snapshots: dotenv@16.4.5: {} - drizzle-kit@0.22.8: - dependencies: - '@esbuild-kit/esm-loader': 2.6.5 - esbuild: 0.25.3 - esbuild-register: 3.6.0(esbuild@0.25.3) - transitivePeerDependencies: - - supports-color - - drizzle-orm@0.31.4(@types/better-sqlite3@7.6.11)(@types/pg@8.15.5)(@types/react@18.2.54)(better-sqlite3@11.3.0)(pg@8.16.3)(react@18.2.0): + drizzle-orm@0.31.4(@types/better-sqlite3@7.6.11)(@types/react@18.2.54)(better-sqlite3@11.3.0)(react@18.2.0): optionalDependencies: '@types/better-sqlite3': 7.6.11 - '@types/pg': 8.15.5 '@types/react': 18.2.54 better-sqlite3: 11.3.0 - pg: 8.16.3 react: 18.2.0 dset@3.1.4: {} @@ -24328,8 +22780,6 @@ snapshots: futoin-hkdf: 1.5.3 secp256k1: 5.0.1 - ee-first@1.1.1: {} - electron-to-chromium@1.5.200: {} elliptic@6.6.1: @@ -24364,12 +22814,8 @@ snapshots: emoji-regex@9.2.2: {} - enabled@2.0.0: {} - encode-utf8@1.0.3: {} - encodeurl@2.0.0: {} - end-of-stream@1.4.5: dependencies: once: 1.4.0 @@ -24405,10 +22851,6 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.2.2 - enquirer@2.3.6: - dependencies: - ansi-colors: 4.1.3 - entities@4.5.0: {} entities@6.0.1: {} @@ -24523,13 +22965,6 @@ snapshots: dependencies: es6-promise: 4.2.8 - esbuild-register@3.6.0(esbuild@0.25.3): - dependencies: - debug: 4.4.1 - esbuild: 0.25.3 - transitivePeerDependencies: - - supports-color - esbuild@0.25.3: optionalDependencies: '@esbuild/aix-ppc64': 0.25.3 @@ -24589,14 +23024,10 @@ snapshots: escalade@3.2.0: {} - escape-html@1.0.3: {} - escape-string-regexp@1.0.5: {} escape-string-regexp@2.0.0: {} - escape-string-regexp@4.0.0: {} - escodegen@2.1.0: dependencies: esprima: 4.0.1 @@ -24617,8 +23048,6 @@ snapshots: esutils@2.0.3: {} - etag@1.8.1: {} - eth-block-tracker@7.1.0: dependencies: '@metamask/eth-json-rpc-provider': 1.0.1 @@ -24728,25 +23157,8 @@ snapshots: - bufferutil - utf-8-validate - ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): - dependencies: - '@adraffy/ens-normalize': 1.10.1 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@types/node': 22.7.5 - aes-js: 4.0.0-beta.5 - tslib: 2.7.0 - ws: 8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - event-target-shim@5.0.1: {} - eventemitter2@0.4.14: {} - - eventemitter2@5.0.1: {} - eventemitter2@6.4.9: {} eventemitter3@4.0.7: {} @@ -24814,43 +23226,6 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - express@5.0.0: - dependencies: - accepts: 2.0.0 - body-parser: 2.2.0 - content-disposition: 1.0.0 - content-type: 1.0.5 - cookie: 0.7.1 - cookie-signature: 1.2.2 - debug: 4.3.6 - depd: 2.0.0 - encodeurl: 2.0.0 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 2.1.0 - fresh: 2.0.0 - http-errors: 2.0.0 - merge-descriptors: 2.0.0 - methods: 1.1.2 - mime-types: 3.0.1 - on-finished: 2.4.1 - once: 1.4.0 - parseurl: 1.3.3 - proxy-addr: 2.0.7 - qs: 6.13.0 - range-parser: 1.2.1 - router: 2.2.0 - safe-buffer: 5.2.1 - send: 1.2.0 - serve-static: 2.2.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 2.0.1 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - extension-port-stream@3.0.0: dependencies: readable-stream: 4.7.0 @@ -24858,26 +23233,16 @@ snapshots: extract-files@9.0.0: {} - extrareqp2@1.0.0(debug@4.3.7): - dependencies: - follow-redirects: 1.15.11(debug@4.3.7) - transitivePeerDependencies: - - debug - eyes@0.1.8: {} fast-base64-decode@1.0.0: {} - fast-copy@3.0.2: {} - fast-decode-uri-component@1.0.1: {} fast-deep-equal@3.1.3: {} fast-equals@5.2.2: {} - fast-fifo@1.3.2: {} - fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -24886,8 +23251,6 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.8 - fast-json-patch@3.1.1: {} - fast-json-stable-stringify@2.1.0: {} fast-querystring@1.1.2: @@ -24932,8 +23295,6 @@ snapshots: transitivePeerDependencies: - encoding - fclone@1.0.11: {} - fdir@6.5.0(picomatch@4.0.3): optionalDependencies: picomatch: 4.0.3 @@ -24942,8 +23303,6 @@ snapshots: optionalDependencies: picomatch: 4.0.5 - fecha@4.2.3: {} - fetch-blob@3.2.0: dependencies: node-domexception: 1.0.0 @@ -24963,17 +23322,6 @@ snapshots: filter-obj@1.1.0: {} - finalhandler@2.1.0: - dependencies: - debug: 4.4.3(supports-color@5.5.0) - encodeurl: 2.0.0 - escape-html: 1.0.3 - on-finished: 2.4.1 - parseurl: 1.3.3 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - find-up@3.0.0: dependencies: locate-path: 3.0.0 @@ -24988,12 +23336,6 @@ snapshots: locate-path: 6.0.0 path-exists: 4.0.0 - fn.name@1.1.0: {} - - follow-redirects@1.15.11(debug@4.3.7): - optionalDependencies: - debug: 4.3.7 - follow-redirects@1.15.11(debug@4.4.1): optionalDependencies: debug: 4.4.1 @@ -25019,8 +23361,6 @@ snapshots: dependencies: fetch-blob: 3.2.0 - forwarded@0.2.0: {} - fraction.js@4.3.7: {} framer-motion@11.0.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -25056,8 +23396,6 @@ snapshots: dependencies: tslib: 2.8.1 - fresh@2.0.0: {} - fs-constants@1.0.0: {} fs-extra@11.2.0: @@ -25123,58 +23461,22 @@ snapshots: - supports-color - vitest - fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): - dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/abi-typegen': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/contract': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/math': 0.103.0 - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/recipes': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/script': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) - '@fuel-ts/versions': 0.103.0 - '@fuels/vm-asm': 0.62.0 - bundle-require: 5.1.0(esbuild@0.25.3) - chalk: 4.1.2 - chokidar: 3.6.0 - commander: 13.1.0 - esbuild: 0.25.3 - glob: 10.4.5 - handlebars: 4.7.9 - joycon: 3.1.1 - lodash.camelcase: 4.3.0 - portfinder: 1.0.32 - toml: 3.0.0 - uglify-js: 3.19.3 - yup: 1.6.1 - transitivePeerDependencies: - - encoding - - supports-color - - vitest - - fuels@0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)): + fuels@0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)): dependencies: - '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/abi-typegen': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/contract': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-coder': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/abi-typegen': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/account': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/address': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/contract': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/crypto': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/errors': 0.103.0 - '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/hasher': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/math': 0.103.0 - '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/recipes': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/script': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/program': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/recipes': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/script': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/transactions': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) + '@fuel-ts/utils': 0.103.0(vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@fuel-ts/versions': 0.103.0 '@fuels/vm-asm': 0.62.0 bundle-require: 5.1.0(esbuild@0.25.3) @@ -25272,8 +23574,6 @@ snapshots: get-package-type@0.1.0: {} - get-port@5.1.1: {} - get-port@6.1.2: {} get-proto@1.0.1: @@ -25299,20 +23599,6 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 - get-uri@6.0.5: - dependencies: - basic-ftp: 5.2.0 - data-uri-to-buffer: 6.0.2 - debug: 4.4.3(supports-color@5.5.0) - transitivePeerDependencies: - - supports-color - - git-node-fs@1.0.0(js-git@0.7.8): - optionalDependencies: - js-git: 0.7.8 - - git-sha1@0.1.2: {} - github-from-package@0.0.0: {} glob-parent@5.1.2: @@ -25633,8 +23919,6 @@ snapshots: capital-case: 1.0.4 tslib: 2.8.1 - help-me@5.0.0: {} - hey-listen@1.0.8: {} hmac-drbg@1.0.1: @@ -25655,14 +23939,6 @@ snapshots: html-escaper@2.0.2: {} - http-errors@2.0.0: - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - http-parser-js@0.5.10: {} http-proxy-agent@5.0.0: @@ -25683,7 +23959,7 @@ snapshots: http-proxy@1.18.1: dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.11(debug@4.3.7) + follow-redirects: 1.15.11(debug@4.4.1) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -25732,10 +24008,6 @@ snapshots: dependencies: '@babel/runtime': 7.28.2 - iconv-lite@0.4.24: - dependencies: - safer-buffer: 2.1.2 - iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 @@ -25824,10 +24096,6 @@ snapshots: dependencies: loose-envify: 1.4.0 - ip-address@10.0.1: {} - - ipaddr.js@1.9.1: {} - iron-webcrypto@1.2.1: {} is-absolute@1.0.0: @@ -25943,8 +24211,6 @@ snapshots: is-potential-custom-element-name@1.0.1: {} - is-promise@4.0.0: {} - is-regex@1.2.1: dependencies: call-bound: 1.0.4 @@ -26171,35 +24437,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest-cli@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + jest-cli@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + create-jest: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -26240,38 +24487,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): - dependencies: - '@babel/core': 7.28.0 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.28.0) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 20.19.10 - ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: '@babel/core': 7.28.0 '@jest/test-sequencer': 29.7.0 @@ -26297,38 +24513,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.19.10 - ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): - dependencies: - '@babel/core': 7.28.0 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.28.0) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 22.7.5 - ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) + ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -26586,24 +24771,12 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - '@jest/types': 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + jest-cli: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -26629,13 +24802,6 @@ snapshots: js-cookies@1.0.4: {} - js-git@0.7.8: - dependencies: - bodec: 0.1.0 - culvert: 0.1.2 - git-sha1: 0.1.2 - pako: 0.2.9 - js-sha3@0.8.0: {} js-tokens@4.0.0: {} @@ -26727,8 +24893,6 @@ snapshots: just-unique@4.2.0: {} - kafkajs@2.2.4: {} - keccak@3.0.4: dependencies: node-addon-api: 2.0.2 @@ -26739,19 +24903,11 @@ snapshots: kleur@3.0.3: {} - kuler@2.0.0: {} + leven@3.1.0: {} - lazy@1.0.11: {} + libsodium-sumo@0.7.15: {} - lazystream@1.0.1: - dependencies: - readable-stream: 2.3.8 - - leven@3.1.0: {} - - libsodium-sumo@0.7.15: {} - - libsodium-wrappers-sumo@0.7.15: + libsodium-wrappers-sumo@0.7.15: dependencies: libsodium-sumo: 0.7.15 @@ -26829,7 +24985,7 @@ snapshots: listenercount@1.0.1: {} - listr2@4.0.5(enquirer@2.3.6): + listr2@4.0.5: dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 @@ -26839,8 +24995,6 @@ snapshots: rxjs: 7.8.2 through: 2.3.8 wrap-ansi: 7.0.0 - optionalDependencies: - enquirer: 2.3.6 listr2@8.0.1: dependencies: @@ -26913,12 +25067,6 @@ snapshots: lodash.clonedeep@4.5.0: {} - lodash.debounce@4.0.8: {} - - lodash.defaults@4.2.0: {} - - lodash.difference@4.5.0: {} - lodash.flatten@4.4.0: {} lodash.isequal@4.5.0: {} @@ -26935,8 +25083,6 @@ snapshots: lodash.truncate@4.4.2: {} - lodash.union@4.6.0: {} - lodash@4.17.21: {} log-symbols@4.1.0: @@ -26959,15 +25105,6 @@ snapshots: strip-ansi: 7.1.0 wrap-ansi: 9.0.0 - logform@2.7.0: - dependencies: - '@colors/colors': 1.6.0 - '@types/triple-beam': 1.3.5 - fecha: 4.2.3 - ms: 2.1.3 - safe-stable-stringify: 2.5.0 - triple-beam: 1.4.1 - long@4.0.0: {} long@5.3.2: {} @@ -26990,14 +25127,6 @@ snapshots: dependencies: yallist: 3.1.1 - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - - lru-cache@7.18.3: {} - - luxon@3.7.1: {} - lz-string@1.5.0: {} magic-string@0.30.17: @@ -27032,14 +25161,10 @@ snapshots: mdn-data@2.0.14: {} - media-typer@1.1.0: {} - memoize-one@5.2.1: {} memorystream@0.3.1: {} - merge-descriptors@2.0.0: {} - merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -27050,8 +25175,6 @@ snapshots: mersenne-twister@1.1.0: {} - methods@1.1.2: {} - micro-ftch@0.3.1: {} micromatch@4.0.5: @@ -27071,16 +25194,10 @@ snapshots: mime-db@1.52.0: {} - mime-db@1.54.0: {} - mime-types@2.1.35: dependencies: mime-db: 1.52.0 - mime-types@3.0.1: - dependencies: - mime-db: 1.54.0 - mimic-fn@2.1.0: {} mimic-fn@4.0.0: {} @@ -27103,10 +25220,6 @@ snapshots: dependencies: brace-expansion: 1.1.12 - minimatch@5.1.6: - dependencies: - brace-expansion: 2.0.2 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.2 @@ -27129,14 +25242,10 @@ snapshots: dependencies: minimist: 1.2.8 - mkdirp@1.0.4: {} - mkdirp@3.0.1: {} modern-normalize@2.0.0: {} - module-details-from-path@1.0.4: {} - moment@2.30.1: {} motion@10.16.2: @@ -27162,9 +25271,6 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - nan@2.23.0: - optional: true - nano-css@5.6.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -27184,20 +25290,8 @@ snapshots: natural-compare@1.4.0: {} - needle@2.4.0: - dependencies: - debug: 3.2.7 - iconv-lite: 0.4.24 - sax: 1.4.1 - transitivePeerDependencies: - - supports-color - - negotiator@1.0.0: {} - neo-async@2.6.2: {} - netmask@2.0.2: {} - nice-try@1.0.5: {} no-case@3.0.4: @@ -27302,11 +25396,6 @@ snapshots: dependencies: path-key: 4.0.0 - nssocket@0.6.0: - dependencies: - eventemitter2: 0.4.14 - lazy: 1.0.11 - nullthrows@1.1.1: {} nwsapi@2.2.21: {} @@ -27349,22 +25438,12 @@ snapshots: on-exit-leak-free@0.2.0: {} - on-exit-leak-free@2.1.2: {} - - on-finished@2.4.1: - dependencies: - ee-first: 1.1.1 - on-net-listen@1.1.2: {} once@1.4.0: dependencies: wrappy: 1.0.2 - one-time@1.0.0: - dependencies: - fn.name: 1.1.0 - onetime@5.1.2: dependencies: mimic-fn: 2.1.0 @@ -27471,28 +25550,8 @@ snapshots: p-try@2.2.0: {} - pac-proxy-agent@7.2.0: - dependencies: - '@tootallnate/quickjs-emscripten': 0.23.0 - agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) - get-uri: 6.0.5 - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - pac-resolver: 7.0.1 - socks-proxy-agent: 8.0.5 - transitivePeerDependencies: - - supports-color - - pac-resolver@7.0.1: - dependencies: - degenerator: 5.0.1 - netmask: 2.0.2 - package-json-from-dist@1.0.1: {} - pako@0.2.9: {} - pako@1.0.11: {} param-case@3.0.4: @@ -27535,8 +25594,6 @@ snapshots: dependencies: entities: 6.0.1 - parseurl@1.3.3: {} - pascal-case@3.1.2: dependencies: no-case: 3.0.4 @@ -27574,8 +25631,6 @@ snapshots: lru-cache: 10.4.3 minipass: 7.1.2 - path-to-regexp@8.2.0: {} - path-type@3.0.0: dependencies: pify: 3.0.0 @@ -27595,78 +25650,6 @@ snapshots: sha.js: 2.4.12 to-buffer: 1.2.1 - pg-boss@9.0.3: - dependencies: - cron-parser: 4.9.0 - delay: 5.0.0 - lodash.debounce: 4.0.8 - p-map: 4.0.0 - pg: 8.16.3 - serialize-error: 8.1.0 - uuid: 9.0.1 - transitivePeerDependencies: - - pg-native - - pg-cloudflare@1.2.7: - optional: true - - pg-connection-string@2.9.1: {} - - pg-int8@1.0.1: {} - - pg-minify@1.6.5: {} - - pg-pool@3.10.1(pg@8.12.0): - dependencies: - pg: 8.12.0 - - pg-pool@3.10.1(pg@8.16.3): - dependencies: - pg: 8.16.3 - - pg-promise@11.9.1: - dependencies: - assert-options: 0.8.1 - pg: 8.12.0 - pg-minify: 1.6.5 - spex: 3.3.0 - transitivePeerDependencies: - - pg-native - - pg-protocol@1.10.3: {} - - pg-types@2.2.0: - dependencies: - pg-int8: 1.0.1 - postgres-array: 2.0.0 - postgres-bytea: 1.0.0 - postgres-date: 1.0.7 - postgres-interval: 1.2.0 - - pg@8.12.0: - dependencies: - pg-connection-string: 2.9.1 - pg-pool: 3.10.1(pg@8.12.0) - pg-protocol: 1.10.3 - pg-types: 2.2.0 - pgpass: 1.0.5 - optionalDependencies: - pg-cloudflare: 1.2.7 - - pg@8.16.3: - dependencies: - pg-connection-string: 2.9.1 - pg-pool: 3.10.1(pg@8.16.3) - pg-protocol: 1.10.3 - pg-types: 2.2.0 - pgpass: 1.0.5 - optionalDependencies: - pg-cloudflare: 1.2.7 - - pgpass@1.0.5: - dependencies: - split2: 4.2.0 - picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -27679,15 +25662,6 @@ snapshots: pidtree@0.6.0: {} - pidusage@2.0.21: - dependencies: - safe-buffer: 5.2.1 - optional: true - - pidusage@3.0.2: - dependencies: - safe-buffer: 5.2.1 - pify@2.3.0: {} pify@3.0.0: {} @@ -27699,32 +25673,8 @@ snapshots: duplexify: 4.1.3 split2: 4.2.0 - pino-abstract-transport@1.2.0: - dependencies: - readable-stream: 4.7.0 - split2: 4.2.0 - - pino-pretty@11.2.1: - dependencies: - colorette: 2.0.20 - dateformat: 4.6.3 - fast-copy: 3.0.2 - fast-safe-stringify: 2.1.1 - help-me: 5.0.0 - joycon: 3.1.1 - minimist: 1.2.8 - on-exit-leak-free: 2.1.2 - pino-abstract-transport: 1.2.0 - pump: 3.0.3 - readable-stream: 4.7.0 - secure-json-parse: 2.7.0 - sonic-boom: 4.2.0 - strip-json-comments: 3.1.1 - pino-std-serializers@4.0.0: {} - pino-std-serializers@7.0.0: {} - pino@7.11.0: dependencies: atomic-sleep: 1.0.0 @@ -27739,20 +25689,6 @@ snapshots: sonic-boom: 2.8.0 thread-stream: 0.15.2 - pino@9.2.0: - dependencies: - atomic-sleep: 1.0.0 - fast-redact: 3.5.0 - on-exit-leak-free: 2.1.2 - pino-abstract-transport: 1.2.0 - pino-std-serializers: 7.0.0 - process-warning: 3.0.0 - quick-format-unescaped: 4.0.4 - real-require: 0.2.0 - safe-stable-stringify: 2.5.0 - sonic-boom: 4.2.0 - thread-stream: 3.1.0 - pirates@4.0.7: {} pkg-dir@4.2.0: @@ -27771,79 +25707,6 @@ snapshots: optionalDependencies: fsevents: 2.3.2 - pm2-axon-rpc@0.7.1: - dependencies: - debug: 4.4.3(supports-color@5.5.0) - transitivePeerDependencies: - - supports-color - - pm2-axon@4.0.1: - dependencies: - amp: 0.3.1 - amp-message: 0.1.2 - debug: 4.4.3(supports-color@5.5.0) - escape-string-regexp: 4.0.0 - transitivePeerDependencies: - - supports-color - - pm2-deploy@1.0.2: - dependencies: - run-series: 1.1.9 - tv4: 1.3.0 - - pm2-multimeter@0.1.2: - dependencies: - charm: 0.1.2 - - pm2-sysmonit@1.2.8: - dependencies: - async: 3.2.6 - debug: 4.4.3(supports-color@5.5.0) - pidusage: 2.0.21 - systeminformation: 5.27.7 - tx2: 1.0.5 - transitivePeerDependencies: - - supports-color - optional: true - - pm2@5.4.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): - dependencies: - '@pm2/agent': 2.0.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@pm2/io': 6.0.1 - '@pm2/js-api': 0.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@pm2/pm2-version-check': 1.0.4 - async: 3.2.6 - blessed: 0.1.81 - chalk: 3.0.0 - chokidar: 3.6.0 - cli-tableau: 2.0.1 - commander: 2.15.1 - croner: 4.1.97 - dayjs: 1.11.11 - debug: 4.4.1 - enquirer: 2.3.6 - eventemitter2: 5.0.1 - fclone: 1.0.11 - js-yaml: 4.1.0 - mkdirp: 1.0.4 - needle: 2.4.0 - pidusage: 3.0.2 - pm2-axon: 4.0.1 - pm2-axon-rpc: 0.7.1 - pm2-deploy: 1.0.2 - pm2-multimeter: 0.1.2 - promptly: 2.2.0 - semver: 7.7.2 - source-map-support: 0.5.21 - sprintf-js: 1.1.2 - vizion: 2.2.1 - optionalDependencies: - pm2-sysmonit: 1.2.8 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - pngjs@3.4.0: {} pngjs@5.0.0: {} @@ -28009,45 +25872,37 @@ snapshots: postcss: 8.4.35 ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@18.19.122)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.4.35)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + postcss-load-config@4.0.2(postcss@8.4.35)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: lilconfig: 3.1.3 yaml: 2.8.1 optionalDependencies: postcss: 8.4.35 - ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) - - postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): - dependencies: - lilconfig: 3.1.3 - yaml: 2.8.1 - optionalDependencies: - postcss: 8.5.6 - ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: lilconfig: 3.1.3 yaml: 2.8.1 optionalDependencies: postcss: 8.5.6 - ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) + ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): + postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)): dependencies: lilconfig: 3.1.3 yaml: 2.8.1 optionalDependencies: postcss: 8.5.6 - ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2) + ts-node: 10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2) - postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: lilconfig: 3.1.3 yaml: 2.8.1 optionalDependencies: postcss: 8.5.6 - ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5) + ts-node: 10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5) postcss-logical@7.0.1(postcss@8.4.35): dependencies: @@ -28199,16 +26054,6 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - postgres-array@2.0.0: {} - - postgres-bytea@1.0.0: {} - - postgres-date@1.0.7: {} - - postgres-interval@1.2.0: - dependencies: - xtend: 4.0.2 - preact@10.27.0: {} preact@10.28.2: {} @@ -28250,8 +26095,6 @@ snapshots: process-warning@1.0.0: {} - process-warning@3.0.0: {} - process@0.11.10: {} progress@2.0.3: {} @@ -28260,10 +26103,6 @@ snapshots: dependencies: asap: 2.0.6 - promptly@2.2.0: - dependencies: - read: 1.0.7 - prompts@2.4.2: dependencies: kleur: 3.0.3 @@ -28281,10 +26120,6 @@ snapshots: retry: 0.12.0 signal-exit: 3.0.7 - properties-reader@2.3.0: - dependencies: - mkdirp: 1.0.4 - property-expr@2.0.6: {} protobufjs@8.0.1: @@ -28302,28 +26137,8 @@ snapshots: '@types/node': 20.19.10 long: 5.3.2 - proxy-addr@2.0.7: - dependencies: - forwarded: 0.2.0 - ipaddr.js: 1.9.1 - - proxy-agent@6.3.1: - dependencies: - agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - lru-cache: 7.18.3 - pac-proxy-agent: 7.2.0 - proxy-from-env: 1.1.0 - socks-proxy-agent: 8.0.5 - transitivePeerDependencies: - - supports-color - proxy-compare@2.5.1: {} - proxy-from-env@1.1.0: {} - proxy-from-env@2.1.0: {} psl@1.15.0: @@ -28381,10 +26196,6 @@ snapshots: pngjs: 5.0.0 yargs: 15.4.1 - qs@6.13.0: - dependencies: - side-channel: 1.1.0 - qs@6.14.0: dependencies: side-channel: 1.1.0 @@ -28417,15 +26228,6 @@ snapshots: randombytes: 2.1.0 safe-buffer: 5.2.1 - range-parser@1.2.1: {} - - raw-body@3.0.0: - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.6.3 - unpipe: 1.0.0 - rc@1.2.8: dependencies: deep-extend: 0.6.0 @@ -28687,10 +26489,6 @@ snapshots: normalize-package-data: 2.5.0 path-type: 3.0.0 - read@1.0.7: - dependencies: - mute-stream: 0.0.8 - readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 @@ -28715,10 +26513,6 @@ snapshots: process: 0.11.10 string_decoder: 1.3.0 - readdir-glob@1.1.3: - dependencies: - minimatch: 5.1.6 - readdirp@3.6.0: dependencies: picomatch: 2.3.1 @@ -28729,8 +26523,6 @@ snapshots: real-require@0.1.0: {} - real-require@0.2.0: {} - recast@0.23.11: dependencies: ast-types: 0.16.1 @@ -28801,14 +26593,6 @@ snapshots: require-from-string@2.0.2: {} - require-in-the-middle@5.2.0: - dependencies: - debug: 4.4.3(supports-color@5.5.0) - module-details-from-path: 1.0.4 - resolve: 1.22.10 - transitivePeerDependencies: - - supports-color - require-main-filename@2.0.0: {} requires-port@1.0.0: {} @@ -28910,16 +26694,6 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.46.2 fsevents: 2.3.3 - router@2.2.0: - dependencies: - debug: 4.4.3(supports-color@5.5.0) - depd: 2.0.0 - is-promise: 4.0.0 - parseurl: 1.3.3 - path-to-regexp: 8.2.0 - transitivePeerDependencies: - - supports-color - rpc-websockets@7.11.0: dependencies: eventemitter3: 4.0.7 @@ -28952,8 +26726,6 @@ snapshots: dependencies: queue-microtask: 1.2.3 - run-series@1.1.9: {} - rxjs@7.8.2: dependencies: tslib: 2.8.1 @@ -28985,8 +26757,6 @@ snapshots: safer-buffer@2.1.2: {} - sax@1.4.1: {} - saxes@6.0.0: dependencies: xmlchars: 2.2.0 @@ -29013,55 +26783,20 @@ snapshots: node-addon-api: 5.1.0 node-gyp-build: 4.8.4 - secure-json-parse@2.7.0: {} - semver@5.7.2: {} semver@6.3.1: {} - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - semver@7.7.2: {} semver@7.7.3: {} - send@1.2.0: - dependencies: - debug: 4.4.3(supports-color@5.5.0) - encodeurl: 2.0.0 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 2.0.0 - http-errors: 2.0.0 - mime-types: 3.0.1 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - sentence-case@3.0.4: dependencies: no-case: 3.0.4 tslib: 2.8.1 upper-case-first: 2.0.2 - serialize-error@8.1.0: - dependencies: - type-fest: 0.20.2 - - serve-static@2.2.0: - dependencies: - encodeurl: 2.0.0 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 1.2.0 - transitivePeerDependencies: - - supports-color - set-blocking@2.0.0: {} set-function-length@1.2.2: @@ -29090,8 +26825,6 @@ snapshots: setimmediate@1.0.5: {} - setprototypeof@1.2.0: {} - sha.js@2.4.12: dependencies: inherits: 2.0.4 @@ -29116,8 +26849,6 @@ snapshots: shell-quote@1.9.0: {} - shimmer@1.2.1: {} - side-channel-list@1.0.0: dependencies: es-errors: 1.3.0 @@ -29194,8 +26925,6 @@ snapshots: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 - smart-buffer@4.2.0: {} - snake-case@3.0.4: dependencies: dot-case: 3.0.4 @@ -29230,29 +26959,12 @@ snapshots: transitivePeerDependencies: - supports-color - socks-proxy-agent@8.0.5: - dependencies: - agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) - socks: 2.8.7 - transitivePeerDependencies: - - supports-color - - socks@2.8.7: - dependencies: - ip-address: 10.0.1 - smart-buffer: 4.2.0 - solidity-ast@0.4.60: {} sonic-boom@2.8.0: dependencies: atomic-sleep: 1.0.0 - sonic-boom@4.2.0: - dependencies: - atomic-sleep: 1.0.0 - source-map-js@1.2.1: {} source-map-support@0.5.13: @@ -29260,11 +26972,6 @@ snapshots: buffer-from: 1.1.2 source-map: 0.6.1 - source-map-support@0.5.21: - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - source-map@0.5.6: {} source-map@0.6.1: {} @@ -29289,10 +26996,6 @@ snapshots: spdx-license-ids@3.0.22: {} - spex@3.3.0: {} - - split-ca@1.0.1: {} - split-on-first@1.1.0: {} split2@4.2.0: {} @@ -29303,27 +27006,10 @@ snapshots: sprintf-js@1.0.3: {} - sprintf-js@1.1.2: {} - - ssh-remote-port-forward@1.0.4: - dependencies: - '@types/ssh2': 0.5.52 - ssh2: 1.16.0 - - ssh2@1.16.0: - dependencies: - asn1: 0.2.6 - bcrypt-pbkdf: 1.0.2 - optionalDependencies: - cpu-features: 0.0.10 - nan: 2.23.0 - stack-generator@2.0.10: dependencies: stackframe: 1.3.4 - stack-trace@0.0.10: {} - stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 @@ -29343,8 +27029,6 @@ snapshots: stack-generator: 2.0.10 stacktrace-gps: 3.1.2 - statuses@2.0.1: {} - std-env@4.1.0: {} stop-iteration-iterator@1.1.0: @@ -29374,13 +27058,6 @@ snapshots: streamsearch@1.1.0: {} - streamx@2.22.1: - dependencies: - fast-fifo: 1.3.2 - text-decoder: 1.2.3 - optionalDependencies: - bare-events: 2.6.1 - strict-uri-encode@2.0.0: {} string-argv@0.3.2: {} @@ -29559,9 +27236,6 @@ snapshots: timeout-signal: 2.0.0 whatwg-mimetype: 4.0.0 - systeminformation@5.27.7: - optional: true - table@6.9.0: dependencies: ajv: 8.17.1 @@ -29583,10 +27257,10 @@ snapshots: tailwind-merge: 1.14.0 tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@18.19.122)(typescript@5.4.5)) - tailwind-variants@0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))): + tailwind-variants@0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))): dependencies: tailwind-merge: 1.14.0 - tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) tailwind-variants@0.1.20(tailwindcss@4.1.11): dependencies: @@ -29597,19 +27271,19 @@ snapshots: dependencies: tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@18.19.122)(typescript@5.4.5)) - tailwindcss-animate@1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))): dependencies: - tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) tailwindcss-radix@3.0.3: {} - tailwindcss-themer@4.0.0(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))): + tailwindcss-themer@4.0.0(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))): dependencies: color: 4.2.3 just-unique: 4.2.0 lodash.merge: 4.6.2 lodash.mergewith: 4.6.2 - tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@18.19.122)(typescript@5.4.5)): dependencies: @@ -29638,7 +27312,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)): + tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -29657,7 +27331,7 @@ snapshots: postcss: 8.4.35 postcss-import: 15.1.0(postcss@8.4.35) postcss-js: 4.0.1(postcss@8.4.35) - postcss-load-config: 4.0.2(postcss@8.4.35)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.4.35)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) postcss-nested: 6.2.0(postcss@8.4.35) postcss-selector-parser: 6.1.2 resolve: 1.22.10 @@ -29676,16 +27350,6 @@ snapshots: pump: 3.0.3 tar-stream: 2.2.0 - tar-fs@3.1.0: - dependencies: - pump: 3.0.3 - tar-stream: 3.1.7 - optionalDependencies: - bare-fs: 4.2.0 - bare-path: 3.0.0 - transitivePeerDependencies: - - bare-buffer - tar-stream@2.2.0: dependencies: bl: 4.1.0 @@ -29694,12 +27358,6 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - tar-stream@3.1.7: - dependencies: - b4a: 1.6.7 - fast-fifo: 1.3.2 - streamx: 2.22.1 - tar@7.4.3: dependencies: '@isaacs/fs-minipass': 4.0.1 @@ -29715,36 +27373,8 @@ snapshots: glob: 7.2.3 minimatch: 3.1.2 - testcontainers@10.10.0: - dependencies: - '@balena/dockerignore': 1.0.2 - '@types/dockerode': 3.3.42 - archiver: 5.3.2 - async-lock: 1.4.1 - byline: 5.0.0 - debug: 4.4.1 - docker-compose: 0.24.8 - dockerode: 3.3.5 - get-port: 5.1.1 - node-fetch: 2.7.0 - proper-lockfile: 4.1.2 - properties-reader: 2.3.0 - ssh-remote-port-forward: 1.0.4 - tar-fs: 3.1.0 - tmp: 0.2.5 - transitivePeerDependencies: - - bare-buffer - - encoding - - supports-color - - text-decoder@1.2.3: - dependencies: - b4a: 1.6.7 - text-encoding-utf-8@1.0.2: {} - text-hex@1.0.0: {} - thenify-all@1.6.0: dependencies: thenify: 3.3.1 @@ -29757,10 +27387,6 @@ snapshots: dependencies: real-require: 0.1.0 - thread-stream@3.1.0: - dependencies: - real-require: 0.2.0 - throttle-debounce@3.0.1: {} through@2.3.8: {} @@ -29804,8 +27430,6 @@ snapshots: dependencies: tslib: 2.8.1 - tmp@0.2.5: {} - tmpl@1.0.5: {} to-buffer@1.2.1: @@ -29820,8 +27444,6 @@ snapshots: toggle-selection@1.0.6: {} - toidentifier@1.0.1: {} - toml@3.0.0: {} toposort@2.0.2: {} @@ -29847,18 +27469,16 @@ snapshots: tree-kill@1.2.2: {} - triple-beam@1.4.1: {} - ts-easing@0.2.0: {} ts-interface-checker@0.1.13: {} - ts-jest@29.4.1(@babel/core@7.28.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.4.1(@babel/core@7.28.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.0))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.9 - jest: 29.7.0(@types/node@22.7.5)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + jest: 29.7.0(@types/node@20.19.10)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -29896,7 +27516,7 @@ snapshots: '@swc/core': 1.13.3(@swc/helpers@0.5.17) optional: true - ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2): + ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -29910,34 +27530,13 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.9.2 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optionalDependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.17) - optional: true - - ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 22.7.5 - acorn: 8.15.0 - acorn-walk: 8.3.4 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: '@swc/core': 1.13.3(@swc/helpers@0.5.17) - ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2): + ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -29955,17 +27554,17 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - '@swc/core': 1.4.1(@swc/helpers@0.5.17) + '@swc/core': 1.13.3(@swc/helpers@0.5.17) optional: true - ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5): + ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.7.5 + '@types/node': 20.19.10 acorn: 8.15.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -29997,19 +27596,15 @@ snapshots: tslib@1.14.1: {} - tslib@1.9.3: {} - tslib@2.4.0: {} tslib@2.4.1: {} tslib@2.6.3: {} - tslib@2.7.0: {} - tslib@2.8.1: {} - tsup@8.0.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.9.2): + tsup@8.0.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.9.2): dependencies: bundle-require: 4.2.1(esbuild@0.25.3) cac: 6.7.14 @@ -30019,7 +27614,7 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) resolve-from: 5.0.0 rollup: 4.46.2 source-map: 0.8.0-beta.0 @@ -30033,7 +27628,7 @@ snapshots: - supports-color - ts-node - tsup@8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5): + tsup@8.0.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5): dependencies: bundle-require: 4.2.1(esbuild@0.25.3) cac: 6.7.14 @@ -30043,7 +27638,7 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) resolve-from: 5.0.0 rollup: 4.46.2 source-map: 0.8.0-beta.0 @@ -30057,31 +27652,7 @@ snapshots: - supports-color - ts-node - tsup@8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2))(typescript@5.9.2): - dependencies: - bundle-require: 4.2.1(esbuild@0.27.2) - cac: 6.7.14 - chokidar: 3.6.0 - debug: 4.4.3(supports-color@5.5.0) - esbuild: 0.27.2 - execa: 5.1.1 - globby: 11.1.0 - joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) - resolve-from: 5.0.0 - rollup: 4.46.2 - source-map: 0.8.0-beta.0 - sucrase: 3.35.0 - tree-kill: 1.2.2 - optionalDependencies: - '@swc/core': 1.13.3(@swc/helpers@0.5.17) - postcss: 8.5.6 - typescript: 5.9.2 - transitivePeerDependencies: - - supports-color - - ts-node - - tsup@8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5))(typescript@5.4.5): + tsup@8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5))(typescript@5.4.5): dependencies: bundle-require: 4.2.1(esbuild@0.27.2) cac: 6.7.14 @@ -30091,7 +27662,7 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@22.7.5)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.4.5)) resolve-from: 5.0.0 rollup: 4.46.2 source-map: 0.8.0-beta.0 @@ -30105,7 +27676,7 @@ snapshots: - supports-color - ts-node - tsup@8.1.0(@swc/core@1.4.1(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2))(typescript@5.9.2): + tsup@8.1.0(@swc/core@1.13.3(@swc/helpers@0.5.17))(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2))(typescript@5.9.2): dependencies: bundle-require: 4.2.1(esbuild@0.27.2) cac: 6.7.14 @@ -30115,14 +27686,14 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.4.1(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) + postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.13.3(@swc/helpers@0.5.17))(@types/node@20.19.10)(typescript@5.9.2)) resolve-from: 5.0.0 rollup: 4.46.2 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tree-kill: 1.2.2 optionalDependencies: - '@swc/core': 1.4.1(@swc/helpers@0.5.17) + '@swc/core': 1.13.3(@swc/helpers@0.5.17) postcss: 8.5.6 typescript: 5.9.2 transitivePeerDependencies: @@ -30176,19 +27747,8 @@ snapshots: turbo-windows-64: 2.3.3 turbo-windows-arm64: 2.3.3 - tv4@1.3.0: {} - - tweetnacl@0.14.5: {} - - tx2@1.0.5: - dependencies: - json-stringify-safe: 5.0.1 - optional: true - type-detect@4.0.8: {} - type-fest@0.20.2: {} - type-fest@0.21.3: {} type-fest@2.19.0: {} @@ -30197,12 +27757,6 @@ snapshots: type-fest@4.41.0: {} - type-is@2.0.1: - dependencies: - content-type: 1.0.5 - media-typer: 1.1.0 - mime-types: 3.0.1 - typed-array-buffer@1.0.3: dependencies: call-bound: 1.0.4 @@ -30267,8 +27821,6 @@ snapshots: undici-types@5.26.5: {} - undici-types@6.19.8: {} - undici-types@6.21.0: {} undici@5.29.0: @@ -30291,8 +27843,6 @@ snapshots: dependencies: normalize-path: 2.1.1 - unpipe@1.0.0: {} - unstorage@1.16.1(idb-keyval@6.2.2): dependencies: anymatch: 3.1.3 @@ -30396,8 +27946,6 @@ snapshots: is-typed-array: 1.1.15 which-typed-array: 1.1.19 - utils-merge@1.0.1: {} - uuid-parse@1.1.0: {} uuid@8.3.2: {} @@ -30427,8 +27975,6 @@ snapshots: value-or-promise@1.0.12: {} - vary@1.1.2: {} - victory-vendor@36.9.2: dependencies: '@types/d3-array': 3.2.1 @@ -30497,32 +28043,32 @@ snapshots: - utf-8-validate - zod - vite-plugin-node-polyfills@0.24.0(rollup@4.46.2)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): + vite-plugin-node-polyfills@0.24.0(rollup@4.46.2)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.46.2) node-stdlib-browser: 1.3.1 - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) transitivePeerDependencies: - rollup - vite-plugin-svgr@4.2.0(rollup@4.46.2)(typescript@5.4.5)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): + vite-plugin-svgr@4.2.0(rollup@4.46.2)(typescript@5.4.5)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): dependencies: '@rollup/pluginutils': 5.2.0(rollup@4.46.2) '@svgr/core': 8.1.0(typescript@5.4.5) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5)) - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) transitivePeerDependencies: - rollup - supports-color - typescript - vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): + vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)): dependencies: debug: 4.4.1 globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.4.5) optionalDependencies: - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - typescript @@ -30559,23 +28105,7 @@ snapshots: tsx: 4.16.0 yaml: 2.8.1 - vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1): - dependencies: - esbuild: 0.25.3 - fdir: 6.5.0(picomatch@4.0.3) - picomatch: 4.0.3 - postcss: 8.5.6 - rollup: 4.46.2 - tinyglobby: 0.2.14 - optionalDependencies: - '@types/node': 22.7.5 - fsevents: 2.3.3 - jiti: 2.5.1 - lightningcss: 1.30.1 - tsx: 4.16.0 - yaml: 2.8.1 - - vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1): + vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1): dependencies: esbuild: 0.25.3 fdir: 6.5.0(picomatch@4.0.3) @@ -30584,7 +28114,7 @@ snapshots: rollup: 4.46.2 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.7.5 + '@types/node': 20.19.10 fsevents: 2.3.3 jiti: 2.5.1 lightningcss: 1.30.1 @@ -30629,10 +28159,10 @@ snapshots: - tsx - yaml - vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1): + vitest@4.1.9(@types/node@20.19.10)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1): dependencies: '@vitest/expect': 4.1.9 - '@vitest/mocker': 4.1.9(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1)) + '@vitest/mocker': 4.1.9(vite@6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) '@vitest/pretty-format': 4.1.9 '@vitest/runner': 4.1.9 '@vitest/snapshot': 4.1.9 @@ -30649,48 +28179,10 @@ snapshots: tinyexec: 1.2.4 tinyglobby: 0.2.17 tinyrainbow: 3.1.0 - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.16.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@20.19.10)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.7.5 - jsdom: 20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - jiti - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - terser - - tsx - - yaml - - vitest@4.1.9(@types/node@22.7.5)(jiti@2.5.1)(jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1): - dependencies: - '@vitest/expect': 4.1.9 - '@vitest/mocker': 4.1.9(vite@6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1)) - '@vitest/pretty-format': 4.1.9 - '@vitest/runner': 4.1.9 - '@vitest/snapshot': 4.1.9 - '@vitest/spy': 4.1.9 - '@vitest/utils': 4.1.9 - es-module-lexer: 2.3.0 - expect-type: 1.4.0 - magic-string: 0.30.21 - obug: 2.1.3 - pathe: 2.0.3 - picomatch: 4.0.3 - std-env: 4.1.0 - tinybench: 2.9.0 - tinyexec: 1.2.4 - tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 6.3.5(@types/node@22.7.5)(jiti@2.5.1)(lightningcss@1.30.1)(tsx@4.7.1)(yaml@2.8.1) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 22.7.5 + '@types/node': 20.19.10 jsdom: 20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - jiti @@ -30705,13 +28197,6 @@ snapshots: - tsx - yaml - vizion@2.2.1: - dependencies: - async: 2.6.4 - git-node-fs: 1.0.0(js-git@0.7.8) - ini: 1.3.8 - js-git: 0.7.8 - vm-browserify@1.1.2: {} w3c-xmlserializer@4.0.0: @@ -30906,26 +28391,6 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 - winston-transport@4.9.0: - dependencies: - logform: 2.7.0 - readable-stream: 3.6.2 - triple-beam: 1.4.1 - - winston@3.13.0: - dependencies: - '@colors/colors': 1.6.0 - '@dabh/diagnostics': 2.0.3 - async: 3.2.6 - is-stream: 2.0.1 - logform: 2.7.0 - one-time: 1.0.0 - readable-stream: 3.6.2 - safe-stable-stringify: 2.5.0 - stack-trace: 0.0.10 - triple-beam: 1.4.1 - winston-transport: 4.9.0 - wordwrap@1.0.0: {} wrap-ansi@5.1.0: @@ -30992,8 +28457,6 @@ snapshots: xstate@5.0.0-beta.54: {} - xstate@5.20.2: {} - xstream@11.14.0: dependencies: globalthis: 1.0.4 @@ -31009,8 +28472,6 @@ snapshots: yallist@3.1.1: {} - yallist@4.0.0: {} - yallist@5.0.0: {} yaml-ast-parser@0.0.43: {} @@ -31086,12 +28547,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zip-stream@4.1.1: - dependencies: - archiver-utils: 3.0.4 - compress-commons: 4.1.2 - readable-stream: 3.6.2 - zod-validation-error@3.0.0(zod@3.22.4): dependencies: zod: 3.22.4 diff --git a/scripts/run-backend.sh b/scripts/run-backend.sh deleted file mode 100755 index 21e4e819f..000000000 --- a/scripts/run-backend.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -# run backend -cd packages/graphql -npx tsx src/app.ts diff --git a/scripts/setup-backend.sh b/scripts/setup-backend.sh deleted file mode 100755 index 649eedcc0..000000000 --- a/scripts/setup-backend.sh +++ /dev/null @@ -1,223 +0,0 @@ -#!/bin/bash - -check_var () { - cd packages/graphql - echo "" - echo "Checking the .env file" - sleep .5 - if [ ! -f .env ]; then - echo "Fail! .env file is missing, please copy from .env.example" - exit 1 - else - echo "Done! .env file found successfully" - fi - echo "Loading the .env file variables..." - sleep 2 - export $(grep -v '^#' .env | xargs) - env_vars=( - FUEL_PROVIDER - SERVER_PORT - SERVER_API_KEY - DB_HOST - DB_PORT - DB_USER - DB_PASS - DB_NAME - RABBITMQ_HOST - RABBITMQ_PORT - RABBITMQ_USER - RABBITMQ_PASS - QUEUE_CONCURRENCY - SSL - DEBUG - ) - echo "Checking .env file variables..." - for env_var in "${env_vars[@]}"; do - if [[ -z "${!env_var}" ]]; then - echo $env_var not found, please set the variable on .env file - exit 1 - else - echo "$env_var = ${!env_var}" - fi - done - sleep 1 - echo "Done! .env file was configured successfully" - echo "" - cd ../.. -} - -start_database () { - echo "" - export PGPASSWORD='postgres' - pg_isready -h localhost -U postgres -d postgres -p 5435 > /dev/null 2>&1 - if [ $? -eq 0 ]; then - echo "Database is already started" - echo "" - return - fi - echo "Starting database using docker compose..." - export PROFILE=indexer-local - pnpm node:start &> /dev/null 2>&1 - status=1 - limit=0 - while [ $status -gt 0 ]; do - if [ $limit -eq 20 ]; then - echo "Could not start PostgreSQL, please check your environment" - echo "" - return - fi - sleep 1 - echo "Waiting PostgreSQL connection..." - pg_isready -h localhost -U postgres -d postgres -p 5435 > /dev/null 2>&1 - status=$? - limit=$((limit+1)) - done - echo "Done! PostgreSQL is ready and accepting connections." - echo "" -} - -apply_migrations () { - cd packages/graphql - echo "Checking psql installation..." - if command -v psql &> /dev/null 2>&1 - then - echo "Done! psql is installed" - else - echo "Fail! psql is not installed, to install psql use: brew install libpq" - exit 1 - fi - export PGPASSWORD='postgres' - pg_isready -h localhost -U postgres -d postgres -p 5435 > /dev/null 2>&1 - sleep 2 - if [ $? -eq 0 ]; then - echo "Done! PostgreSQL is ready and accepting connections successfully" - else - echo "Fail! PostgreSQL is not running" - exit 1 - fi - for sql_file in `/bin/ls database/*.sql`; do - psql -h localhost -U postgres -d postgres -p 5435 -f $sql_file > /dev/null 2>&1 - if [ $? -eq 0 ]; then - echo "Done! Successfully applied $sql_file" - else - echo "Fail! Error applying $sql_file" - exit 1 - fi - done - echo "Done! Database has the schema migrations" - echo "" - cd ../.. -} - -update_migrations () { - cd packages/graphql - echo "Checking psql installation..." - if command -v psql &> /dev/null 2>&1 - then - echo "Done! psql is installed" - else - echo "Fail! psql is not installed, to install psql use: brew install libpq" - exit 1 - fi - export PGPASSWORD='postgres' - pg_isready -h localhost -U postgres -d postgres -p 5435 > /dev/null 2>&1 - sleep 2 - if [ $? -eq 0 ]; then - echo "Done! PostgreSQL is ready and accepting connections successfully" - else - echo "Fail! PostgreSQL is not running" - exit 1 - fi - # get actual version - version=`psql -t -X -h localhost -U postgres -d postgres -p 5435 -c "select version from indexer.migration;"` - for sql_file in `/bin/ls database/*.sql`; do - file_version=$(echo "$sql_file" | grep -o -E '[0-9]+') - if (($file_version > $version)); then - psql -h localhost -U postgres -d postgres -p 5435 -f $sql_file > /dev/null 2>&1 - if [ $? -eq 0 ]; then - echo "Done! Successfully applied $sql_file" - else - echo "Fail! Error applying $sql_file" - exit 1 - fi - fi - done - echo "Done! Database has the schema migrations" - echo "" - cd ../.. -} - -sync_blocks () { - cd packages/graphql - echo "Sync block range (max interval is 10)..." - read -p "From: " from - read -p "To: " to - echo "Syncing blocks from ${from} to ${to}" - npx tsx src/sync-block-range.ts $from $to > /dev/null 2>&1 - echo "Done! Setup finished successfully, backend is ready to use" - echo "" - cd ../.. -} - -init () { -echo " - ______ _ - | ____| | | - | |__ __ ___ __ | | ___ _ __ ___ _ __ - | __| \ \/ / '_ \| |/ _ \| '__/ _ \ '__| - | |____ > <| |_) | | (_) | | | __/ | - |______/_/\_\ .__/|_|\___/|_| \___|_| - | | - |_| - " - echo "" - echo "Welcome to Explorer Setup Tool" - sleep 2 - echo "" -} - -menu () { - COLUMNS=0 - PS3="Please enter your choice: " - select choice_main in "Execute complete setup (from scratch)" "Check .env variables" "Start database" "Apply database migrations (all)" "Update database schema (diff)" "Sync blocks" "Exit" - do - case $choice_main in - "Execute complete setup (from scratch)" ) - check_var - start_database - apply_migrations - sync_blocks - echo "Done! Type pnpm run:backend to run the backend" - exit 0 - ;; - "Check .env variables" ) - check_var - menu - ;; - "Start database" ) - start_database - menu - ;; - "Apply database migrations (all)" ) - start_database - apply_migrations - menu - ;; - "Update database schema (diff)" ) - start_database - update_migrations - menu - ;; - "Sync blocks" ) - sync_blocks - menu - ;; - "Exit" ) - exit 0 - ;; - esac - done -} - -init -menu